Created
May 31, 2017 23:29
-
-
Save grogers0/39b3b39d079d3fa998045e4123a3b43a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FiniteSeq(S) == UNION {[1..n -> S] : n \in 1..Cardinality(S)} | |
SeqAsSet(S) == {S[i] : i \in DOMAIN S} | |
HistoryIsLinearizable == \E order \in {<<>>} \union FiniteSeq(Timestamps) : | |
/\ \A H \in SeqAsSet(history) : H.type = "response" => H.ts \in SeqAsSet(order) | |
/\ \A H1_i, H2_i \in DOMAIN history : | |
(history[H1_i].type = "response" /\ history[H2_i].type = "invoke" /\ H1_i < H2_i) => | |
( | |
history[H2_i].ts \in SeqAsSet(order) => | |
\E i1, i2 \in DOMAIN order : | |
/\ order[i1] = history[H1_i].ts | |
/\ order[i2] = history[H2_i].ts | |
/\ i1 < i2 | |
) | |
/\ \A i1, i2 \in DOMAIN order : | |
i2 = i1 + 1 => ops[order[i1]].newVal = ops[order[i2]].oldVal | |
/\ order /= <<>> => InitVal = ops[order[1]].oldVal | |
Inv == /\ TypeOK | |
/\ HistoryIsLinearizable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment