]> www.ginac.de Git - ginac.git/blobdiff - ginac/function.cppy
bugfix: function: always pass evalf'ed arguments to evalf_funcp
[ginac.git] / ginac / function.cppy
index a7f51acd22a446a2d0a65718ab455a1b3059d1c7..57af323da3d081848e4172a26b70b0c102db8da4 100644 (file)
@@ -437,7 +437,7 @@ ex function::evalf() const
        }
        current_serial = serial;
        if (opt.evalf_use_exvector_args)
-               return ((evalf_funcp_exvector)(opt.evalf_f))(seq);
+               return ((evalf_funcp_exvector)(opt.evalf_f))(eseq);
        switch (opt.nparams) {
                // the following lines have been generated for max. @maxargs@ parameters
 +++ for N in range(1, maxargs + 1):