diff options
| author | aarne <aarne@chalmers.se> | 2010-05-29 09:18:20 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2010-05-29 09:18:20 +0000 |
| commit | 510a4044675fdc6540e4a74aee656f25bdde9319 (patch) | |
| tree | dea66f32061bf23e7422576a32bc98cd730aaaca /examples/phrasebook/SentencesDut.gf | |
| parent | deacb0219575d8e8ae8e6f0fdfb379bfe05aceb0 (diff) | |
more accurate treatment of negative "have" clauses in Phrasebook
Diffstat (limited to 'examples/phrasebook/SentencesDut.gf')
| -rw-r--r-- | examples/phrasebook/SentencesDut.gf | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/phrasebook/SentencesDut.gf b/examples/phrasebook/SentencesDut.gf index 1b029378a..d97bf2e35 100644 --- a/examples/phrasebook/SentencesDut.gf +++ b/examples/phrasebook/SentencesDut.gf @@ -1,4 +1,13 @@ -concrete SentencesDut of Sentences = NumeralDut ** SentencesI with +concrete SentencesDut of Sentences = NumeralDut ** SentencesI - + [SHaveNo,SHaveNoMass] + with (Syntax = SyntaxDut), (Symbolic = SymbolicDut), - (Lexicon = LexiconDut) ; + (Lexicon = LexiconDut) ** open Prelude, SyntaxDut in { + + lin + SHaveNo p k = mkS (mkCl p.name have_V2 (mkNP no_Quant plNum k)) ; + SHaveNoMass p k = mkS (mkCl p.name have_V2 (mkNP no_Quant k)) ; + +} + |
