]> www.ginac.de Git - ginac.git/blobdiff - ginac/basic.h
Remove 'level' argument of normal().
[ginac.git] / ginac / basic.h
index 0cec003add27a8851ba136d3f5f2dae464654c19..598058a5e8f02548bc475bd53fd01ac8a34c35cc 100644 (file)
@@ -3,7 +3,7 @@
  *  Interface to GiNaC's ABC. */
 
 /*
- *  GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2016 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
@@ -136,7 +136,7 @@ public: // only const functions please (may break reference counting)
 
        // evaluation
        virtual ex eval() const;
-       virtual ex evalf(int level = 0) const;
+       virtual ex evalf() const;
        virtual ex evalm() const;
        virtual ex eval_integ() const;
 protected:
@@ -199,7 +199,7 @@ public:
        virtual ex series(const relational & r, int order, unsigned options = 0) const;
 
        // rational functions
-       virtual ex normal(exmap & repl, exmap & rev_lookup, int level = 0) const;
+       virtual ex normal(exmap & repl, exmap & rev_lookup) const;
        virtual ex to_rational(exmap & repl) const;
        virtual ex to_polynomial(exmap & repl) const;