program works with maxima 5.29.1 but freezes with maxima 5.30.0
Subject: program works with maxima 5.29.1 but freezes with maxima 5.30.0
From: Dmitry Shkirmanov
Date: Tue, 16 Apr 2013 19:21:23 +0400
On 16.04.2013 18:31, Rupert Swarbrick wrote:
> Maybe you could try doing the substitution a bit at a time to see what's
> going wrong? I've used things like
>
> slow_subst (lst, expr) :=
> (for x in lst do
> (print ("Doing: ", x), expr: ratsimp (subst (x, expr))),
> expr)$
>
> in the past to see how things are going. You could also print out the
> successive values of expr: maybe that would show you where the
> substitution was misbehaving.
Thanks, i will try it.