added clarify method;
authorwenzelm
Tue, 25 Jul 2000 00:13:49 +0200
changeset 9441 e729ea747250
parent 9440 a72fe5eafb5e
child 9442 6f089616ae1f
added clarify method; removed unofficial improper methods;
src/Provers/classical.ML
--- a/src/Provers/classical.ML	Tue Jul 25 00:13:11 2000 +0200
+++ b/src/Provers/classical.ML	Tue Jul 25 00:13:49 2000 +0200
@@ -1171,18 +1171,14 @@
 (** setup_methods **)
 
 val setup_methods = Method.add_methods
- [("default", Method.thms_ctxt_args rule, "apply some rule"),
-  ("rule", Method.thms_ctxt_args rule, "apply some rule"),
+ [("default", Method.thms_ctxt_args rule, "apply some rule (classical)"),
+  ("rule", Method.thms_ctxt_args rule, "apply some rule (classical)"),
   ("contradiction", Method.no_args contradiction, "proof by contradiction"),
   ("intro", Method.thms_ctxt_args intro, "repeatedly apply introduction rules"),
   ("elim", Method.thms_ctxt_args elim, "repeatedly apply elimination rules"),
-  ("safe_tac", cla_method safe_tac, "safe_tac (improper!)"),
-  ("safe_step_tac", cla_method' safe_step_tac, "safe_step_tac (improper!)"),
-  ("step_tac", cla_method' step_tac, "step_tac (improper!)"),
+  ("clarify", cla_method' clarify_tac, "repeatedly apply safe steps"),
   ("fast", cla_method' fast_tac, "classical prover (depth-first)"),
-  ("best", cla_method' best_tac, "classical prover (best-first)"),
-  ("slow", cla_method' slow_tac, "classical prover (depth-first, more backtracking)"),
-  ("slow_best", cla_method' slow_best_tac, "classical prover (best-first, more backtracking)")];
+  ("best", cla_method' best_tac, "classical prover (best-first)")];