deleted sum_below: no need for it with setsum and lessThan
authorpaulson
Thu, 25 May 2000 15:12:40 +0200
changeset 8970 3ac901561f33
parent 8969 23c6e0ca0086
child 8971 881853835a37
deleted sum_below: no need for it with setsum and lessThan
src/HOL/Arith.thy
--- a/src/HOL/Arith.thy	Thu May 25 15:12:00 2000 +0200
+++ b/src/HOL/Arith.thy	Thu May 25 15:12:40 2000 +0200
@@ -26,10 +26,4 @@
   mult_0   "0 * n = 0"
   mult_Suc "Suc m * n = n + (m * n)"
 
-(*We overload the constant for all + types*)
-consts sum_below :: "[nat=>'a, nat] => ('a::{zero,plus})"
-primrec 
-  sum_below_0    "sum_below f 0 = 0"
-  sum_below_Suc  "sum_below f (Suc n) = f(n) + sum_below f n"
-
 end