made more robust
authorpaulson
Wed, 22 Mar 2000 13:01:57 +0100
changeset 8553 a79f6fb4d426
parent 8552 8c4ff19a7286
child 8554 ba33995b87ff
made more robust
src/HOL/Induct/Mutil.ML
--- a/src/HOL/Induct/Mutil.ML	Wed Mar 22 13:01:18 2000 +0100
+++ b/src/HOL/Induct/Mutil.ML	Wed Mar 22 13:01:57 2000 +0100
@@ -104,9 +104,9 @@
 by (auto_tac (claset(), simpset() addsimps [mod_Suc]));
 qed "domino_singleton";
 
-Goal "d:domino \
-\     ==> EX i j i' j'. colored 0 d = {(i,j)} & colored 1 d = {(i',j')}";
-by (blast_tac (claset() addDs [domino_singleton]) 1);
+Goal "d:domino ==> (EX i j. colored 0 d = {(i,j)}) & \
+\                  (EX i' j'. colored 1 d = {(i',j')})";
+by (blast_tac (claset() addSIs [domino_singleton]) 1);
 qed "domino_singleton_01";
 
 (*** Tilings of dominoes ***)