X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FRELATIONAL%2Fdatatypes%2FList.ma;fp=helm%2Fsoftware%2Fmatita%2Fcontribs%2FRELATIONAL%2Fdatatypes%2FList.ma;h=0000000000000000000000000000000000000000;hb=da0775e27b362e91ea1453a800bc403781cc2ca3;hp=fc989d3767d0ecfdf986cadf705b7f2fcc205de1;hpb=d9824956d9132109ed5f23380a0a1f9c5181d18a;p=helm.git diff --git a/helm/software/matita/contribs/RELATIONAL/datatypes/List.ma b/helm/software/matita/contribs/RELATIONAL/datatypes/List.ma deleted file mode 100644 index fc989d376..000000000 --- a/helm/software/matita/contribs/RELATIONAL/datatypes/List.ma +++ /dev/null @@ -1,39 +0,0 @@ -(**************************************************************************) -(* ___ *) -(* ||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 *) -(* *) -(**************************************************************************) - - - -include "preamble.ma". - -inductive List (A: Type): Type \def - | nil: List A - | cons: List A \to A \to List A -. - -(*CSC: the URI must disappear: there is a bug now *) -interpretation "nil" 'nil = - (cic:/matita/RELATIONAL/datatypes/List/List.ind#xpointer(1/1) ?). - -notation "hvbox([])" - non associative with precedence 95 -for @{ 'nil }. - -(*CSC: the URI must disappear: there is a bug now *) -interpretation "right cons" 'rcons x y = - (cic:/matita/RELATIONAL/datatypes/List/List.ind#xpointer(1/2) ? x y). - -notation "hvbox([a break @ b])" - non associative with precedence 95 -for @{ 'rcons $a $b}. -