-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.txt
38 lines (28 loc) · 1.13 KB
/
commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
* Open/Close Scope [scope_name]
* Print Scope [scope_name]
* Reset [id]/Initial
* Set/Unset Printing Notations
* Variable : Local Type declaration
* Parameter : Global Type declaration
* Let : Local Type definition (transparent)
* Definition : Global Type definition (transparent)
* Hypothesis : Local Prop declaration
* Axiom : Global Prop declaration
* Goal : Local Prop definition
* Theorem/Lemma : Global Prop definition (opaque)
* Fixpoint : Order recursive functional definition
* Context : Global?? constraint
* Defined : End Definition
* Qed : End Theorem
* Save [id] : End Goal and save as [id]
* Show n : Show nth goal and its env + context
* Undo n : Undo n steps in a proof
* Restart : Restart proof
* Abort : Abort proof
* Search : Basic lookup
* SearchPattern : Search for universally quantified theorems
* SearchRewrite : Search for rewrite theorems
* Hint [Resolve/Extern/Rewrite...] [theorems ...] : [databases ...]
(* See "Programmable Proof Search" in the docs *)
Add theorems to apply when using the given database.
* Scheme (See Chapter 14, pg. 394 and pg. 401)