Skip to content
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

Implement a saturation tactic to handle universally quantified assumptions #305

Open
sonmarcho opened this issue Aug 20, 2024 · 0 comments

Comments

@sonmarcho
Copy link
Member

We need a tactic to automatically saturate the context by instantiating assumptions of the shape forall x y, ... with everything they can find in the context (with maybe a given number of rounds). This would have been useful for both the proofs of the hashmap and the proof of the AVL (see for instance this, which could be automated if we had such a tactic).

Basically, if we have the context:

h : forall (x : A) (y : B), P x y
x : A
y0 : B
y1 : B

calling this tactic would introduce:

_ : P x y0
_ : P x y1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant