diff --git a/docs/proof_mode.md b/docs/proof_mode.md index 3419021fbeec08ec880570c24f225327791fb936..5aa8b3e84dc4c047aa9dc17da1c6c1b1430f6ab2 100644 --- a/docs/proof_mode.md +++ b/docs/proof_mode.md @@ -187,8 +187,18 @@ Iris Miscellaneous ------------- -- The tactic `done` is extended so that it also performs `iAssumption` and - introduces pure connectives. +- The tactic `done` of [std++](https://gitlab.mpi-sws.org/iris/stdpp/-/blob/master/theories/tactics.v) + (which solves "trivial" goals using `intros`, `reflexivity`, `symmetry`, + `eassumption`, `trivial`, `split`, `discriminate`, `contradiction`, etc.) is + extended so that it also, among other things: + + performs `iAssumption`, + + introduces `∀`, `→`, and `-∗` in the proof mode, + + introduces pure goals `⌜ φ âŒ` using `iPureIntro` and calls `done` on `φ`, and, + + solves other trivial proof mode goals, such as `emp`, `x ≡ x`, big operators + over the empty list/map/set/multiset. + + (Note that ssreflect also has a `done` tactic. Although Iris uses ssreflect, + it overrides ssreflect's `done` tactic with std++'s.) - The proof mode adds hints to the core `eauto` database so that `eauto` automatically introduces: conjunctions and disjunctions, universal and existential quantifiers, implications and wand, plainness, persistence, later