1
0
forked from GitHub/gf-core

remove some obsolete code from Interlingua

This commit is contained in:
krasimir
2009-06-15 09:59:21 +00:00
parent cacd7b998c
commit 9dd84ff5ed
2 changed files with 0 additions and 23 deletions

View File

@@ -50,7 +50,6 @@ concrete CatIna of Cat = CommonX ** open ResIna, Prelude in {
Card = {s : Str; n : Number } ;
Num = {s : Str; n : Number } ;
Quant = {s : Number => Case => Str} ;
Art = {s : Number => Case => Str} ;
-- Numeral

View File

@@ -53,28 +53,6 @@ concrete NounIna of Noun = CatIna ** open ResIna, Prelude in {
n = num.n
} ;
DetArtOrd art num ord = {
s = \\c=>(art.s ! num.n !c) ++ num.s ++ ord.s ;
n = num.n
} ;
DetArtCard art num = {
s = \\c=>(art.s ! num.n !c) ++ num.s ;
n = num.n
} ;
DetArtSg art cn = {
s = \\c => art.s ! Sg ! c ++ cn.s ! Sg ;
a = agrP3 Sg ;
isPronoun = False
}; -- iste pizza
DetArtPl art cn = {
s = \\c => art.s ! Pl ! c ++ cn.s ! Pl ;
a = agrP3 Pl ;
isPronoun = False
}; -- iste pizza
PossPron p = {s = \\_,c => casePrep [] c ++ p.possForm} ;
NumPl = {s = []; n = Pl } ;