We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntax errors in these functions don't terminate FORM, so something like
Symbol x; CFunction f,g,h; Index i1,...,i3; Local test = + g(i1,i2)*g(i1,i2) + g(i1,i2)*g(i1,i3) + g(i1,i2,i3)*g(i1,i2,i3) + h(i1,i2)*h(i1,i2) + h(i1,i2)*h(i1,i3) + h(i1,i2,i3)*h(i1,i2,i3) ; ReplaceLoop g, arguments=2, loopsize=2, outfun=f; ReplaceLoop g, arguments=2, loopsize=2, outfun=f; ReplaceLoop g, arguments=3, loopsize=2, outfun=f; If (FindLoop(h, loopsize=1)); Multiply x; EndIf; Print +s; .end
produces nonsense.
compcomm.c:DoFindLoop should probably just Terminate at the syntax label, and goto it in all error cases and not just some of them.
compcomm.c:DoFindLoop
Terminate
syntax
The text was updated successfully, but these errors were encountered:
It seems that error = 1 is missing in DoFindLoop and CoIf (which calls CoFindLoop).
error = 1
DoFindLoop
CoIf
CoFindLoop
Sorry, something went wrong.
No branches or pull requests
Syntax errors in these functions don't terminate FORM, so something like
produces nonsense.
compcomm.c:DoFindLoop
should probably justTerminate
at thesyntax
label, and goto it in all error cases and not just some of them.The text was updated successfully, but these errors were encountered: