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
self.value()
Example:
constraint -> mapping::aom { [self.variables().hours + self.variables().overTime >= 1 => self.value() >= 1] & [self.value() >= 1 => self.variables().hours + self.variables().overTime >= 1] }
Possible shortcuts/syntactic sugar:
invariant -> mapping::aom { self.variables().hours + self.variables().overTime >= 1 } constraint -> mapping::aom { inv: self.variables().hours + self.variables().overTime >= 1 } // Maybe "invariant" or "inv" is not completely correct -> we should choose another name
Currently, the longer form of this expression can be written as a boolean equivalence:
constraint -> mapping::aom { self.variables().hours + self.variables().overTime >= 1 <=> self.value() >= 1 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
Possible shortcuts/syntactic sugar:
Currently, the longer form of this expression can be written as a boolean equivalence:
The text was updated successfully, but these errors were encountered: