src/HOL/ex/svc_test.ML
changeset 11704 3c50a2cd6f00
parent 11701 3d51fbf81c17
child 11868 56db9f3a6b3e
--- a/src/HOL/ex/svc_test.ML	Fri Oct 05 23:58:52 2001 +0200
+++ b/src/HOL/ex/svc_test.ML	Sat Oct 06 00:02:46 2001 +0200
@@ -231,9 +231,9 @@
 
 (** Linear arithmetic **)
 
-Goal "x ~= # 14 & x ~= # 13 & x ~= # 12 & x ~= # 11 & x ~= # 10 & x ~= # 9 & \
-\     x ~= # 8 & x ~= # 7 & x ~= # 6 & x ~= # 5 & x ~= # 4 & x ~= # 3 & \
-\     x ~= # 2 & x ~= Numeral1 & Numeral0 < x & x < # 16 --> # 15 = (x::int)";
+Goal "x ~= 14 & x ~= 13 & x ~= 12 & x ~= 11 & x ~= 10 & x ~= 9 & \
+\     x ~= 8 & x ~= 7 & x ~= 6 & x ~= 5 & x ~= 4 & x ~= 3 & \
+\     x ~= 2 & x ~= Numeral1 & Numeral0 < x & x < 16 --> 15 = (x::int)";
 by (svc_tac 1);
 qed "";
 
@@ -244,11 +244,11 @@
 
 (** Natural number examples requiring implicit "non-negative" assumptions*)
 
-Goal "(# 3::nat)*a <= # 2 + # 4*b + # 6*c  & # 11 <= # 2*a + b + # 2*c & \
-\     a + # 3*b <= # 5 + # 2*c  --> # 2 + # 3*b <= # 2*a + # 6*c";
+Goal "(3::nat)*a <= 2 + 4*b + 6*c  & 11 <= 2*a + b + 2*c & \
+\     a + 3*b <= 5 + 2*c  --> 2 + 3*b <= 2*a + 6*c";
 by (svc_tac 1);
 qed "";
 
-Goal "(n::nat) < # 2 ==> (n = Numeral0) | (n = Numeral1)";
+Goal "(n::nat) < 2 ==> (n = Numeral0) | (n = Numeral1)";
 by (svc_tac 1);
 qed "";