diff options
| author | aarne <aarne@cs.chalmers.se> | 2006-10-10 16:43:41 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2006-10-10 16:43:41 +0000 |
| commit | 65fd6edb6c57d4aed46f91d727ccf3b86b9bc982 (patch) | |
| tree | c9d546084306dcbfd201b55737284ed415fccf82 /examples/disamb/Conversation.gf | |
| parent | 604ec0a8c9c0c2da963f3abb9c00ceadd399d3aa (diff) | |
started disambiguation example
Diffstat (limited to 'examples/disamb/Conversation.gf')
| -rw-r--r-- | examples/disamb/Conversation.gf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/disamb/Conversation.gf b/examples/disamb/Conversation.gf new file mode 100644 index 000000000..fbbfccc0c --- /dev/null +++ b/examples/disamb/Conversation.gf @@ -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 ; + +} |
