]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/auto.mli
- matitaEngine: some commands like "coercion" must not be executed when mma's are...
[helm.git] / helm / software / components / tactics / auto.mli
index a40d00fc5970fa4bb569a0213c624ccdeb44f58e..c8a9224cb9fec6266e1388a469e0ebcf23645a39 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-(* stops at the first solution *)
+type auto_params = Cic.term list * (string * string) list 
+
 val auto_tac:
   dbd:HSql.dbd -> 
-  params:(string * string) list -> 
-  universe:Universe.universe ->
+  params:auto_params ->
+  automation_cache:AutomationCache.cache ->
   ProofEngineTypes.tactic
 
 val applyS_tac:
   dbd:HSql.dbd -> 
   term: Cic.term -> 
-  params:(string * string) list ->
-  universe:Universe.universe ->
+  params:auto_params ->
+  automation_cache:AutomationCache.cache ->
   ProofEngineTypes.tactic
 
 val demodulate_tac : 
   dbd:HSql.dbd -> 
-  universe:Universe.universe ->
+  params:auto_params ->
+  automation_cache:AutomationCache.cache ->
   ProofEngineTypes.tactic
 
-val solve_rewrite_tac:
-  universe:Universe.universe ->
-  ?steps:int -> 
-  unit ->
-    ProofEngineTypes.tactic
+val demodulate_theorem : 
+  automation_cache:AutomationCache.cache -> 
+  UriManager.uri -> 
+  Cic.term * Cic.term
 
 type auto_status = 
   Cic.context * 
   (* or list: goalno, goaltype, grey, depth, candidates: (goalno, c) *)
-  (int * Cic.term * bool * int * (int * Cic.term) list) list * 
+  (int * Cic.term * bool * int * (int * Cic.term Lazy.t) list) list * 
   (* and list *)
   (int * Cic.term * int) list *
   (* last moves *)
-  Cic.term list
+  Cic.term Lazy.t list
 
 val get_auto_status : unit -> auto_status
 val pause: bool -> unit