]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/tactics/primitiveTactics.mli
ocaml 3.09 transition
[helm.git] / helm / ocaml / tactics / primitiveTactics.mli
index e06e9cf580f8a6720f0646b68be2635b2dbf5f27..01d200eb76ece2859d1e460e7f6447bfda339729 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-(* ALB needed for paramodulation... *)
-val new_metasenv_for_apply:
-  int -> ProofEngineTypes.proof -> Cic.context -> Cic.term ->
-  Cic.term * Cic.metasenv * Cic.term list * int
+(* ALB, needed by the new paramodulation... *)
+val apply_tac_verbose_with_subst:
+  term:Cic.term -> ProofEngineTypes.proof * int ->
+  Cic.substitution * (ProofEngineTypes.proof * int list)
 
 (* not a real tactic *)
 val apply_tac_verbose :
@@ -39,21 +39,21 @@ val apply_tac:
 val exact_tac:
   term: Cic.term -> ProofEngineTypes.tactic
 val intros_tac:
+  ?howmany:int ->
   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> unit ->
    ProofEngineTypes.tactic
 val cut_tac:
   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
-  term:Cic.term ->
+  Cic.term ->
    ProofEngineTypes.tactic 
 val letin_tac:
   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
-  term:Cic.term ->
+  Cic.term ->
    ProofEngineTypes.tactic 
 
 val elim_intros_simpl_tac:
-  term: Cic.term -> ProofEngineTypes.tactic 
+  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
+  ?depth:int -> ?using:Cic.term -> Cic.term -> ProofEngineTypes.tactic 
 val elim_intros_tac:
-  term: Cic.term -> ProofEngineTypes.tactic 
-
-val change_tac:
-  what: Cic.term -> with_what: Cic.term -> ProofEngineTypes.tactic 
+  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
+  ?depth:int -> ?using:Cic.term -> Cic.term -> ProofEngineTypes.tactic