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
Stumbled upon the following bug. Writing Equelle code
Output("max of u", MaxReduce(u))
when no variable u has been declared, produce the following c++ code
u
er.output("max of u", er.maxReduce());
which gives a C++ compile time error (maxReduce needs a CollOfScalar parameter). Equelle compiler should notice that we use an undeclared variable.
maxReduce
CollOfScalar
The text was updated successfully, but these errors were encountered:
Thanks for noticing. Currently function call arguments are not checked, which is a significant lack. I consider this a high-priority bug.
Sorry, something went wrong.
No branches or pull requests
Stumbled upon the following bug. Writing Equelle code
when no variable
u
has been declared, produce the following c++ codewhich gives a C++ compile time error (
maxReduce
needs aCollOfScalar
parameter). Equelle compiler should notice that we use an undeclared variable.The text was updated successfully, but these errors were encountered: