]> www.ginac.de Git - ginac.git/blobdiff - doc/tutorial/ginac.texi
Remove 'level' argument of evalf().
[ginac.git] / doc / tutorial / ginac.texi
index 32f0e255ede71d30fbbd5fe96eba241af5f47abc..a8c537971edbfbdf0aceee5ad9c3988c726c7dd3 100644 (file)
@@ -4213,7 +4213,7 @@ GiNaC keeps algebraic expressions, numbers and constants in their exact form.
 To evaluate them using floating-point arithmetic you need to call
 
 @example
-ex ex::evalf(int level = 0) const;
+ex ex::evalf() const;
 @end example
 
 @cindex @code{Digits}
@@ -8323,7 +8323,7 @@ might want to provide:
 
 @example
 bool info(unsigned inf) const override;
-ex evalf(int level = 0) const override;
+ex evalf() const override;
 ex series(const relational & r, int order, unsigned options = 0) const override;
 ex derivative(const symbol & s) const override;
 @end example