summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesI.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2010-04-04 20:44:37 +0000
committeraarne <aarne@chalmers.se>2010-04-04 20:44:37 +0000
commit09171eecb4d15d27f37a0619230915e05e50dde0 (patch)
tree63904263e5f713e67bca58abba52d3864ffd42e1 /examples/phrasebook/SentencesI.gf
parentcdd9efa5597c691c4e7a819d18331ea2e034cb70 (diff)
reduced overgeneration by only allowing one AdA in Phrasebook
Diffstat (limited to 'examples/phrasebook/SentencesI.gf')
-rw-r--r--examples/phrasebook/SentencesI.gf7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/phrasebook/SentencesI.gf b/examples/phrasebook/SentencesI.gf
index e7b7e0832..f830e6366 100644
--- a/examples/phrasebook/SentencesI.gf
+++ b/examples/phrasebook/SentencesI.gf
@@ -11,6 +11,7 @@ incomplete concrete SentencesI of Sentences = Numeral **
Item = NP ;
Kind = CN ;
Quality = AP ;
+ Property = A ;
Object = NP ;
Place = NP ;
PlaceKind = CN ;
@@ -49,6 +50,7 @@ incomplete concrete SentencesI of Sentences = Numeral **
ObjItem i = i ;
ObjNumber n k = mkNP <lin Numeral n : Numeral> k ;
+ ObjIndef k = mkNP a_Quant k ;
This kind = mkNP this_Quant kind ;
That kind = mkNP that_Quant kind ;
@@ -58,8 +60,9 @@ incomplete concrete SentencesI of Sentences = Numeral **
The kind = mkNP the_Quant kind ;
Thes kind = mkNP the_Quant plNum kind ;
SuchKind quality kind = mkCN quality kind ;
- Very quality = mkAP very_AdA quality ;
- Too quality = mkAP too_AdA quality ;
+ Very property = mkAP very_AdA (mkAP property) ;
+ Too property = mkAP too_AdA (mkAP property) ;
+ PropQuality property = mkAP property ;
ThePlace kind = mkNP the_Quant kind ;
I = mkNP i_Pron ;