resources and new instantiation syntax

This commit is contained in:
aarne
2005-02-04 19:17:57 +00:00
parent 0ace2a1a4b
commit 0796338380
48 changed files with 1699 additions and 1006 deletions

View File

@@ -26,7 +26,7 @@ abstract Basic = Categories ** {
bread_N : N ;
break_V2 : V2 ;
broad_ADeg : ADeg ;
brother_N : N ;
brother_N2 : N2 ;
brown_ADeg : ADeg ;
butter_N : N ;
buy_V2 : V2 ;
@@ -61,7 +61,7 @@ abstract Basic = Categories ** {
eat_V2 : V2 ;
enemy_N : N ;
factory_N : N ;
father_N : N ;
father_N2 : N2 ;
fear_VS : VS ;
find_V2 : V2 ;
fish_N : N ;
@@ -110,7 +110,7 @@ abstract Basic = Categories ** {
meat_N : N ;
milk_N : N ;
moon_N : N ;
mother_N : N ;
mother_N2 : N2 ;
mountain_N : N ;
music_N : N ;
narrow_ADeg : ADeg ;
@@ -181,7 +181,7 @@ abstract Basic = Categories ** {
train_N : N ;
travel_V : V ;
tree_N : N ;
trousers_N : N ;
---- trousers_N : N ;
ugly_ADeg : ADeg ;
understand_V2 : V2 ;
university_N : N ;
@@ -202,4 +202,15 @@ abstract Basic = Categories ** {
write_V2 : V2 ;
yellow_ADeg : ADeg ;
young_ADeg : ADeg ;
do_V2 : V2 ;
now_Adv : Adv ;
already_Adv : Adv ;
song_N : N ;
add_V3 : V3 ;
number_N : N ;
put_V2 : V2 ;
stop_V : V ;
jump_V : V ;
}

View File

@@ -56,6 +56,11 @@ fun
QPredObjA2V : IP -> A2V -> NP ->VPI ->QCl ; -- "who is easy for us to convince"
IPredV : Ant -> V -> VPI ; -- "walk"
IPredV2 : Ant -> V2 -> NP -> VPI ; -- "see Mary"
IPredAP : Ant -> AP -> VPI ; -- "be old"
{-
-- These rules *use* verb phrases.

View File

@@ -136,6 +136,8 @@ fun
IntSlash : IP -> Slash -> QCl ; -- "whom does John see"
QuestAdv : IAdv -> Cl -> QCl ; -- "why do you walk"
PosImpVP, NegImpVP : VPI -> Imp ; -- "(don't) be a man"
----rename these ??
IndicPhrase : S -> Phr ; -- "I walk."
QuestPhrase : QS -> Phr ; -- "Do I walk?"
@@ -213,7 +215,6 @@ fun
--- The type signatures of these ones should be changed from VP to VPI.
ProgVG : VP -> VP ; -- he is eating
PosImperVP, NegImperVP : VP -> Imp ; -- "(don't) be a man"
OneVP : VP -> Cl ; -- "one walks"
} ;