]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTactics.mli
ab049f1c34fdc3495536a45c97f0273580c84e2b
[helm.git] / helm / software / components / ng_tactics / nTactics.mli
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
13
14 val dot_tac: 's NTacStatus.tactic
15 val branch_tac: 's NTacStatus.tactic
16 val shift_tac: 's NTacStatus.tactic
17 val pos_tac: int list -> 's NTacStatus.tactic
18 val wildcard_tac: 's NTacStatus.tactic
19 val merge_tac: 's NTacStatus.tactic
20 val focus_tac: int list -> 's NTacStatus.tactic
21 val unfocus_tac: 's NTacStatus.tactic
22 val skip_tac: 's NTacStatus.tactic
23 val try_tac: 's NTacStatus.tactic -> 's NTacStatus.tactic
24
25 val distribute_tac:
26  NTacStatus.lowtac_status NTacStatus.lowtactic -> 's NTacStatus.tactic
27 val block_tac: 's NTacStatus.tactic list -> 's NTacStatus.tactic
28
29 val apply_tac: NTacStatus.tactic_term -> 's NTacStatus.tactic
30 val assumption_tac: 's NTacStatus.tactic
31 val change_tac: 
32    where:NTacStatus.tactic_pattern -> with_what:NTacStatus.tactic_term -> 
33      's NTacStatus.tactic
34 val elim_tac: 
35    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
36      's NTacStatus.tactic
37 val intro_tac: string -> 's NTacStatus.tactic
38 val cases_tac: 
39    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
40      's NTacStatus.tactic
41 val case1_tac: string -> 's NTacStatus.tactic
42 val rewrite_tac:
43   dir:[ `LeftToRight | `RightToLeft ] ->
44    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
45     's NTacStatus.tactic
46 val generalize_tac : where:NTacStatus.tactic_pattern -> 's NTacStatus.tactic
47 val reduce_tac: 
48       reduction:[ `Normalize of bool | `Whd of bool ] ->
49       where:NTacStatus.tactic_pattern -> 's NTacStatus.tactic
50 val letin_tac: 
51       where:NTacStatus.tactic_pattern ->
52       what: NTacStatus.tactic_term ->
53       string -> 's NTacStatus.tactic
54 val assert_tac:
55  ((string * [`Decl of NTacStatus.tactic_term | `Def of NTacStatus.tactic_term * NTacStatus.tactic_term]) list * NTacStatus.tactic_term) list ->
56   's NTacStatus.tactic
57
58 val auto_tac:
59   params:(NTacStatus.tactic_term list * (string * string) list) -> 
60    's NTacStatus.tactic