-
Notifications
You must be signed in to change notification settings - Fork 2
exec
drdr xp edited this page Feb 21, 2020
·
3 revisions
-
Find out the set of smallest instances of every leader:
S
. Easy to seeS
includes all instances those should execute first. -
If there are any
a → b
relations(a.final_deps ⊃ b.final_deps
) inS
, replaceS
with:S = {x | x ∈ S and (∃y: y → x)}
Repeat this step until there is no
a → b
inS
. -
Execute all instances in
S
in instance-id-order.