summaryrefslogtreecommitdiff
path: root/deprecated/old-lib/resource/mathematical/PredicationI.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2009-12-09 09:47:16 +0000
committeraarne <aarne@chalmers.se>2009-12-09 09:47:16 +0000
commitc8ceed08efcc0bdc1fcbd89bce643d9f52f0991b (patch)
tree5f0b314341c129eba1bc67b8b887fb8a4486fad8 /deprecated/old-lib/resource/mathematical/PredicationI.gf
parent101df06f6c8380328d4266adadac3ab6d1bac0b3 (diff)
moving a few things to deprecated
Diffstat (limited to 'deprecated/old-lib/resource/mathematical/PredicationI.gf')
-rw-r--r--deprecated/old-lib/resource/mathematical/PredicationI.gf51
1 files changed, 51 insertions, 0 deletions
diff --git a/deprecated/old-lib/resource/mathematical/PredicationI.gf b/deprecated/old-lib/resource/mathematical/PredicationI.gf
new file mode 100644
index 000000000..67cbcd67e
--- /dev/null
+++ b/deprecated/old-lib/resource/mathematical/PredicationI.gf
@@ -0,0 +1,51 @@
+incomplete concrete PredicationI of Predication =
+ Cat ** open ParamX, Lang, Syntax in {
+
+flags optimize = all_subs ;
+
+lin
+ PosCl cl = mkS cl ;
+ NegCl cl = mkS PNeg cl ;
+
+--2 Predication patterns.
+
+ predV v x = PredVP x (UseV v) ; -- mkCl x v ;
+ predV2 v x y = mkCl x v y ;
+ predV3 v x y z = mkCl x v y z ;
+ predVColl v x y = mkCl (mkNP and_Conj x y) v ;
+ predA a x = mkCl x a ;
+ predA2 a x y = mkCl x a y ;
+ predAComp a x y = mkCl x a y ;
+ predAColl a x y = mkCl (mkNP and_Conj x y) a ;
+ predN n x = mkCl x (mkNP IndefArt (mkCN n)) ; --- Sg/Pl ?
+ predN2 n x y = mkCl x (mkNP IndefArt (ComplN2 n y)) ; --- Sg/Pl ?
+ predNColl n x y = mkCl (mkNP and_Conj x y) (mkNP IndefArt (mkCN n)) ;
+ predAdv a x = mkCl x a ;
+ predPrep p x y = mkCl x (mkAdv p y) ;
+
+--2 Imperatives and infinitives.
+
+ impV2 v x = mkPhr (mkImp v x) ;
+ infV2 v x = mkPhr (mkUtt (mkVP v x)) ;
+
+--2 Individual-valued function applications
+
+ appN2 n x = mkNP DefArt (mkCN n x) ;
+ appN3 n x y = mkNP DefArt (mkCN n x y) ;
+ appColl n x y = mkNP DefArt (mkCN n (mkNP and_Conj x y)) ;
+
+--2 Families of types
+
+-- These are expressed by relational nouns applied to arguments.
+
+ famN2 n x = ComplN2 n x ;
+ famN3 n x y = ComplN2 (ComplN3 n x) y ;
+ famColl n x y = ComplN2 n (ConjNP and_Conj (BaseNP x y)) ;
+
+--2 Type constructor
+
+-- This is similar to a family except that the argument is a type.
+
+ typN2 f n = ComplN2 f (DetArtPl DefArt n) ;
+
+}