]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/tactics/autoTactic.mli
added optional "paramodulation" parameter to auto to turn on paramodulation
[helm.git] / helm / ocaml / tactics / autoTactic.mli
index 0b5a9ca9b35d9dcae5b17d4a651263c09d6742d7..d9061c1efac5e026c88924897a3a8a9194d39e50 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-val auto_tac : ?num:int option -> dbd:Mysql.dbd -> ProofEngineTypes.tactic
-val auto_tac_new : dbd:Mysql.dbd -> ProofEngineTypes.tactic
+val auto_tac:
+  ?depth:int -> ?width:int -> ?paramodulation:string ->
+  dbd:Mysql.dbd -> unit ->
+  ProofEngineTypes.tactic
+
+val paramodulation_tactic:
+  (Mysql.dbd -> ProofEngineTypes.status ->
+     ProofEngineTypes.proof * ProofEngineTypes.goal list) ref
+
+val term_is_equality:
+  (Cic.term -> bool) ref