starting to add tense to English resource

This commit is contained in:
aarne
2005-01-17 16:32:15 +00:00
parent a19856618b
commit 330e73f9aa
15 changed files with 1814 additions and 15 deletions

View File

@@ -79,13 +79,13 @@ cat
--3 Adjectives and adjectival phrases
--
A1 ; -- one-place adjective, e.g. "even"
A ; -- one-place adjective, e.g. "even"
A2 ; -- two-place adjective, e.g. "divisible (by)"
ADeg ; -- degree adjective, e.g. "big/bigger/biggest"
AP ; -- adjective phrase, e.g. "divisible by two", "bigger than John"
-- The difference between $A1$ and $ADeg$ is that the former has no
-- The difference between $A$ and $ADeg$ is that the former has no
-- comparison forms.
--!

View File

@@ -33,7 +33,7 @@ fun
AppN3 : N3 -> NP -> N2 ; -- "flight from Paris"
UseN2 : N2 -> CN ; -- "successor"
ModAdj : AP -> CN -> CN ; -- "red car"
ModAP : AP -> CN -> CN ; -- "red car"
CNthatS : CN -> S -> CN ; -- "idea that the Earth is flat"
ModGenOne : NP -> CN -> NP ; -- "John's car"
@@ -46,14 +46,14 @@ fun
--3 Adjectives and adjectival phrases
--
UseA1 : A1 -> AP ; -- "red"
UseA : A -> AP ; -- "red"
ComplA2 : A2 -> NP -> AP ; -- "divisible by two"
PositADeg : ADeg -> AP ; -- "old"
ComparADeg : ADeg -> NP -> AP ; -- "older than John"
SuperlNP : ADeg -> CN -> NP ; -- "the oldest man"
---- AdjPart : V -> A1 ; -- "forgotten"
---- AdjPart : V -> A ; -- "forgotten"
--!
--3 Verbs and verb phrases

View File

@@ -4,7 +4,7 @@ abstract TestResource = Rules, Structural ** {
fun
Big, Happy, Small, Old, Young : ADeg ;
American, Finnish : A1 ;
American, Finnish : A ;
Married : A2 ;
Man, Woman, Car, House, Light, Bar, Bottle, Wine, Level : N ;
Walk, Run : V ;