[sympy] Corrected 2 error messages and a spelling. (#1466)

2012-08-06 Thread Angadh Nanjangud
The error message for the 'coords' method has been corrected. You can merge this Pull Request by running: git pull https://github.com/angadhn/sympy kanechanges Or you can view, comment on it, or merge it online at: https://github.com/sympy/sympy/pull/1466 -- Commit Summary -- * Corrected

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread The Travis Bot
This pull request [fails](http://travis-ci.org/sympy/sympy/builds/2050388) (merged 2b0aa284 into 65b65820). --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7533348 -- You received this message because you are subscribed to the Google

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread raoulb
This massive overhaul of the orthogonal polynomials module is ready for serious review now. --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7534697 -- You received this message because you are subscribed to the Google Groups

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread The Travis Bot
This pull request [fails](http://travis-ci.org/sympy/sympy/builds/2050993) (merged 8f5ba4a2 into 65b65820). --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7535550 -- You received this message because you are subscribed to the Google

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread The Travis Bot
This pull request [passes](http://travis-ci.org/sympy/sympy/builds/2051041) (merged 82a723cc into 65b65820). --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7536124 -- You received this message because you are subscribed to the

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread Ondřej Čertík
Ha, nice! Awesome work, thanks. From quick look it looks excellent. I will give it a thorough review soon. --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7536947 -- You received this message because you are subscribed to the Google

Re: [sympy] Lazy orthogonal polynomials (#1457)

2012-08-06 Thread raoulb
Thanks! We should review/merge PR 1433 first. And no need to hurry, I'll be off for a few days. --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1457#issuecomment-7538298 -- You received this message because you are subscribed to the Google Groups

[sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread Matthew Rocklin
I.e. ```ImmutableMatrix.__add__ = MatrixBase.__add__``` instead of ```ImmutableMatrix.__add__ = MatExpr.__add__``` This causes ``ImmutableMatrix * ImmutableMatrix = ImmutableMatrix``` instead of ```ImmutableMatrix * ImmutableMatrix = MatExpr``` I.e. ImmutableMatrices evaluate by default. You

Re: [sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread The Travis Bot
This pull request [passes](http://travis-ci.org/sympy/sympy/builds/2052585) (merged e3a033ee into 65b65820). --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1467#issuecomment-7539882 -- You received this message because you are subscribed to the

Re: [sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread Aaron Meurer
Would it also work to just swap the superclasses? --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1467#issuecomment-7541345 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group, send

Re: [sympy-live] SymPy Live Sphinx extension (#59)

2012-08-06 Thread David Li
Okay, now it should print each prompt interspersed with the results. I've pushed the changes to the server. Also, I fixed the bug where preexecs weren't getting evaluated...turns out I was overwriting a variable. --- Reply to this email directly or view it on GitHub:

Re: [sympy-live] SymPy Live Sphinx extension (#59)

2012-08-06 Thread Aaron Meurer
You accidentally removed app.yaml --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy-live/pull/59#issuecomment-7542001 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group, send email to

Re: [sympy-live] SymPy Live Sphinx extension (#59)

2012-08-06 Thread Aaron Meurer
Can you update the live demo? --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy-live/pull/59#issuecomment-7542027 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group, send email to

Re: [sympy-live] SymPy Live Sphinx extension (#59)

2012-08-06 Thread David Li
Sorry, fixed. Still some issues: - Code like def ctimesd(): ... ... This function returns whatever c is times whatever d is. ... ... return c*d isn't getting executed properly. - Tracebacks don't show the original prompt --- Reply to this email

Re: [sympy-live] SymPy Live Sphinx extension (#59)

2012-08-06 Thread Aaron Meurer
OK, so I guess the behavior should be like this: If there are multiple things in the same input, it should only print the last one. This is how even the IPython notebook works. For the Sphinx extension, it should parse the `` and `...` to determine what should be executed as one block.

Re: [sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread Matthew Rocklin
In that case we would have to explicitly make some MatExpr methods default. For example MatrixBase has a subs method. In general I prefer to keep MatExpr the default because I know it better and trust it much more than MatrixBase. MatExpr is much simpler and closer to Basic. It could be

Re: [sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread Aaron Meurer
Tests? --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1467#issuecomment-7543986 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group, send email to sympy-patches@googlegroups.com. To

Re: [sympy] ImmutableMatrix defaults to MatrixBase operators (#1467)

2012-08-06 Thread Aaron Meurer
@rlamy is this done correctly? Should it perhaps use `super()`? --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1467#issuecomment-7544056 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to