Re: [PATCH 1/1] Fixed spelling in GAsympy.txt

2009-04-06 Thread Aaron S. Meurer
Yes. The very fact that I noticed that that file had errors was that I was searching the sympy directory for the word "derivative" and I accidently typed "dervitive," which was one of the errors. So you aren't the only one. Aaron On Apr 6, 2009, at 2:47 PM, Alan Bromborsky wrote: > > Tha

Re: [PATCH 1/1] Fixed spelling in GAsympy.txt

2009-04-06 Thread Alan Bromborsky
Thank you for fixing my spelling errors. The fact that I cannot spell is proof that I was an engineer! Aaron Meurer wrote: > --- > doc/src/modules/galgebra/GA/GAsympy.txt | 56 +++--- > 1 files changed, 28 insertions(+), 28 deletions(-) > > diff --git a/doc/src/module

[PATCH 1/1] Fixed spelling in GAsympy.txt

2009-04-06 Thread Aaron Meurer
--- doc/src/modules/galgebra/GA/GAsympy.txt | 56 +++--- 1 files changed, 28 insertions(+), 28 deletions(-) diff --git a/doc/src/modules/galgebra/GA/GAsympy.txt b/doc/src/modules/galgebra/GA/GAsympy.txt index fbe7223..0883645 100644 --- a/doc/src/modules/galgebra/GA/GA

[PATCH 2/3] sympy/core/evalf.py: try/except clause refactored

2009-04-06 Thread Ondrej Certik
The try/except block was again testing several lines at once and thus was hiding problems. Things were made explicit by this patch. Signed-off-by: Ondrej Certik --- sympy/core/basic.py |3 +++ sympy/core/evalf.py | 18 +++--- 2 files changed, 14 insertions(+), 7 deletions(-)

[PATCH 1/3] sympy/core/evalf.py refactored

2009-04-06 Thread Ondrej Certik
Previously it was try/except block over several commands it was checking for KeyError, which is a bad style, as that error can occur anywhere. It was supposed to occur in the first line, but in fact, sometimes it occured in the second line. This was fixed by this patch. Signed-off-by: Ondrej Cert

[PATCH 3/3] Integral.evalf(): method='scipy' implemented

2009-04-06 Thread Ondrej Certik
if the method='scipy' is specified, the scipy.integrate.quad function is called on the lambdified argument of the integral. Tests were added to sympy/test_external/test_scipy.py Signed-off-by: Ondrej Certik --- sympy/core/evalf.py | 43 +--- sympy/