Vinzent Steinberg wrote: > On 12 Apr., 21:53, "Chris Smith" <[email protected]> wrote: >> Also, regarding limit order. Although I don't (due to limited >> insight) understand how changing the limits changes the >> computational difficulty of the integral, the integral is not being >> performed when doing the equality testing. The >> sorted-as-much-as-possible limits are being compared after getting >> their dummy representation. > > Which limit order? Are you speaking about multidimensional integrals > that Aaron mentioned? >
Yes, `Integral(exp(1/x**2), (x, 1, 2), (y, 3, 4))` is the same as `Integral(exp(1/x**2), (y, 3, 4), (x, 1, 2))` and it is not necessary to perform the integral to know this. /c -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
