X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FRELATIONAL%2FNPlusList%2Fdefs.ma;fp=helm%2Fsoftware%2Fmatita%2Fcontribs%2FRELATIONAL%2FNPlusList%2Fdefs.ma;h=0000000000000000000000000000000000000000;hb=da0775e27b362e91ea1453a800bc403781cc2ca3;hp=cac07f91a523315ec6d0fe53976ab3abe00188a6;hpb=d9824956d9132109ed5f23380a0a1f9c5181d18a;p=helm.git diff --git a/helm/software/matita/contribs/RELATIONAL/NPlusList/defs.ma b/helm/software/matita/contribs/RELATIONAL/NPlusList/defs.ma deleted file mode 100644 index cac07f91a..000000000 --- a/helm/software/matita/contribs/RELATIONAL/NPlusList/defs.ma +++ /dev/null @@ -1,38 +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 "datatypes/List.ma". -include "NPlus/defs.ma". - - -inductive NPlusList: (List Nat) \to Nat \to Prop \def - | nplus_nil: NPlusList (nil ?) zero - | nplus_cons: \forall l,p,q,r. - NPlusList l p \to NPlus p q r \to NPlusList (cons ? l q) r -. - -definition NPlusListEq: (List Nat) \to (List Nat) \to Prop \def - \lambda ns1,ns2. \exists n. NPlusList ns1 n \land NPlusList ns2 n. - -(* -(*CSC: the URI must disappear: there is a bug now *) -interpretation "ternary natural plus predicate" 'rel_plus3 x y z = - (cic:/matita/RELATIONAL/NPlus/defs/NPlus3.con w x y z). - -notation "hvbox(a break + b break + c == d)" - non associative with precedence 95 -for @{ 'rel_plus3 $a $b $c $d}. -*)