We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pos-+-commute
pos-distrib-*
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
Data.Integer.Properties declares
pos-+-commute : ℕtoℤ.Homomorphic₂ +_ ℕ._+_ _+_ ... pos-distrib-* : ∀ x y → (+ x) * (+ y) ≡ + (x ℕ.* y)
Probably the latter needs to be
pos-distrib-* : ∀ x y → + (x ℕ.* y) ≡ (+ x) * (+ y)
-- to follow the format of "something distributes over _*_". Or may be
_*_
pos-*-commute : ∀ x y → + (x ℕ.* y) ≡ (+ x) * (+ y)
-- to follow the format of pos-+-commute. ?
The text was updated successfully, but these errors were encountered:
Is this #501?
Sorry, something went wrong.
Yes, withdraw this my issue, please. I vote for #501.
No branches or pull requests
Data.Integer.Properties declares
Probably the latter needs to be
-- to follow the format of "something distributes over
_*_
".Or may be
-- to follow the format of
pos-+-commute
.?
The text was updated successfully, but these errors were encountered: