]> www.ginac.de Git - ginac.git/blobdiff - check/checks.h
* Avoid getrusage(2) on systems that don't have it (by ASheplyakov Alexei
[ginac.git] / check / checks.h
index 5827f2233b07545876fe1fe7d32da11e9d2a53b4..cca4fda9d6465ad49c76dc57da32b32954b8023b 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-2005 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
  *
  *  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
  */
 
 #ifndef CHECKS_H
 #define CHECKS_H
 
-// For rand() and friends:
-#include <stdlib.h>
+#include <iostream>
 
+#include "config.h"
 #include "ginac.h"
 using namespace std;
-
-#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, bool complex = false);