partial implementation of Ancient Greek RGL

This commit is contained in:
leiss
2016-05-25 12:35:37 +00:00
parent 4509f842ad
commit 4d7ced4e4e
53 changed files with 45536 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
--# -path=.:alltenses:prelude
resource CombinatorsGrc = Combinators - [appCN, appCNc] with
(Cat = CatGrc),
(Structural = StructuralGrc),
(Noun = NounGrc),
(Constructors = ConstructorsGrc) **
{
oper
appCN : CN -> NP -> NP
= \cn,x -> mkNP the_Art (PossNP cn x) ;
appCNc : CN -> [NP] -> NP
= \cn,xs -> let np : NP = mkNP and_Conj xs
in mkNP the_Art (PossNP cn np) ;
}