summaryrefslogtreecommitdiff
path: root/grammars/resource/abstract
diff options
context:
space:
mode:
authoraarne <unknown>2003-09-25 14:26:29 +0000
committeraarne <unknown>2003-09-25 14:26:29 +0000
commit8ed7749eb674e3afe4485cfb3d4d50485a2cf097 (patch)
tree3497a1b70f2d1dd8a07f551c4fd293fa563ac090 /grammars/resource/abstract
parenta6a7abe6f69ae507d8eb110d1fb3b6453680a475 (diff)
New things in english and german resources.
Diffstat (limited to 'grammars/resource/abstract')
-rw-r--r--grammars/resource/abstract/ResAbs.gf5
-rw-r--r--grammars/resource/abstract/TestAbs.gf5
2 files changed, 8 insertions, 2 deletions
diff --git a/grammars/resource/abstract/ResAbs.gf b/grammars/resource/abstract/ResAbs.gf
index aba5ca216..f31cf59a9 100644
--- a/grammars/resource/abstract/ResAbs.gf
+++ b/grammars/resource/abstract/ResAbs.gf
@@ -58,7 +58,8 @@ cat
V ; -- one-place verb, e.g. "walk"
TV ; -- two-place verb, e.g. "love", "wait (for)", "switch on"
- VS ; -- sentence-compl. verb e.g. "say", "prove"
+ V3 ; -- three-place verb, e.g. "give", "prefer (stg) (to stg)"
+ VS ; -- sentence-compl. verb, e.g. "say", "prove"
VP ; -- verb phrase, e.g. "switch the light on"
--3 Adverbials
@@ -144,6 +145,8 @@ fun
PosPassV, NegPassV : V -> VP ; -- "is seen", "is not seen"
PosNP, NegNP : NP -> VP ; -- "is John", "is not John"
PosVS, NegVS : VS -> S -> VP ; -- "says that I run", "doesn't say..."
+ PosV3, NegV3 : V3 -> NP -> NP -> VP ; -- "prefers wine to beer"
+ VTrans : TV -> V ; -- "loves"
--3 Adverbials
--
diff --git a/grammars/resource/abstract/TestAbs.gf b/grammars/resource/abstract/TestAbs.gf
index c07ac4968..9605fd561 100644
--- a/grammars/resource/abstract/TestAbs.gf
+++ b/grammars/resource/abstract/TestAbs.gf
@@ -3,10 +3,13 @@ abstract TestAbs = ResAbs ** {
-- a random sample of lexicon to test resource grammar with
fun
- Big, Small, Old, Young : AdjDeg ;
+ Big, Small, Old, Young : AdjDeg ;
+ American, Finnish : Adj1 ;
+ Married : Adj2 ;
Man, Woman, Car, House, Light : N ;
Walk, Run : V ;
Send, Wait, Love, SwitchOn, SwitchOff : TV ;
+ Give, Prefer : V3 ;
Say, Prove : VS ;
Mother, Uncle : Fun ;
Connection : Fun2 ;