]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTactics.mli
Moved compare in a different file.
[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: ?force:bool -> 's NTacStatus.tactic
16 val shift_tac: 's NTacStatus.tactic
17 val pos_tac: int list -> 's NTacStatus.tactic
18 val case_tac: string -> 's NTacStatus.tactic
19 val wildcard_tac: 's NTacStatus.tactic
20 val merge_tac: 's NTacStatus.tactic
21 val focus_tac: int list -> 's NTacStatus.tactic
22 val unfocus_tac: 's NTacStatus.tactic
23 val skip_tac: 's NTacStatus.tactic
24 val try_tac: 's NTacStatus.tactic -> 's NTacStatus.tactic
25 val repeat_tac: NTacStatus.tac_status NTacStatus.tactic -> 's NTacStatus.tactic
26
27 val compare_statuses : past:#NTacStatus.lowtac_status -> present:#NTacStatus.lowtac_status -> int list * int list
28
29 val distribute_tac:
30  NTacStatus.lowtac_status NTacStatus.lowtactic -> 's NTacStatus.tactic
31 val exec : NTacStatus.tac_status NTacStatus.tactic -> 's NTacStatus.lowtactic
32 val block_tac: 's NTacStatus.tactic list -> 's NTacStatus.tactic
33
34 val apply_tac: NTacStatus.tactic_term -> 's NTacStatus.tactic
35 val assumption_tac: 's NTacStatus.tactic
36 val change_tac: 
37    where:NTacStatus.tactic_pattern -> with_what:NTacStatus.tactic_term -> 
38      's NTacStatus.tactic
39 val cut_tac: NTacStatus.tactic_term -> 's NTacStatus.tactic
40 val elim_tac: 
41    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
42      's NTacStatus.tactic
43 val intro_tac: string -> 's NTacStatus.tactic
44 val cases_tac: 
45    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
46      's NTacStatus.tactic
47 val case1_tac: string -> 's NTacStatus.tactic
48 val lapply_tac: NTacStatus.tactic_term -> 's NTacStatus.tactic
49 val rewrite_tac:
50   dir:[ `LeftToRight | `RightToLeft ] ->
51    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
52     's NTacStatus.tactic
53 val generalize_tac : where:NTacStatus.tactic_pattern -> 's NTacStatus.tactic
54 val clear_tac : string list -> 's NTacStatus.tactic
55 val reduce_tac: 
56       reduction:[ `Normalize of bool | `Whd of bool ] ->
57       where:NTacStatus.tactic_pattern -> 's NTacStatus.tactic
58 val letin_tac: 
59       where:NTacStatus.tactic_pattern ->
60       what: NTacStatus.tactic_term ->
61       string -> 's NTacStatus.tactic
62 val assert_tac:
63  ((string * [`Decl of NTacStatus.tactic_term | `Def of NTacStatus.tactic_term * NTacStatus.tactic_term]) list * NTacStatus.tactic_term) list ->
64   's NTacStatus.tactic
65
66 val constructor_tac : 
67         ?num:int -> args:NTacStatus.tactic_term list -> 's NTacStatus.tactic
68
69 val atomic_tac :
70     (((int * Continuationals.Stack.switch) list * 'a list * 'b list *
71       [> `NoTag ])
72      list NTacStatus.status ->
73      (< auto_cache : NCicLibrary.automation_cache;
74         eq_cache : NCicLibrary.unit_eq_cache;
75         coerc_db : NCicCoercion.db; dump : NCicLibrary.obj list;
76         lstatus : LexiconEngine.lexicon_status; obj : NCic.obj;
77         set_coerc_db : NCicCoercion.db -> 'c;
78         set_coercion_status : 'd. (#NCicCoercion.g_status as 'd) -> 'c;
79         set_uhint_db : NCicUnifHint.db -> 'c;
80         set_unifhint_status : 'e. (#NCicUnifHint.g_status as 'e) -> 'c;
81         timestamp : NCicLibrary.timestamp; uhint_db : NCicUnifHint.db; .. >
82       as 'c)) ->
83     (#NTacStatus.tac_status as 'f) -> 'f
84
85 type indtyinfo 
86
87 val ref_of_indtyinfo : indtyinfo -> NReference.reference
88
89 val analyze_indty_tac :
90     what:NTacStatus.tactic_term ->
91     indtyinfo option ref -> (#NTacStatus.tac_status as 'a) -> 'a
92
93
94 val find_in_context : 'a -> ('a * 'b) list -> int
95
96 val inversion_tac: 
97    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
98      's NTacStatus.tactic