]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/apps_2/models/model.ma
update in apps_2
[helm.git] / matita / matita / contribs / lambdadelta / apps_2 / models / model.ma
index 290c3e4c6b6abbf06df1221aa97d615d5de13fd3..8901e2d711ae5ecd0f972afd8f1950d402e432c6 100644 (file)
@@ -14,6 +14,7 @@
 
 include "ground_2/notation/relations/ringeq_3.ma".
 include "apps_2/notation/models/at_3.ma".
+include "apps_2/notation/models/oplus_4.ma".
 include "apps_2/notation/models/wbrackets_4.ma".
 include "static_2/syntax/term.ma".
 
@@ -26,6 +27,8 @@ record model: Type[1] ≝ {
    sq: relation2 dd dd;
 (* Note: sort evaluation *)
    sv: nat → dd;
+(* Note: conjunction *)
+   co: bool → dd → dd → dd;
 (* Note: application *)
    ap: dd → dd → dd;
 (* Note: term interperpretation *)
@@ -38,6 +41,9 @@ interpretation "structural equivalence (model)"
 interpretation "application (model)"
    'At M d1 d2 = (ap M d1 d2).
 
+interpretation "conjunction (model)"
+   'OPlus M p d1 d2 = (co M p d1 d2).
+
 interpretation "term interpretation (model)"
    'WBrackets M gv lv T = (ti M gv lv T).