From a775c17c710b9fbca130b2f638a0f463b8b56585 Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Sun, 24 Aug 2003 22:57:15 +0000 Subject: [PATCH] some functions that took a "const symbol &" now take a "const ex &" --- doc/tutorial/ginac.texi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/tutorial/ginac.texi b/doc/tutorial/ginac.texi index ce286ae0..cd47cf3c 100644 --- a/doc/tutorial/ginac.texi +++ b/doc/tutorial/ginac.texi @@ -1663,7 +1663,7 @@ computing determinants, traces, and characteristic polynomials: @example ex matrix::determinant(unsigned algo=determinant_algo::automatic) const; ex matrix::trace() const; -ex matrix::charpoly(const symbol & lambda) const; +ex matrix::charpoly(const ex & lambda) const; @end example The @samp{algo} argument of @code{determinant()} allows to select @@ -4098,8 +4098,8 @@ constants, functions and indexed objects as well: The two functions @example -ex quo(const ex & a, const ex & b, const symbol & x); -ex rem(const ex & a, const ex & b, const symbol & x); +ex quo(const ex & a, const ex & b, const ex & x); +ex rem(const ex & a, const ex & b, const ex & x); @end example compute the quotient and remainder of univariate polynomials in the variable @@ -4108,7 +4108,7 @@ compute the quotient and remainder of univariate polynomials in the variable The additional function @example -ex prem(const ex & a, const ex & b, const symbol & x); +ex prem(const ex & a, const ex & b, const ex & x); @end example computes the pseudo-remainder of @samp{a} and @samp{b} which satisfies @@ -4133,9 +4133,9 @@ in which case the value of @code{q} is undefined. The methods @example -ex ex::unit(const symbol & x); -ex ex::content(const symbol & x); -ex ex::primpart(const symbol & x); +ex ex::unit(const ex & x); +ex ex::content(const ex & x); +ex ex::primpart(const ex & x); @end example return the unit part, content part, and primitive polynomial of a multivariate -- 2.44.0