Open jodavies opened 5 years ago
Indeed, coefficients in []
seem to be always ignored:
S x;
L F = -3*x;
B x;
.sort
L G = F[-2*x];
P;
.end
F =
- 3*x;
G =
- 3;
Then the question is whether this is a bug or a specification...?
In the following code,
test2
should bea
rather than-a
. The sign in normalizing in the[]
appears to be lost.Thanks, Josh.