-
Notifications
You must be signed in to change notification settings - Fork 15
Permute
grammarware edited this page Jan 19, 2013
·
5 revisions
The argument production defines the intended result of the transformation — a production rule that has the same components in the sequential composition, but in a different order, when compared to the corresponding production in the input grammar with the same defined nonterminal and the same label, if any.
permute:
production
Given the input:
a:
b d* c
After using this transformation:
permute(
a:
b c d*
);
Will look like this:
a:
b c d*
shared/prolog/xbgf1.pro
shared/prolog/xbgf2.pro
shared/rascal/src/transform/library/Sequential.rsc
shared/xsd/xbgf.xsd
- Permute is a part of XBGF