-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add a conference tutorial #299
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…work on the tutorial
If there are meta-variables in a precondition, progress will apply an assumption (which instantiates the meta-variables) only if there is a unique assumption matching the precondition.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds a tutorial for Lean which can be used for workshops/conferences.
It also introduces many improvements (for the Lean backend):
progress
now automatically splits the conjuncts in the post-conditions (no need for the..
inprogress as ⟨ x .. ⟩
anymore). It also uses a smart version ofassumption
which applies an assumption to a goal containing meta-variables only if there is a single matching assumption in the context (this way, we avoid spurious instantiations of meta-variables, while benefiting from a good level of automation).scalar_tac
, including performance issues, problems with the preprocessing which would not simplify the context as much as expected, better handling of natural numbers, more preprocessing to handle disjunctions, etc.Scalar.toNat
,U32.toNat
, etc.1#u32
which desugared toU32.ofInt 1 (by scalar_tac)
. Until now it was however printed asU32.ofInt 1 ...
in the goals. It now gets printed to1#u32
.overflow_add
,!
(for scalars),Vec::resize
scalar_nf
andscalar_eq_nf
(which usering_nf
)dcases
, a modified version ofcases
which allows to perform case disjunction about decidable propositions in a simpler manner