On Tue, Jun 12, 2012 at 9:09 PM, Peter Tittmann <[email protected]> wrote: > > However solving for 'p' or 'D' both basically cause the python shell to hang > unitil I force the shell to quit. No error message, and I can hear the CPU > ramp up
I'm just throwing out wild guesses, but could you maybe avoid using floating point numbers? Using floats sometimes causes the problem you describe because of rounding errors. For example, instead of 3.85 you could use Rational(385, 100), and instead of 68e-06 use the explicit 68 * 10**(-6). Sergiu -- 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.
