1
0
forked from GitHub/gf-core
Files
gf-core/examples/SUMO/RGLExt/Extension.gf
2011-08-23 15:05:04 +00:00

32 lines
612 B
Plaintext

-- other functions needed for parsing
abstract Extension = Cat ** {
cat
PolSentence;
StmtS ;
[CN]{2};
fun
VerbToNounV2 : V2 -> N2 ; -- discovering
VerbToNoun : V -> N ; -- walking is healthy
VerbToGerundA : V -> A ; -- singing bird
VerbToParticipeA : V -> A ; -- the required number
ConjCN : Conj -> [CN] -> CN ; -- set or class
mkPolSent : Cl -> PolSentence ;
getSent : PolSentence -> S ;
sentToNoun : PolSentence -> NP ;
UsePolSentence : Pol -> PolSentence -> StmtS ;
at_Prep : Prep ;
per_Prep : Prep ;
O1 : NP ;
O2 : NP ;
O3 : NP ;
O4 : NP ;
O5 : NP ;
};