removed unnecessary reference poking (cf. f45d332a90e3)
authorkrauss
Tue, 28 Sep 2010 09:34:20 +0200
changeset 39752 06fc1a79b4bf
parent 39751 7ead9d0f2e84
child 39753 ec6dfd9ce573
removed unnecessary reference poking (cf. f45d332a90e3)
doc-src/Functions/Thy/Functions.thy
--- a/doc-src/Functions/Thy/Functions.thy	Tue Sep 28 09:17:33 2010 +0200
+++ b/doc-src/Functions/Thy/Functions.thy	Tue Sep 28 09:34:20 2010 +0200
@@ -580,7 +580,6 @@
 | "fib2 1 = 1"
 | "fib2 (n + 2) = fib2 n + fib2 (Suc n)"
 
-(*<*)ML_val "goals_limit := 1"(*>*)
 txt {*
   This kind of matching is again justified by the proof of pattern
   completeness and compatibility. 
@@ -588,7 +587,7 @@
   either @{term "0::nat"}, @{term "1::nat"} or @{term "n +
   (2::nat)"}:
 
-  @{subgoals[display,indent=0]}
+  @{subgoals[display,indent=0,goals_limit=1]}
 
   This is an arithmetic triviality, but unfortunately the
   @{text arith} method cannot handle this specific form of an
@@ -597,7 +596,6 @@
   existentials, which can then be solved by the arithmetic decision procedure.
   Pattern compatibility and termination are automatic as usual.
 *}
-(*<*)ML_val "goals_limit := 10"(*>*)
 apply atomize_elim
 apply arith
 apply auto