]> matita.cs.unibo.it Git - helm.git/commitdiff
added test about dependent coercions
authorEnrico Tassi <enrico.tassi@inria.fr>
Tue, 24 Jul 2007 08:58:16 +0000 (08:58 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Tue, 24 Jul 2007 08:58:16 +0000 (08:58 +0000)
matita/tests/coercions_dependent.ma [new file with mode: 0644]

diff --git a/matita/tests/coercions_dependent.ma b/matita/tests/coercions_dependent.ma
new file mode 100644 (file)
index 0000000..b89abbf
--- /dev/null
@@ -0,0 +1,33 @@
+(**************************************************************************)
+(*       ___                                                              *)
+(*      ||M||                                                             *)
+(*      ||A||       A project by Andrea Asperti                           *)
+(*      ||T||                                                             *)
+(*      ||I||       Developers:                                           *)
+(*      ||T||         The HELM team.                                      *)
+(*      ||A||         http://helm.cs.unibo.it                             *)
+(*      \   /                                                             *)
+(*       \ /        This file is distributed under the terms of the       *)
+(*        v         GNU General Public License Version 2                  *)
+(*                                                                        *)
+(**************************************************************************)
+
+set "baseuri" "cic:/matita/test/".
+
+include "nat/nat.ma".
+include "list/list.ma".
+include "decidable_kit/list_aux.ma".
+(* tests from "Dependent Coersion" by Luo and Soloviev *)
+
+inductive vec (A : Type) : nat -> Type :=
+ | vnil : vec A O
+ | vcons : ∀a:A.∀n:nat.vec A n -> vec A (S n).
+axiom c : ∀A,B.∀l:list A.vec B (length A l).
+
+axiom veclen : ∀A,n.vec A n -> nat.
+
+coercion cic:/matita/test/c.con.
+
+alias num (instance 0) = "natural number".
+definition xxx := veclen nat ? [3; 4; 7].