You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a follow-up of the discussion started at #33.
Is there an easy way to output the strategy the program found to assert that two processes were not in capacity of simulating each other?
For instance, consider
p = a.((b.c) + (b.d))
q = a.b.(c+d)
Then, p cannot simulate q, because q can "trick" p by doing a, then b (and at this moment p needs to make a choice), and then q can pick c or d, while p is forced to follow the choice it made previously.
Is there an easy way to compute, and then picture / present this?
The text was updated successfully, but these errors were encountered:
This improvement is asking the program to output something explaning why a simulation the other way around does not work (a strategy to trick one process). Something along the lines of:
Both processes can do a then b, but then the first must do either c or d, while the other one can do both.
This is a follow-up of the discussion started at #33.
Is there an easy way to output the strategy the program found to assert that two processes were not in capacity of simulating each other?
For instance, consider
Then,
p
cannot simulateq
, becauseq
can "trick"p
by doinga
, thenb
(and at this momentp
needs to make a choice), and thenq
can pickc
ord
, whilep
is forced to follow the choice it made previously.Is there an easy way to compute, and then picture / present this?
The text was updated successfully, but these errors were encountered: