aboutsummaryrefslogtreecommitdiff
path: root/theories/Reals
diff options
context:
space:
mode:
authorbarras2003-10-22 10:35:04 +0000
committerbarras2003-10-22 10:35:04 +0000
commit6475388a91c899e8bcf7b69b223180025d4f85ff (patch)
tree6031dc6e72bb676fa9d9e4f9f2be8ab50c1ca2e3 /theories/Reals
parent9da09a4da10aa36699538bde01086172c64689eb (diff)
reorganisation des niveaux (ex: = est a 70)
Hint Destruct: syntaxe similaire aux autres hints... git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4696 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Reals')
-rw-r--r--theories/Reals/Ranalysis1.v2
-rw-r--r--theories/Reals/Rsyntax.v23
2 files changed, 12 insertions, 13 deletions
diff --git a/theories/Reals/Ranalysis1.v b/theories/Reals/Ranalysis1.v
index 88fd935b10..b8c5c2f4c3 100644
--- a/theories/Reals/Ranalysis1.v
+++ b/theories/Reals/Ranalysis1.v
@@ -35,7 +35,7 @@ V8Infix "-" minus_fct : Rfun_scope.
V8Infix "/" div_fct : Rfun_scope.
Notation Local "f1 'o' f2" := (comp f1 f2) (at level 2, right associativity)
: Rfun_scope
- V8only (at level 15, right associativity).
+ V8only (at level 20, right associativity).
V8Notation "/ x" := (inv_fct x) : Rfun_scope.
Delimits Scope Rfun_scope with F.
diff --git a/theories/Reals/Rsyntax.v b/theories/Reals/Rsyntax.v
index 95d60efebe..3929acdf9f 100644
--- a/theories/Reals/Rsyntax.v
+++ b/theories/Reals/Rsyntax.v
@@ -210,33 +210,32 @@ Infix "<" Rlt (at level 5, no associativity) : R_scope.
Infix ">=" Rge (at level 5, no associativity) : R_scope.
Infix ">" Rgt (at level 5, no associativity) : R_scope.
Infix "+" Rplus (at level 4) : R_scope
- V8only (at level 40, left associativity).
+ V8only (at level 50, left associativity).
Infix "-" Rminus (at level 4) : R_scope
- V8only (at level 40, left associativity).
+ V8only (at level 50, left associativity).
Infix "*" Rmult (at level 3) : R_scope
- V8only (at level 30, left associativity).
+ V8only (at level 40, left associativity).
Infix "/" Rdiv (at level 3) : R_scope
- V8only (at level 30, left associativity).
-Notation "- x" := (Ropp x) (at level 0) : R_scope
V8only (at level 40, left associativity).
+Notation "- x" := (Ropp x) (at level 0) : R_scope
+ V8only (at level 50, left associativity).
Notation "x == y == z" := (eqT R x y)/\(eqT R y z)
(at level 5, y at level 4, no associtivity): R_scope
- V8only "x = y = z" (at level 50, y at next level, no associativity).
+ V8only "x = y = z" (at level 70, y at next level, no associativity).
Notation "x <= y <= z" := (Rle x y)/\(Rle y z)
(at level 5, y at level 4) : R_scope
- V8only (at level 50, y at next level, no associativity).
+ V8only (at level 70, y at next level, no associativity).
Notation "x <= y < z" := (Rle x y)/\(Rlt y z)
(at level 5, y at level 4) : R_scope
- V8only (at level 50, y at next level, no associativity).
+ V8only (at level 70, y at next level, no associativity).
Notation "x < y < z" := (Rlt x y)/\(Rlt y z)
(at level 5, y at level 4) : R_scope
- V8only (at level 50, y at next level, no associativity).
+ V8only (at level 70, y at next level, no associativity).
Notation "x < y <= z" := (Rlt x y)/\(Rle y z)
(at level 5, y at level 4) : R_scope
- V8only (at level 50, y at next level, no associativity).
-(*Notation "x <> y" := ~(eqT R x y) (at level 5) : R_scope.*)
+ V8only (at level 70, y at next level, no associativity).
Notation "/ x" := (Rinv x) (at level 0): R_scope
- V8only (at level 30, left associativity).
+ V8only (at level 40, left associativity).
Open Local Scope R_scope.
End R_scope.