summaryrefslogtreecommitdiff
path: root/theories/Init/Wf.v
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2010-10-14 17:51:11 +0200
committerGravatar Stephane Glondu <steph@glondu.net>2010-10-14 17:51:11 +0200
commit3e96002677226c0cdaa8f355938a76cfb37a722a (patch)
tree3ca96e142fdb68e464d2f5f403f315282b94f922 /theories/Init/Wf.v
parentf18e6146f4fd6ed5b8ded10a3e602f5f64f919f4 (diff)
Imported Upstream version 8.3upstream/8.3
Diffstat (limited to 'theories/Init/Wf.v')
-rw-r--r--theories/Init/Wf.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/theories/Init/Wf.v b/theories/Init/Wf.v
index be7becda..c8c5e3d6 100644
--- a/theories/Init/Wf.v
+++ b/theories/Init/Wf.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: Wf.v 13323 2010-07-24 15:57:30Z herbelin $ i*)
+(*i $Id: Wf.v 13492 2010-10-04 21:20:01Z herbelin $ i*)
(** * This module proves the validity of
- well-founded recursion (also known as course of values)
@@ -36,6 +36,8 @@ Section Well_founded.
destruct 1; trivial.
Defined.
+ Global Implicit Arguments Acc_inv [x y] [x].
+
(** A relation is well-founded if every element is accessible *)
Definition well_founded := forall a:A, Acc a.