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
@gap
g_str
evalstr
As a result, we have this:
julia> f(x) = @gap (1,2)(3,x) ERROR: LoadError: Error thrown by GAP: Error, Variable: 'x' must have a value not in any function at stream:1
while this works
julia> f(x) = GAP.evalstr("(1,2)(3,$x)") f (generic function with 1 method) julia> f(4) GAP: (1,2)(3,4)
The following options come to my mind:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As a result, we have this:
while this works
The following options come to my mind:
The text was updated successfully, but these errors were encountered: