From: Arthur N. <ac...@ca...> - 2024-01-09 09:14:58
|
I have just checked in a fix that means that that trace output should only be seen in one has gone "on tra;" to ask for tracing from algint. Arthur On Tue, 9 Jan 2024, Nasser M. Abbasi wrote: > This is fyi; > > When adding load_package algint; I noticed now the int() command > sometimes print output which looks like internal debug > text which is breaking my script as it goes to the output > stream along with the actual result of integration. > > Compare > > --------------------------- >> redcsl -w > Reduce (CSL, rev 6657), 10-Dec-2023 ... > 1: int(x**3/(sqrt(2*x**8 + 1)*(x**4 - 1)),x); > > 8 3 > sqrt(2*x + 1)*x > int(-----------------------,x) > 12 8 4 > 2*x - 2*x + x - 1 > > > 2: load_package algint; > 3: int(x**3/(sqrt(2*x**8 + 1)*(x**4 - 1)),x); > > sqrt(3) > --------- > 12 > > 8 3 > sqrt(2*x + 1)*x > int(-----------------------,x) > 12 8 4 > 2*x - 2*x + x - 1 > > ------------------------------------ > > Notice that after loading algint there is this term > > sqrt(3) > --------- > 12 > > Which I have no idea what it means. It seems like leaked from the package. > > --Nasser > > > _______________________________________________ > Reduce-algebra-developers mailing list > Red...@li... > https://lists.sourceforge.net/lists/listinfo/reduce-algebra-developers > |