]> www.ginac.de Git - ginac.git/blobdiff - ginac/structure.h
Remove 'level' argument of evalf().
[ginac.git] / ginac / structure.h
index 1301ad2b25b953a61ef292d6aa25e7152d2417a1..49df915c90ffdd5605499a5fb2d4753df4633774 100644 (file)
@@ -3,7 +3,7 @@
  *  Wrapper template for making GiNaC classes out of C++ structures. */
 
 /*
- *  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
@@ -126,8 +126,7 @@ public:
        // All these are just defaults that can be specialized by the user
 public:
        // evaluation
-       ex eval(int level = 0) const override { return hold(); }
-       ex evalf(int level = 0) const override { return inherited::evalf(level); }
+       ex eval() const override { return hold(); }
        ex evalm() const override { return inherited::evalm(); }
 protected:
        ex eval_ncmul(const exvector & v) const override { return hold_ncmul(v); }