====== Derivation Modes ======
RGG can be used with different derivation modes, that influence the effects the rules have on the graph.
The derivation modes them self can be specified with additional flags.
====== Usage ======
The derivation mode is defined using the setDerivationMode() function with the value of the modes and masks.
e.g.
public void run(){
setDerivationMode(SEQUENTIAL_NON_DETERMINISTIC_MODE);
[
A ==> B;
A ==> C;
]
}
The default value used in RGG is PARALLEL_MODE with the addition of the EXCLUDE_DELETED_FLAG.
setDerivationMode(PARALLEL_MODE|EXCLUDE_DELETED_FLAG);
====== Modes and Flags ======
{{namespace>01_user_documentation:06_graph:05_derivation:04_modes}}