Added transfer example: constructing reflexives.

This commit is contained in:
bringert
2006-03-13 10:53:44 +00:00
parent 1814761d36
commit 6779c45f5d
4 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
abstract Abstract = {
cat
S ; NP ; V2 ; Conj ;
fun
PredV2 : V2 -> NP -> NP -> S ;
ReflV2 : V2 -> NP -> S ;
ConjNP : Conj -> NP -> NP -> NP ;
And, Or : Conj ;
John, Mary, Bill : NP ;
See, Whip : V2 ;
}