You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Reduce.jl, the following works
using Reduce
Reduce.expand(“3x+2y+2.12x+3.2y”)
However if I try the following
expand(“f(X,Y)+2g(X1,X2,X2)+2f(X,Y)”)
it gets into an infinite loop. If I interrupt once, and try again then it comes out with a prompt
“Type Y or N?;\n3f(x,y) + 2g(x1,x2,x2)”
and on the third time, it works well.
“3f(x,y) + 2g(x1,x2,x2)”
Looking into the code, it appears that there is an error check which prompts the Type Y or N? Is this an intended check? Can this be fixed?
This is a nice package that helps in quite a bit of symbolic expression simplifications. It would be nice to have this fixed. Or any other suggestions to work around it (instead of manually interrupting this 2 times).
Thanks for the help/suggestions
using Reduce expand("3x+2y+2.12x+3.2y") expand("f(X,Y)+2g(X1,X2,X2)+2f(X,Y)")
The text was updated successfully, but these errors were encountered:
Thanks for the report, I will look into the bug sometime if I can, but I have a job at Wolfram Research now along with various other personal priorities. Indeed, if there is a prompt for Y or N, then that is something the parser does not handle as of yet.
Thanks for the report, I will look into the bug sometime if I can, but I have a job at Wolfram Research now along with various other personal priorities. Indeed, if there is a prompt for Y or N, then that is something the parser does not handle as of yet.
Thank you for your attention. Appreciate your help. It would be a nice fix as and when you get time. Cheers.
The Reduce.jl, the following works
using Reduce
Reduce.expand(“3x+2y+2.12x+3.2y”)
However if I try the following
expand(“f(X,Y)+2g(X1,X2,X2)+2f(X,Y)”)
it gets into an infinite loop. If I interrupt once, and try again then it comes out with a prompt
“Type Y or N?;\n3f(x,y) + 2g(x1,x2,x2)”
and on the third time, it works well.
“3f(x,y) + 2g(x1,x2,x2)”
Looking into the code, it appears that there is an error check which prompts the Type Y or N? Is this an intended check? Can this be fixed?
This is a nice package that helps in quite a bit of symbolic expression simplifications. It would be nice to have this fixed. Or any other suggestions to work around it (instead of manually interrupting this 2 times).
Thanks for the help/suggestions
using Reduce expand("3x+2y+2.12x+3.2y") expand("f(X,Y)+2g(X1,X2,X2)+2f(X,Y)")
The text was updated successfully, but these errors were encountered: