Hebrew mini resource by Dana Dannells

This commit is contained in:
aarne
2011-08-14 16:49:19 +00:00
parent 065178a64d
commit 69d0fecb7e
6 changed files with 549 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
abstract Grammar = {
cat
Cl ; NP ; VP ; AP ; CN ; Det ; N ; A ; V ; V2 ;
fun
PredVP : NP -> VP -> Cl ;
ComplV2 : V2 -> NP -> VP ;
DetCN : Det -> CN -> NP ;
ModCN : CN -> AP -> CN ;
UseV : V -> VP ;
UseN : N -> CN ;
UseA : A -> AP ;
a_Det, the_Det : Det ;
this_Det, these_Det : Det ;
i_NP, she_NP, we_NP : NP ;
}