aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorbarras2003-10-11 00:20:33 +0000
committerbarras2003-10-11 00:20:33 +0000
commit2b61cb974c847669eaf24dfbf47d8615812481fb (patch)
tree114bfc378dbb08e18ab57c4072277b4dc0a5fd04 /theories
parente5164cf5448cb25d2911320469bc16e44ceae511 (diff)
mise a jour nouvelle syntaxe
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4595 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories')
-rwxr-xr-xtheories/Init/Logic.v12
1 files changed, 6 insertions, 6 deletions
diff --git a/theories/Init/Logic.v b/theories/Init/Logic.v
index 6abbfa9f87..469a9d4bf6 100755
--- a/theories/Init/Logic.v
+++ b/theories/Init/Logic.v
@@ -123,28 +123,28 @@ Definition all := [A:Type][P:A->Prop](x:A)(P x).
V7only [ Notation Ex := (ex ?). ].
Notation "'EX' x | p" := (ex ? [x]p)
(at level 10, p at level 8) : type_scope
- V8only (at level 200, x ident, p at level 80).
+ V8only "'exists' x | p" (at level 200, x ident, p at level 80).
Notation "'EX' x : t | p" := (ex ? [x:t]p)
(at level 10, p at level 8) : type_scope
- V8only (at level 200, x ident, p at level 80).
+ V8only "'exists' x : t | p" (at level 200, x ident, p at level 80).
V7only [ Notation Ex2 := (ex2 ?). ].
Notation "'EX' x | p & q" := (ex2 ? [x]p [x]q)
(at level 10, p, q at level 8) : type_scope
- V8only "'EX2' x | p & q" (at level 200, x ident, p, q at level 80).
+ V8only "'exists2' x | p & q" (at level 200, x ident, p, q at level 80).
Notation "'EX' x : t | p & q" := (ex2 ? [x:t]p [x:t]q)
(at level 10, p, q at level 8) : type_scope
- V8only "'EX2' x : t | p & q"
+ V8only "'exists2' x : t | p & q"
(at level 200, x ident, t at level 200, p, q at level 80).
-V7only [Notation All := (all ?).].
+V7only [Notation All := (all ?).
Notation "'ALL' x | p" := (all ? [x]p)
(at level 10, p at level 8) : type_scope
V8only (at level 200, x ident, p at level 200).
Notation "'ALL' x : t | p" := (all ? [x:t]p)
(at level 10, p at level 8) : type_scope
V8only (at level 200, x ident, t, p at level 200).
-
+].
(** Universal quantification *)