fixed commutativity rule
[cdsspec-compiler.git] / correctness-model / writeup / figures / fence_sw_r_collapse.dot
1 digraph fence_sw_r_collpase {
2 margin=0
3 ranksep=.3;
4
5 N1 [label="A: fence(release)", shape=none];
6 N2 [label="X: v.store(1)", shape=none];
7 N3 [label="Y: v.store(2)", shape=none];
8 N5 [label="B: load(acquire)", shape=none];
9 N6 [style=invis, shape=point];
10
11 //N1 -> N5 [label="sw", color=blue, penwidth=3, constraint=false];
12 N2 -> N3 [label="hrs", color="#555555"];
13 N3 -> N5 [label="rf", color=red];
14 N1 -> N2 [label="sb", color=blue, weight=100];
15 N2 -> N6 [style=invis];
16 N6 -> N3 [style=invis];
17 {rank=same; N3 N5 N6}
18 }