summaryrefslogtreecommitdiff
path: root/next-lib/src/finnish
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/src/finnish')
-rw-r--r--next-lib/src/finnish/ConjunctionFin.gf7
1 files changed, 7 insertions, 0 deletions
diff --git a/next-lib/src/finnish/ConjunctionFin.gf b/next-lib/src/finnish/ConjunctionFin.gf
index 8e7f7a3c8..a11d9c596 100644
--- a/next-lib/src/finnish/ConjunctionFin.gf
+++ b/next-lib/src/finnish/ConjunctionFin.gf
@@ -16,6 +16,10 @@ concrete ConjunctionFin of Conjunction =
ConjAP conj ss = conjunctDistrTable2 Bool NForm conj ss ;
+ ConjRS conj ss = conjunctDistrTable Agr conj ss ** {
+ c = ss.c
+ } ;
+
-- These fun's are generated from the list cat's.
BaseS = twoSS ;
@@ -26,11 +30,14 @@ concrete ConjunctionFin of Conjunction =
ConsNP xs x = consrTable NPForm comma xs x ** {a = conjAgr xs.a x.a} ;
BaseAP x y = twoTable2 Bool NForm x y ;
ConsAP xs x = consrTable2 Bool NForm comma xs x ;
+ BaseRS x y = twoTable Agr x y ** {c = y.c} ;
+ ConsRS xs x = consrTable Agr comma xs x ** {c = xs.c} ;
lincat
[S] = {s1,s2 : Str} ;
[Adv] = {s1,s2 : Str} ;
[NP] = {s1,s2 : NPForm => Str ; a : Agr} ;
[AP] = {s1,s2 : Bool => NForm => Str} ;
+ [RS] = {s1,s2 : Agr => Str ; c : NPForm} ;
}