aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Arith/Compare.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-03-29 14:35:10 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-03-29 14:35:10 +0000
commit91482e478e84932eed3746449aeb11d96c594056 (patch)
treeaaa312cbe4196ee9ff416b55aa479fd39b15479d /theories/Arith/Compare.v
parentcde6f21cd5cf45303f597bcda5b4a377ef93e74a (diff)
Implicit Variables Type
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3809 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Arith/Compare.v')
-rwxr-xr-xtheories/Arith/Compare.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/theories/Arith/Compare.v b/theories/Arith/Compare.v
index 5b12033dc..5d7f1e42c 100755
--- a/theories/Arith/Compare.v
+++ b/theories/Arith/Compare.v
@@ -11,9 +11,14 @@
(** Equality is decidable on [nat] *)
Import nat_scope.
+(*
Lemma not_eq_sym : (A:Set)(p,q:A)(~p=q) -> ~(q=p).
Proof sym_not_eq.
Hints Immediate not_eq_sym : arith.
+*)
+Notation not_eq_sym := sym_not_eq.
+
+Implicit Variables Type m,n,p,q:nat.
Require Arith.
Require Peano_dec.