Hello,
I have a file that contains some 'concat' routines and an AI agent has
found 4 syntax errors for which I agree (missing comma). The issue is
that it used to compile, is what is expected?
@@ -178,9 +178,9 @@
cosMinimalPolynomial(n,p) ==
jlref(concat ["cos_minpoly(",string(n),",", getind(p),")"])
thetaQExp(r,n,p) ==
- jlref(concat ["theta_qexp(",string(r),",", string(n), ","
getind(p),")"])
+ jlref(concat ["theta_qexp(",string(r),",", string(n), ",",
getind(p),")"])
etaQExp(r,n,p) ==
- jlref(concat ["eta_qexp(",string(r),",", string(n), "," getind(p),")"])
+ jlref(concat ["eta_qexp(",string(r),",", string(n), ",",
getind(p),")"])
@@ -273,7 +273,7 @@
coefficient(p : %, n : NNI) ==
- jlref(concat ["coeff(", getind(p),",", string(n) ")"])$R
+ jlref(concat ["coeff(", getind(p),",", string(n), ")"])$R
@@ -527,7 +527,7 @@
coefficient(p : %, n : NNI) ==
- jlref(concat ["coeff(", getind(p),",", string(n) ")"])$R
+ jlref(concat ["coeff(", getind(p),",", string(n), ")"])$R
Above is the diff I applied. For me it should not compile in its first
version. Am I wrong ? Otherwise I can fill an issue on GitHub. I don't
know however another _reproducible_ way I think i.e. applicable to
vanilla FriCAS.
Regards,
Greg
--
You received this message because you are subscribed to the Google Groups
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/fricas-devel/CAHnU2dZTe8v4HWJqpdNZqGKWAKpMpqBd8w8NhYP0qHHqCtN6Gw%40mail.gmail.com.