]> www.ginac.de Git - ginac.git/blobdiff - check/exam_structure.cpp
match() (find()): use exmap (exset) to store matched subexpressions.
[ginac.git] / check / exam_structure.cpp
index 8510ee4c56e0398a299e21301eae27d89097dcca..5d835748282d9d63d84b8f9cd197cb2c37e894b4 100644 (file)
@@ -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
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "exams.h"
+#include <iostream>
+#include "ginac.h"
+using namespace std;
+using namespace GiNaC;
 
 
 struct sprod_s {
@@ -72,7 +75,6 @@ unsigned exam_structure()
        unsigned result = 0;
 
        cout << "examining structure template" << flush;
-       clog << "----------structure template:" << endl;
 
        symbol x("x"), y("y");
        ex e;
@@ -91,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();
+}