Robert Dodier wrote:
> On 6/2/06, Paul Van Allsburg <vanallsburg at hope.edu> wrote:
>
>> I have installed GCL 2.6.7 and maxima 5.9.3 and am trying to run a
>> sample script that was given me. The script is
>>
>> load(affine);
>> declare(a,constant,b,constant,c,constant);
>> declare_weights(x,1,y,1,z,1);
>> ALL_DOTSIMP_DENOMS:[];
>
>
> Try writing all_dotsimp_denoms instead of upper case.
> Dunno if that will fix it, but I don't think it can work as intended
> if you write the name in caps. (Maxima became case sensitive
> in version 5.9.2.)
>
> HTH
> Robert Dodier
>
(%i2) declare(a,constant,b,constant,c,constant);
(%o2) done
(%i3) declare_weights(x,1,y,1,z,1);
(%o3) false
(%i4) all_dotsimp_denoms:[];
(%o4) []
(%i5) r1:a*x.y+b*y.x+c*z.z;
<2>
(%o5) c z + b y . x + a x . y
(%i6) r2:a*z.x+b*x.z+c*y.y;
<2>
(%o6) a z . x + c y + b x . z
(%i7) r3:a*y.z+b*z.y+c*x.x;
<2>
(%o7) b z . y + a y . z + c x
(%i8) set_up_dot_simplifications([r1,r2,r3],4);
The value of $ORDER_FUNCTION is $MONOMIAL_ALPHALESSP
What is x like ? ((MNCEXPT SIMP) $Z 2)
-- an error. Quitting. To debug this try debugmode(true);
Lower case gives the same error.
-Paul