]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/EXPORT/exportcsczfc/csc_zfc/csc_eqdep.v
Many files added. Symbolic links missing. examples and contrib missing due
[helm.git] / helm / EXPORT / exportcsczfc / csc_zfc / csc_eqdep.v
diff --git a/helm/EXPORT/exportcsczfc/csc_zfc/csc_eqdep.v b/helm/EXPORT/exportcsczfc/csc_zfc/csc_eqdep.v
new file mode 100644 (file)
index 0000000..8019c08
--- /dev/null
@@ -0,0 +1,9 @@
+Section Dependent_equality.
+
+Variable U:Type.
+Variable P:U->Type.
+
+Inductive eq_depT [p:U;x:(P p)] : (q:U)(P q)->Prop :=
+   eq_depT_intro : (eq_depT p x p x).
+
+End Dependent_equality.