]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/tactics/primitiveTactics.mli
1. change_tac moved from PrimitiveTactics to ReductionTactics
[helm.git] / helm / ocaml / tactics / primitiveTactics.mli
index 5bbc7d188412702d49a8e1a615f30a04c7170664..2e35f4250477bdb12eff077c3204d6206599c10d 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
+
 (* not a real tactic *)
 val apply_tac_verbose :
   term:Cic.term ->
@@ -34,17 +39,19 @@ 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 -> Cic.term ->
+  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
+  Cic.term ->
    ProofEngineTypes.tactic 
 val letin_tac:
-  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> Cic.term ->
+  ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type ->
+  Cic.term ->
    ProofEngineTypes.tactic 
 
 val elim_intros_simpl_tac:
   term: Cic.term -> ProofEngineTypes.tactic 
-
-val change_tac:
-  what: Cic.term -> with_what: Cic.term -> ProofEngineTypes.tactic 
+val elim_intros_tac:
+  term: Cic.term -> ProofEngineTypes.tactic