-
Notifications
You must be signed in to change notification settings - Fork 251
Open
Description
This line define a semiring structure out of a boolean algebra:
∧-∨-commutativeSemiring : CommutativeSemiring _ _ |
Here the ring multiplication * is inifxl:
agda-stdlib/src/Algebra/Bundles.agda
Line 684 in 8c5dee3
infixl 7 _*_ |
But here, ∧ is infixr:
agda-stdlib/src/Algebra/Lattice/Bundles.agda
Line 207 in 8c5dee3
infixr 7 _∧_ |
See issue #2700 (comment) for an example for the inconvenience rooting to this problem.