aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Program
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-10-07 23:08:45 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-10-07 23:08:45 +0200
commit27d4a636cb7f1fbdbced1980808a9b947405eeb5 (patch)
tree830d7de2466f41ec69fe6792b7f0e3d85acefa5a /theories/Program
parente26b4dbedd29acbfb9cbf2320193cc68afa60cf3 (diff)
Remove the "exists" overrides from Program. (Fix bug #4360)
Diffstat (limited to 'theories/Program')
-rw-r--r--theories/Program/Syntax.v7
1 files changed, 0 insertions, 7 deletions
diff --git a/theories/Program/Syntax.v b/theories/Program/Syntax.v
index 67e9a20cc..892305b49 100644
--- a/theories/Program/Syntax.v
+++ b/theories/Program/Syntax.v
@@ -32,10 +32,3 @@ Require List.
Export List.ListNotations.
Require Import Bvector.
-
-(** Treating n-ary exists *)
-
-Tactic Notation "exists" constr(x) := exists x.
-Tactic Notation "exists" constr(x) constr(y) := exists x ; exists y.
-Tactic Notation "exists" constr(x) constr(y) constr(z) := exists x ; exists y ; exists z.
-Tactic Notation "exists" constr(x) constr(y) constr(z) constr(w) := exists x ; exists y ; exists z ; exists w.