X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fexam_structure.cpp;h=5d835748282d9d63d84b8f9cd197cb2c37e894b4;hp=8d80a7b12e2c4027ad18f7553af64ddb5c2da01e;hb=4f596b14ac1cdb03163c74e210cab493358ababf;hpb=695f6ae955ec530cded8f21efd5569df39447f76 diff --git a/check/exam_structure.cpp b/check/exam_structure.cpp index 8d80a7b1..5d835748 100644 --- a/check/exam_structure.cpp +++ b/check/exam_structure.cpp @@ -3,7 +3,7 @@ * Small test for the structure<> template. */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,10 +17,13 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "exams.h" +#include +#include "ginac.h" +using namespace std; +using namespace GiNaC; struct sprod_s { @@ -47,13 +50,15 @@ inline ex make_sprod(const ex & l, const ex & r) return sprod(sprod_s(l, r)); } -void sprod::print(const print_context & c, unsigned level) const +namespace GiNaC { + +template <> void sprod::print(const print_context & c, unsigned level) const { const sprod_s & sp = get_struct(); c.s << "<" << sp.left << "|" << sp.right << ">"; } -ex sprod::eval(int level) const +template <> ex sprod::eval(int level) const { // symmetric scalar product const sprod_s & sp = get_struct(); @@ -63,12 +68,13 @@ ex sprod::eval(int level) const return make_sprod(sp.right, sp.left); } +} // namespace GiNaC + unsigned exam_structure() { unsigned result = 0; cout << "examining structure template" << flush; - clog << "----------structure template:" << endl; symbol x("x"), y("y"); ex e; @@ -87,14 +93,10 @@ unsigned exam_structure() ++result; } - cout << '.' << flush; - - if (!result) { - cout << " passed " << endl; - clog << "(no output)" << endl; - } else { - cout << " failed " << endl; - } - return result; } + +int main(int argc, char** argv) +{ + return exam_structure(); +}