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
$linear_coefficients
var_group
v <- validator( pos := var_group(x), pos = pos >= 0, lin = x + y == 20 ) v$linear_coefficients()
generates the following:
$A variable validator pos x y pos -1 0 0 lin 0 1 1 $b variable validator CONSTANT pos 0 lin 20 $operators >= == "<=" "=="
Which is not as intended, var_group should be expanded or at least a warning should be generated. See also data-cleaning/deductive#3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
generates the following:
Which is not as intended,
var_group
should be expanded or at least a warning should be generated.See also data-cleaning/deductive#3
The text was updated successfully, but these errors were encountered: