]> matita.cs.unibo.it Git - helm.git/blob - matita/components/ng_tactics/nnAuto.mli
b0d7243796a06c4582b91415fb0a8b3e9babffa5
[helm.git] / matita / components / ng_tactics / nnAuto.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 type auto_params = NTacStatus.tactic_term list option * (string * string) list
13
14 val is_a_fact_obj: 
15   #NTacStatus.pstatus -> NUri.uri -> bool
16
17 val fast_eq_check_tac: params:auto_params -> 's NTacStatus.tactic
18
19 val paramod_tac: params:auto_params -> 's NTacStatus.tactic
20
21 val demod_tac: params:auto_params -> 's NTacStatus.tactic
22
23 val smart_apply_tac: 
24   NTacStatus.tactic_term -> 's NTacStatus.tactic
25
26 val auto_tac:
27   params:auto_params ->
28    ?trace_ref:NotationPt.term list ref -> 
29    's NTacStatus.tactic
30
31 val auto_lowtac: params:auto_params -> NTacStatus.lowtac_status -> int -> NTacStatus.lowtac_status
32
33 val keys_of_type: 
34   (#NTacStatus.pstatus as 'a) ->
35   NTacStatus.cic_term -> 'a * NTacStatus.cic_term list
36