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
Thanks for pointing this scenario out, I have not encountered this specific use case before.
By the looks of it, this result is not currently supported. You can observe it from the REDUCE code
julia>int(RExpr(log(x)/(x-1)),x,0,1)
log(x) 22*int(--------,x) +log(x)
2
x - x log(x) 2- limit+(-----------------------------,x,0) +sub(x=1,int(--------,x)) -2*pi22
x - x
julia>int(RExpr(log(x)/(x-1)),x,0,1) |> string
" - limit!+((2*int(log(x)/(x**2 - x),x) + log(x)**2)/2,x,0) + sub(x=1,int(log(x)/(x**2 - x),x)) - 2*pi**2"
The string that is read back into the REDUCE parser contains syntax that is not currently supported by the parser generator. The syntax is not currently part of the parser generator.
Since the output is returned in this format, I'm not immediately sure yet how to handle the parsing, but I will think some more about this and how it might be handled in the future.
As of now, reading back an output of that format and parsing it into Julia is not currently possible.
chakravala
changed the title
Integration error?
Integration error? (cannot parse limit! output statement format)
Aug 25, 2018
chakravala
changed the title
Integration error? (cannot parse limit! output statement format)
Integration error? (cannot parse limit! output format)
Aug 25, 2018
chakravala
changed the title
Integration error? (cannot parse limit! output format)
Integration error? (cannot parse unusual output format)
Aug 25, 2018
My use-case is:
The text was updated successfully, but these errors were encountered: