-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
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
[ refactor ] Revise definitions, consequences, and use, of Algebra.Definitions.(Almost)*Cancellative
#2573
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like a nice PR as-is, more can be done subsequently.
Thanks @JacquesCarette I suppose my concern was that if it turned out those downstream PRs were still stymied by 'bad' design decisions here, then ... I'm not sure what. Certainly it seemed a big job to try to refactor existing proofs to try to conform to the new APIs... |
To allay your fears, might be worth taking |
So to allay the fears about whether it's too much work to make the change, I may as well (accept having to) do the additional work to make the change? Sigh... |
Well, it might turn out to be easy! Or you might be right, and be able to estimate just how much work it is, and let us know. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are lots of good changes in here, but it's difficult to parse all the different definitions of cancellative being added. I'll have another look if you can lay them out on separate lines?
+-cancelʳ : RightCancellative _≃_ _+_ | ||
+-cancelʳ = Consequences.comm∧cancelˡ⇒cancelʳ ≃-setoid +-comm +-cancelˡ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto.
Besides the still-outstanding merge conflict, some improvement (I hope!) in the |
Drawback 1. OK... I might need to go back to the drawing board, a bit, now that we have, for *-cancelʳ-≡ : ∀ m n o .{{_ : NonZero o}} → m * o ≡ n * o → m ≡ n
*-cancelʳ-≡ m n o = almost⇒exceptʳ _ *-almostCancelʳ-≡ o m n {{≢-nonZero⁻¹ _}}
*-cancelˡ-≡ : ∀ m n o .{{_ : NonZero o}} → o * m ≡ o * n → m ≡ n
*-cancelˡ-≡ m n o rewrite *-comm o m | *-comm o n = *-cancelʳ-≡ m n o as the status quo ante, and with the new definitions, instead we would have (NB: argument order!) *-cancelʳ-≡ : Provided NonZero RightCancellative _*_
*-cancelʳ-≡ m n o = almost⇒exceptʳ _ *-almostCancelʳ-≡ m n o {{≢-nonZero⁻¹ _}}
*-cancelˡ-≡ : Provided NonZero LeftCancellative _*_
*-cancelˡ-≡ m n o rewrite *-comm m o | *-comm m n = *-cancelʳ-≡ m n o So...: what is/should be the correct argument order in all the new definitions, or do we simply carry on breaking the API? |
Drawback 2. Suppose we want to rewrite eg. *-cancelʳ-≤ : ∀ m n o .{{_ : NonZero o}} → m * o ≤ n * o → m ≤ n
*-cancelʳ-≤ zero _ _ _ = z≤n
*-cancelʳ-≤ (suc m) (suc n) o@(suc _) le =
s≤s (*-cancelʳ-≤ m n o (+-cancelˡ-≤ _ _ _ le))
*-cancelˡ-≤ : ∀ o .{{_ : NonZero o}} → o * m ≤ o * n → m ≤ n
*-cancelˡ-≤ {m} {n} o rewrite *-comm o m | *-comm o n = *-cancelʳ-≤ m n o to use the new definitions, then, modulo Drawback 1., we would (be able to) have: *-cancelʳ-≡ : Provided NonZero RightCancellative _*_
*-cancelˡ-≡ : Provided NonZero LeftCancellative _*_ modulo fiddling the imports so that we replace BUT: for *-cancelʳ-≤-neg : ∀ r .{{_ : Negative r}} → p * r ≤ q * r → p ≥ q in terms of My brain hurts. Doable, but exhausting... :-( And see all the other drawbacks (unsolved metas) which arise in #2580 ... |
(Potential) Drawback 3. UPDATED: yes, sort of, but will require the generalisations to multiple relations considered under 2. above. |
From the code you show, the argument order seems fine? Is there something I'm missing? It also seems to me that it is |
Re: argument order Re: |
Fixes #1436 , ...
... at least as far as 'AlmostCancellative' properties of operations wrt equality relation; the various order-theoretic generalisations are not covered
... so the issue probably ought to be kept open even if this gets merged? cf. #2580
NB.:
breaking
?naming
issues... etc.)Algebra.Consequences.Base
refactoring [ refactor ] Add equality as a parameter toAlgebra.Consequences.Base
#2572 should probably be merged first; fold in theinstance
-based analysis forDecidable
(and henceRecomputable
) predicates intoExcept_-*Cancellative_
?Algebra.Definitions
only imported at the equality relation, but might better be left parameterised, so that the variousCancellative
properties can be made generic...Integer
andRational
, theCancellative
properties wrt multiplication don't easily cash out via the 'generic' design strategy of going viaAlmostCancellative
, so I haven't (yet) include such statements, nor refactored to make these the primary notions.