changeset 428:b027b39606ed

Pass through Generic, to incorporate new coqdoc features
author Adam Chlipala <adam@chlipala.net>
date Thu, 26 Jul 2012 11:22:46 -0400
parents 5e6b76ca14de
children 5744842c36a8
files src/Generic.v
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/Generic.v	Thu Jul 26 11:09:48 2012 -0400
+++ b/src/Generic.v	Thu Jul 26 11:22:46 2012 -0400
@@ -360,6 +360,10 @@
      ]]
      *)
 
+(* begin hide *)
+Definition append' := append.
+(* end hide *)
+
 (** Some of these simplified terms seem overly complex because we have turned off simplification of calls to [append], which is what uses of the [++] operator desugar to.  Selective [++] simplification would combine adjacent string literals, yielding more or less the code we would write manually to implement this printing scheme. *)
 
 
@@ -642,6 +646,10 @@
 
   induction r; crush.
 
+  (* begin hide *)
+  Definition pred' := pred.
+  (* end hide *)
+
   (** The base case is discharged automatically, and the inductive case looks like this, where [H] is the outer IH (for induction over [T] values) and [IHn] is the inner IH (for induction over the recursive arguments).
      [[
   H : forall i : fin (S n),