diff options
| author | aarne <aarne@cs.chalmers.se> | 2008-10-03 20:42:09 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2008-10-03 20:42:09 +0000 |
| commit | 24207d40e9cb56173de22d9a424975f0da0bc416 (patch) | |
| tree | 2c221dc4e6f9f7a4d665fe118e0cda12d3ea7290 /next-lib/src/abstract/Adjective.gf | |
| parent | 27de3c0e7b13a4674cf5829ccbb00b118e916ae8 (diff) | |
extended AP with Ord and compar in 1.5
Diffstat (limited to 'next-lib/src/abstract/Adjective.gf')
| -rw-r--r-- | next-lib/src/abstract/Adjective.gf | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/next-lib/src/abstract/Adjective.gf b/next-lib/src/abstract/Adjective.gf index 4255b7eee..b934dfa82 100644 --- a/next-lib/src/abstract/Adjective.gf +++ b/next-lib/src/abstract/Adjective.gf @@ -7,13 +7,17 @@ abstract Adjective = Cat ** { -- The principal ways of forming an adjectival phrase are -- positive, comparative, relational, reflexive-relational, and -- elliptic-relational. --- (The superlative use is covered in [Noun Noun.html].$SuperlA$.) PositA : A -> AP ; -- warm ComparA : A -> NP -> AP ; -- warmer than I ComplA2 : A2 -> NP -> AP ; -- married to her ReflA2 : A2 -> AP ; -- married to itself - UseA2 : A2 -> A ; -- married + UseA2 : A2 -> AP ; -- married + UseComparA : A -> AP ; -- warmer + +-- The superlative use is covered in $Ord$. + + AdjOrd : Ord -> AP ; -- warmest -- Sentence and question complements defined for all adjectival -- phrases, although the semantics is only clear for some adjectives. |
