From d960d0d361003c4d524105037ecfd70dfdfcaf17 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 29 Oct 2019 14:46:40 +0100 Subject: [PATCH] tried to implement CountNP --- src/latin/NounLat.gf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index 7c0df412..907b12da 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -179,4 +179,9 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { { s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! c ; } ; -- massable = cn.massable } ; + + -- CountNP : Det -> NP -> NP ; -- three of them, some of the boys + CountNP det np = np ** { + det = det + }; }