X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fstructure.h;h=3879629aa8043cdb88b53de7c7b3257accb73890;hb=709e61093f43462b5816f859a32a31cc00758da8;hp=3fccf6b7d938cc1584ae68a66779213bfc7e370f;hpb=47ecb72dce5ea9c917d1e1e77863c45a8b2b1bba;p=ginac.git diff --git a/ginac/structure.h b/ginac/structure.h index 3fccf6b7..3879629a 100644 --- a/ginac/structure.h +++ b/ginac/structure.h @@ -3,7 +3,7 @@ * Wrapper template for making GiNaC classes out of C++ structures. */ /* - * GiNaC Copyright (C) 1999-2016 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2019 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 @@ -127,7 +127,6 @@ public: public: // evaluation ex eval() const override { return hold(); } - ex evalf(int level = 0) const override { return inherited::evalf(level); } ex evalm() const override { return inherited::evalm(); } protected: ex eval_ncmul(const exvector & v) const override { return hold_ncmul(v); } @@ -179,7 +178,7 @@ public: ex series(const relational & r, int order, unsigned options = 0) const override { return inherited::series(r, order, options); } // rational functions - ex normal(exmap & repl, exmap & rev_lookup, int level = 0) const override { return inherited::normal(repl, rev_lookup, level); } + ex normal(exmap & repl, exmap & rev_lookup) const override { return inherited::normal(repl, rev_lookup); } ex to_rational(exmap & repl) const override { return inherited::to_rational(repl); } ex to_polynomial(exmap & repl) const override { return inherited::to_polynomial(repl); }