Barton Willis wrote on August 25, 2008,
> If you accidentally do load(opsubst) instead of load("opsubst"), you'll
> load .../gentran/test/T.mac. And that's a problem:
>
> (%i1) load("opsubst")$
>
> (%i2) gatherargs(x*exp(x),"^");
> (%o2) [[%e,x]]
>
> (%i3) load(opsubst)$
>
> (%i4) gatherargs(x*exp(x),"^");
> (%o4) [[%e,y+t]]
>
> (%i5) values;
> (%o5) [x,t]
>
> (%i6) x;
> (%o6) y+t
>
> (%i7) t;
> (%o7) y
>
> Barton
>
>
Hi Barton: I made exactly that mistake: load(opsubst); and fortunately used
the
semi-colon, which showed me that the folder was the wrong folder, and of
course I got very weird results when I tried it anyway.
Thanks for writing some code that may be very useful
for me eventually.
Ted