I'm having some trouble coming up with a valid spec where that
would matter. You're saying that OP1, OP2, and
OP1 /\ OP2 are all valid actions, but also that the
conjunction includes transitions that aren't included in either
individual action. As far as I know, the semantics of TLA+, in
particular that the next-state relation must completely specify
all variables, make that impossible. But I'd be happy to be proven
wrong on this!
With that in mind, I suspect that TLC doesn't check those
transitions. You'd have to ask Markus to know for sure, though.
On 9/19/19 10:01 PM, Shiyao MA wrote:
Hi Hillel,
I was thinking about how the TLC checker searches for all
the possible states *regardless* what exactly an OP refers to.
So for example,
Given a spec:
Next == OP1 \/ OP2 \/ OP3
Spec == Init /\ [][Next]_vars
and consider the case where the checker is at state S. The
checker now proceeds to search all the *direct* child states
(in a BFS style).
My question and predication is, for the above Next
operation which contains a set of operations joined with *\/*,
a state transition will never be conducted by applying both
OP1 and OP2 (or any two of the three) on the current state S.
The checker enumerates the possible direct child states by
applying OP1, OP2, and OP3 separately.
Best,
On Friday, 20 September 2019 00:29:07 UTC+8, Hillel Wayne
wrote:
Hi Shiyao
related code:
VoteFor(a, b, v) ==
/\
maxBal[a] =< b
/\ \A vt \in votes[a] : vt[1] /= b
/\ \A c \in Acceptor \ {a} :
\A vt \in votes[c] : (vt[1] = b) => (vt[2] = v)
/\ \E Q \in Quorum : ShowsSafeAt(Q, b, v)
/\ votes' = [votes EXCEPT ![a] =
votes[a] \cup {<<b, v>>}]
/\ maxBal' = [maxBal EXCEPT ![a] = b]
If VoteFor specifies maxBal', and
IncreaseMaxBal specifies maxBal',
then they can only be true that the same time if there
is some value for maxBal' that
satisfies both actions.
Given TLC isn't giving you an error, I'm guessing you
also have UNCHANGED votes in IncreaseMaxBal?
Then they definitely both can't be true at the same
time, as VoteFor would specify that votes
changes and IncreaseMaxBal does not.
H
--
You received this message because you are subscribed to
the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails
from it, send an email to tla...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/a970adcf-3791-4835-b6c8-ac024b5c9cef%40googlegroups.com.
--
You received this message because you are subscribed to the Google
Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/18c0b8b6-1fe6-40b8-8560-d808d6bc7dc6%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/4e8eaa89-0e5c-8d82-2982-105426e39f84%40gmail.com.
|