Skip to content
Snippets Groups Projects
Commit 0ccc4b65 authored by Giammarco, Kristin M's avatar Giammarco, Kristin M
Browse files

Upload New File

parent 97f38c38
No related branches found
No related tags found
No related merge requests found
/* Unsynchronized coordination for iteration cycles adding
precedence relation whether they appear in the same cycle
or not (MP Manual section 4.8)
SCHEMA S1
ROOT R1: (+ (A | B) C +);
ROOT R2: (+ (D | E) F +); */
COORDINATE $a: A FROM R1, $d: D FROM R2
DO
ADD $a PRECEDES $d;
OD;
COORDINATE $b: B FROM R1, $e: E FROM R2
DO
ADD $b PRECEDES $e;
OD;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment