1
0
forked from GitHub/gf-core

started disambiguation example

This commit is contained in:
aarne
2006-10-10 16:43:41 +00:00
parent 5a3620df9a
commit c6037ba818
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
abstract Conversation = {
cat
Q ; NP ; A ;
Gender ; Number ; Politeness ;
fun
PredA : NP -> A -> Q ;
GMasc, GFem : Gender ;
NSg, NPl : Number ;
PFamiliar, PPolite : Politeness ;
You : Number -> Politeness -> Gender -> NP ;
Ready : A ;
}