]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTactics.mli
First tests for paramodulation (pretty printer, unification)
[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: NTacStatus.tactic
15 val branch_tac: NTacStatus.tactic
16 val shift_tac: NTacStatus.tactic
17 val pos_tac: int list -> NTacStatus.tactic
18 val wildcard_tac: NTacStatus.tactic
19 val merge_tac: NTacStatus.tactic
20 val focus_tac: int list -> NTacStatus.tactic
21 val unfocus_tac: NTacStatus.tactic
22 val skip_tac: NTacStatus.tactic
23
24 val distribute_tac: NTacStatus.lowtactic -> NTacStatus.tactic
25 val block_tac: NTacStatus.tactic list -> NTacStatus.tactic
26
27 val apply_tac: NTacStatus.tactic_term -> NTacStatus.tactic
28 val change_tac: 
29    where:NTacStatus.tactic_pattern -> with_what:NTacStatus.tactic_term -> 
30      NTacStatus.tactic
31 val elim_tac: 
32    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
33      NTacStatus.tactic
34 val intro_tac: string -> NTacStatus.tactic
35 val cases_tac: 
36    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
37      NTacStatus.tactic
38 val case1_tac: string -> NTacStatus.tactic
39 val rewrite_tac:
40   dir:[ `LeftToRight | `RightToLeft ] ->
41    what:NTacStatus.tactic_term -> where:NTacStatus.tactic_pattern -> 
42     NTacStatus.tactic
43 val generalize_tac : where:NTacStatus.tactic_pattern -> NTacStatus.tactic
44 val reduce_tac: 
45       reduction:[ `Normalize of bool | `Whd of bool ] ->
46       where:NTacStatus.tactic_pattern -> NTacStatus.tactic
47 val letin_tac: 
48       where:NTacStatus.tactic_pattern ->
49       what: NTacStatus.tactic_term ->
50       string -> NTacStatus.tactic
51 val assert_tac:
52  ((string * [`Decl of NTacStatus.tactic_term | `Def of NTacStatus.tactic_term * NTacStatus.tactic_term]) list * NTacStatus.tactic_term) list ->
53   NTacStatus.tactic
54
55 val auto_tac:
56   params:'a -> NTacStatus.tactic