mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-07 10:12:51 -06:00
experiment with dep resource
This commit is contained in:
18
grammars/dep/App.gf
Normal file
18
grammars/dep/App.gf
Normal file
@@ -0,0 +1,18 @@
|
||||
abstract App = {
|
||||
cat
|
||||
S ; Q ;
|
||||
NP ; QP ;
|
||||
V ; V2 ;
|
||||
|
||||
fun
|
||||
SPredV : NP -> V -> S ;
|
||||
SPredV2 : NP -> V -> NP -> S ;
|
||||
QPredV : QP -> V -> Q ;
|
||||
QPredV2 : QP -> V -> NP -> Q ;
|
||||
|
||||
aJohn : NP ;
|
||||
aWho : QP ;
|
||||
|
||||
aWalk : V ;
|
||||
aLove : V2 ;
|
||||
}
|
||||
Reference in New Issue
Block a user