-
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
Explore further improving instance search for NonZero
instances
#1565
Comments
Question indirectly from this: does Agda allow irrelevant instance arguments to be filled by 'any' proof? Normally, instance search wants to find a single candidate for a hole. |
Making an instance argument irrelevant, still means that Agda has to find a valid proof. However unlike for relevant arguments, instance search won't error if it finds multiple valid proofs. https://agda.readthedocs.io/en/v2.6.2/language/irrelevance.html#irrelevant-instance-arguments |
Blocked by agda/agda#5494 |
Likewise with Candidates:
Proofs that would benefit:
|
As pointed out by @technicalguy in #1581 we should benchmark the library when and if we implement these changes. |
Now that it looks very likely we're going to use instance arguments for resolving
NonZero
proofs we should explore whether it's possible and/or desirable to automatically create derived instances to further improve the user's experience:Candidates:
NonZero m → NonZero n → NonZero (m * n)
NonZero m → NonZero n → NonZero (m / n)
NonZero p → NonZero (1/ p)
NonZero m → NonZero (gcd m n)
NonZero n → NonZero (gcd m n)
NonZero m → NonZero (m ^ n)
NonZero n → NonZero (s ◃ n)
(the latter two are an example of where one might get multiple instances for the same proof and where irrelevance would be useful)
A list of proofs that would benefit from these:
Data.Nat.LCM
- all of itData.Rational.Unnormalised.Properties
- *-cancelˡ-/ *-cancelʳ-/ 1/-involutive-≡ 1/-involutiveData.Rational.Normalised.Properties
- normalize-coprime, ↥-normalize, ↧-normalize, normalize-cong, normalize-nonNeg, normalize-pos, normalize-injective-≃, 0/n≡0Data.Integer.Properties
- *-cancelʳ-≡Data.Integer.Divisibility.Signed
- ∣ᵤ⇒∣System.Clock
- showThe text was updated successfully, but these errors were encountered: