src/Sequents/LK0.ML
changeset 9259 103acc345f75
parent 7122 87b233b31889
child 17481 75166ebb619b
--- a/src/Sequents/LK0.ML	Thu Jul 06 11:23:39 2000 +0200
+++ b/src/Sequents/LK0.ML	Thu Jul 06 11:24:09 2000 +0200
@@ -149,15 +149,20 @@
 by (rtac thinR 1 THEN rtac prem 1);
 qed "backwards_impR";
 
- 
-qed_goal "conjunct1" thy "|-P&Q ==> |-P"
-    (fn [major] => [lemma_tac major 1,  Fast_tac 1]);
+Goal "|-P&Q ==> |-P";
+by (etac (thinR RS cut) 1);
+by (Fast_tac 1);		
+qed "conjunct1";
 
-qed_goal "conjunct2" thy "|-P&Q ==> |-Q"
-    (fn [major] => [lemma_tac major 1,  Fast_tac 1]);
+Goal "|-P&Q ==> |-Q";
+by (etac (thinR RS cut) 1);
+by (Fast_tac 1);		
+qed "conjunct2";
 
-qed_goal "spec" thy "|- (ALL x. P(x)) ==> |- P(x)"
-    (fn [major] => [lemma_tac major 1,  Fast_tac 1]);
+Goal "|- (ALL x. P(x)) ==> |- P(x)";
+by (etac (thinR RS cut) 1);
+by (Fast_tac 1);		
+qed "spec";
 
 (** Equality **)