Removed > and >= again.
authornipkow
Mon, 13 Nov 2000 08:53:21 +0100
changeset 10460 a8d9a79ed95e
parent 10459 df3cd3e76046
child 10461 96529827ff71
Removed > and >= again.
src/HOL/Ord.thy
--- a/src/HOL/Ord.thy	Sun Nov 12 14:50:26 2000 +0100
+++ b/src/HOL/Ord.thy	Mon Nov 13 08:53:21 2000 +0100
@@ -59,23 +59,18 @@
   "_leEx"    :: [idt, 'a, bool] => bool   ("(3EX _<=_./ _)" [0, 0, 10] 10)
 
 syntax (symbols)
-  "op >="    :: ['a, 'a] => bool          ("(_/ \\<ge> _)"  [50, 51] 50)
   "_lessAll" :: [idt, 'a, bool] => bool   ("(3\\<forall>_<_./ _)"  [0, 0, 10] 10)
   "_lessEx"  :: [idt, 'a, bool] => bool   ("(3\\<exists>_<_./ _)"  [0, 0, 10] 10)
   "_leAll"   :: [idt, 'a, bool] => bool   ("(3\\<forall>_\\<le>_./ _)" [0, 0, 10] 10)
   "_leEx"    :: [idt, 'a, bool] => bool   ("(3\\<exists>_\\<le>_./ _)" [0, 0, 10] 10)
 
 syntax (HOL)
-  "op >"     :: ['a, 'a] => bool          ("(_/ > _)"   [50, 51] 50)
-  "op >="    :: ['a, 'a] => bool          ("(_/ >= _)"  [50, 51] 50)
   "_lessAll" :: [idt, 'a, bool] => bool   ("(3! _<_./ _)"  [0, 0, 10] 10)
   "_lessEx"  :: [idt, 'a, bool] => bool   ("(3? _<_./ _)"  [0, 0, 10] 10)
   "_leAll"   :: [idt, 'a, bool] => bool   ("(3! _<=_./ _)" [0, 0, 10] 10)
   "_leEx"    :: [idt, 'a, bool] => bool   ("(3? _<=_./ _)" [0, 0, 10] 10)
 
 translations
- "x > y"        =>  "y < x"
- "x >= y"       =>  "y <= x"
  "ALL x<y. P"   =>  "ALL x. x < y --> P"
  "EX x<y. P"    =>  "EX x. x < y  & P"
  "ALL x<=y. P"  =>  "ALL x. x <= y --> P"