Correct fix
This commit is contained in:
parent
7d2b1e5865
commit
0b9dc1fc01
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ let should_interfere (x, y) =
|
|||
let x_is_mem = World.is_memory x in
|
||||
let y_is_mem = World.is_memory y in
|
||||
let are_copies = have_same_value_from_name x y in
|
||||
let disjoint_clocks = disjoint_clock (x_is_mem && y_is_mem) vdx.v_clock vdy.v_clock in
|
||||
let disjoint_clocks = disjoint_clock (x_is_mem || y_is_mem) vdx.v_clock vdy.v_clock in
|
||||
not (disjoint_clocks or are_copies)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue