mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
20 lines
228 B
Plaintext
20 lines
228 B
Plaintext
|
|
abstract FragmentAbstract = {
|
|
|
|
flags startcat=NP;
|
|
|
|
cat S; NP; VP; D; N; V;
|
|
|
|
fun
|
|
|
|
s_p : NP -> VP -> S;
|
|
np_d : D -> N -> NP;
|
|
np_p : N -> NP;
|
|
vp_t : V -> NP -> VP;
|
|
d_a, d_m : D;
|
|
n_c, n_f : N;
|
|
v_e, v_h : V;
|
|
|
|
}
|
|
|