From: Richard Kreckel Date: Fri, 27 Jul 2001 03:24:46 +0000 (+0000) Subject: - no, no, no, there is no such thing as is_of_type(ex&)... X-Git-Tag: release_0-9-2~16 X-Git-Url: https://ginac.de/ginac.git/static/gitweb.css/ginac.git?a=commitdiff_plain;h=ca4c4bce2953c1abdf041f082c8e28c429eb6b77;p=ginac.git - no, no, no, there is no such thing as is_of_type(ex&)... --- diff --git a/ginac/function.pl b/ginac/function.pl index f6923c0a..258f4a07 100755 --- a/ginac/function.pl +++ b/ginac/function.pl @@ -734,7 +734,7 @@ ex function::eval(int level) const // Canonicalize argument order according to the symmetry properties if (seq.size() > 1 && !(opt.symtree.is_zero())) { exvector v = seq; - GINAC_ASSERT(is_of_type(opt.symtree)); + GINAC_ASSERT(is_a(opt.symtree)); int sig = canonicalize(v.begin(), ex_to(opt.symtree)); if (sig != INT_MAX) { // Something has changed while sorting arguments, more evaluations later