]> www.ginac.de Git - ginac.git/blobdiff - check/checks.h
- use initializers in exception class pole_error.
[ginac.git] / check / checks.h
index 4c79e2f36ade4769d2a9e8d786d3520f094ef5fb..a9f2ba9fd1ecadfc559d544bfd32e8723b13f486 100644 (file)
@@ -3,7 +3,7 @@
  *  Prototypes for all individual checks. */
 
 /*
- *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2001 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
 
 // For rand() and friends:
 #include <stdlib.h>
-
+using namespace std;
+#include "config.h"
 #include "ginac.h"
-
-#ifndef NO_NAMESPACE_GINAC
 using namespace GiNaC;
-#endif // ndef NO_NAMESPACE_GINAC
 
 // prototypes for the expression generating functions in:
 const ex dense_univariate_poly(const symbol & x, unsigned degree);
-const ex dense_bivariate_poly(const symbol & x1, const symbol & x2, unsigned degree);
+const ex dense_bivariate_poly(const symbol & x1, const symbol & x2,
+                              unsigned degree);
 const ex sparse_tree(const symbol & x, const symbol & y, const symbol & z,
-                     int level, bool trig = false, bool rational = true);
+                     int level,
+                     bool trig = false, bool rational = true, bool complex = false);
 
 // prototypes for all individual checks should be unsigned fcn():
 unsigned check_numeric();