1
0
forked from GitHub/gf-core

structural words needed for Attempto ; negative items are overgenerating

This commit is contained in:
aarne
2008-11-03 16:52:54 +00:00
parent 44ad7596b6
commit 9ecc663d00
11 changed files with 101 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
concrete ExtraEng of ExtraEngAbs = CatEng **
open ResEng, Coordination, Prelude in {
open ResEng, Coordination, Prelude, MorphoEng in {
lin
GenNP np = {s = \\_,_ => np.s ! Gen ; sp = \\_,_,_ => np.s ! Gen} ;
@@ -66,5 +66,6 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
a = RNoAg
} ;
each_Det = mkDeterminer Sg "each" ;
}

View File

@@ -15,4 +15,5 @@ abstract ExtraEngAbs = Extra ** {
that_RP : RP ; -- "that" as a relational pronoun (IdRP is "which" / "who")
each_Det : Det ;
}

View File

@@ -122,5 +122,15 @@ concrete StructuralEng of Structural = CatEng **
youPl_Pron = mkPron "you" "you" "your" "yours" plural P2 human ;
youPol_Pron = mkPron "you" "you" "your" "yours" singular P2 human ;
not_Predet = {s = "not" ; lock_Predet = <>} ;
nothing_but_Predet = {s = "nothing but" ; lock_Predet = <>} ;
nobody_but_Predet = {s = "nobody but" ; lock_Predet = <>} ;
no_Quant = mkQuant "no" "no" ;
if_then_Conj = {s1 = "if" ; s2 = "then" ; n = singular ; lock_Conj = <>} ;
nobody_NP = regNP "nobody" singular ;
nothing_NP = regNP "nothing" singular ;
at_least_AdN = mkAdN "at least" ;
at_most_AdN = mkAdN "at most" ;
}