Maltese RG: first proper release

Of course some bugs remain and more testing is needed,
but all functions are complete and Maltese now builds as part
of the normal GF install.
This commit is contained in:
john
2013-06-10 21:37:10 +00:00
parent 7ea9ed83cb
commit 84beb227da
18 changed files with 925 additions and 716 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ concrete ConjunctionMlt of Conjunction =
-- Conj -> [NP] -> NP -- "either her or me"
ConjNP conj ss = {
s = \\npcase => conj.s1 ++ ss.np1.s ! npcase ++ conj.s2 ++ ss.np2.s ! npcase ;
a = ss.np2.a ;
a = { p = ss.np2.a.p ; g = ss.np2.a.g ; n = Pl } ; -- make plural
isPron = andB ss.np1.isPron ss.np2.isPron ;
isDefn = andB ss.np1.isDefn ss.np2.isDefn ;
} ;