]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/auto.mli
case tactic first tries with a simple outtype and then with a more sofisticated one
[helm.git] / helm / software / components / tactics / auto.mli
index a300a3132d421e0946610bc1d7debcdbbf77c36b..a45083f390da6b1521606bfb424149f286b3f428 100644 (file)
@@ -44,6 +44,11 @@ val demodulate_tac :
   universe:Universe.universe ->
   ProofEngineTypes.tactic
 
+val demodulate_theorem : 
+  universe:Universe.universe -> 
+  UriManager.uri -> 
+  Cic.term * Cic.term
+
 val solve_rewrite_tac:
   params:auto_params ->
   universe:Universe.universe ->
@@ -52,11 +57,11 @@ val solve_rewrite_tac:
 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