Skip to content
Snippets Groups Projects
Commit 00fef20c authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add docs and CHANGELOG.

parent 64eab238
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ lemma. ...@@ -19,6 +19,7 @@ lemma.
invariant opening. invariant opening.
* Change `iInduction` to always generate a magic wand instead of sometimes * Change `iInduction` to always generate a magic wand instead of sometimes
generating an implication for reverted hypotheses. generating an implication for reverted hypotheses.
* Add `iUnfold` tactic.
**Changes in `base_logic`:** **Changes in `base_logic`:**
......
...@@ -273,6 +273,10 @@ Rewriting / simplification ...@@ -273,6 +273,10 @@ Rewriting / simplification
- `iSimpl` / `iSimpl in "selpat"` : perform `simpl` on the proof mode - `iSimpl` / `iSimpl in "selpat"` : perform `simpl` on the proof mode
goal / hypotheses given by the selection pattern `selpat`. This is a goal / hypotheses given by the selection pattern `selpat`. This is a
shorthand for `iEval (simpl)`. shorthand for `iEval (simpl)`.
- `iUnfold xs` / `iUnfold xs in "selpat"` : perform `unfold xs` on the proof
mode goal / hypotheses given by the selection pattern `selpat`. This is a
shorthand for `iEval (unfold xs)`. Similar to Coq's `unfold`, the argument
`xs` should be a comma-separated non-empty list.
Iris Iris
---- ----
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment