1
0
forked from GitHub/gf-rgl

query language extended and generalized

This commit is contained in:
aarne
2010-06-19 10:29:06 +00:00
parent e5149aa8cf
commit 55a8bef429
5 changed files with 28 additions and 2 deletions

View File

@@ -63,5 +63,11 @@ abstract Extra = Cat ** {
UseFoc : Temp -> Pol -> Foc -> Utt ;
cat
[CN] {2} ;
fun
ConjCN : Conj -> [CN] -> CN ; -- (every) man and woman
PartVP : VP -> AP ; -- looking at Mary
}

View File

@@ -65,7 +65,8 @@ abstract Verb = Cat ** {
-- Adjectival phrases, noun phrases, and adverbs can be used.
CompAP : AP -> Comp ; -- (be) small
CompNP : NP -> Comp ; -- (be) a man
CompNP : NP -> Comp ; -- (be) the man
CompAdv : Adv -> Comp ; -- (be) here
CompCN : CN -> Comp ; -- (be) a man/men
}