Grégory Vanuxem
unread,Nov 24, 2025, 2:18:42 AM (9 days ago) Nov 24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fricas...@googlegroups.com
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