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
Add modulus operator (%)
The text was updated successfully, but these errors were encountered:
This is actually very interesting. Modulus cannot be represented with out current (domain is only between 1 range of values). For example:
x : [18, 23] y : [16, 19] x % y : [0, 7] U [18, 18]
So this means that we have to be able to specify domains with multiple ranges, before going forward.
Sorry, something went wrong.
Oh and multiple ranges have this very nice effect:
x : [0, 10] ∪ [15, 15] y : [45, 52] ∪ [67, 90] x * y : [0, 520] ∪ [675, 780] ∪ [0, 900] ∪ [1005, 1350]
No branches or pull requests
Add modulus operator (%)
The text was updated successfully, but these errors were encountered: