diff options
| author | aarne <aarne@cs.chalmers.se> | 2008-11-15 11:19:10 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2008-11-15 11:19:10 +0000 |
| commit | 3ff57f6184963acde7f3cc2dcf0638c0e819929a (patch) | |
| tree | e5c975ae99dd3e45f9a4e700658b39d9bf90e68f /next-lib/src/abstract | |
| parent | 6b4f9715e6acb87e05b8229bafd1f41d906e6409 (diff) | |
comparative adverbs generalized to cover more of Attempto
Diffstat (limited to 'next-lib/src/abstract')
| -rw-r--r-- | next-lib/src/abstract/Adjective.gf | 1 | ||||
| -rw-r--r-- | next-lib/src/abstract/Sentence.gf | 5 | ||||
| -rw-r--r-- | next-lib/src/abstract/Structural.gf | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/next-lib/src/abstract/Adjective.gf b/next-lib/src/abstract/Adjective.gf index b934dfa82..d8fe2d9ac 100644 --- a/next-lib/src/abstract/Adjective.gf +++ b/next-lib/src/abstract/Adjective.gf @@ -14,6 +14,7 @@ abstract Adjective = Cat ** { ReflA2 : A2 -> AP ; -- married to itself UseA2 : A2 -> AP ; -- married UseComparA : A -> AP ; -- warmer + CAdvAP : CAdv -> AP -> NP -> AP ; -- as cool as John -- The superlative use is covered in $Ord$. diff --git a/next-lib/src/abstract/Sentence.gf b/next-lib/src/abstract/Sentence.gf index a7661ae7a..903567ea1 100644 --- a/next-lib/src/abstract/Sentence.gf +++ b/next-lib/src/abstract/Sentence.gf @@ -70,6 +70,11 @@ abstract Sentence = Cat ** { RelS : S -> RS -> S ; -- she sleeps, which is good +---- A sentence can also be post-modified by a subjunct sentence. + +---- ModSubjS : S -> Subj -> S -> S ; -- she sleeps, because she is old +---- cf. Adverb.SubjS + } --. diff --git a/next-lib/src/abstract/Structural.gf b/next-lib/src/abstract/Structural.gf index 1c952a4b7..57cb6453e 100644 --- a/next-lib/src/abstract/Structural.gf +++ b/next-lib/src/abstract/Structural.gf @@ -117,4 +117,6 @@ abstract Structural = Cat ** { nothing_NP : NP ; except_Prep : Prep ; + as_CAdv : CAdv ; + } |
