mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
17 lines
190 B
Plaintext
17 lines
190 B
Plaintext
|
|
abstract MicroAbs = {
|
|
|
|
cat S; V; VV; W;
|
|
|
|
fun
|
|
sv : V -> S;
|
|
vars : VV;
|
|
ww : W -> W;
|
|
svw : V -> W -> S;
|
|
|
|
supr : V -> V -> S;
|
|
supredup : S -> S -> S;
|
|
suplbl : V -> S;
|
|
reorder : V -> V -> V;
|
|
}
|