Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

532 users

0 votes
Hi,

I got small ambiquity regarding infite loop in local model checking.

When we have and infinite loop in local model checking graph does it mean lmc is not satisfied? Can you tell me the case of both universal and existential predecessor?

And when the infinite loop path and states (the state to where infinte loop returns back) is satisfied and when it not satisfied.

Please help me with a small example.

Regards,

Pavithra
in # Study-Organisation (Master) by (850 points)

1 Answer

+1 vote

Well, the loops in the proof trees in local model checking are always worth a discussion, even though everything is found on the slides, so that I just cite the related slides below and comment on them. Have a look at the example below where we just have a transition system with a single state where "a" holds, but "b" is false (taken from slide 107 of the mu-calculus chapter).

The proof tree for the formula nu x.(b | a&<>x) is shown above and as can be seen, it has a loop. Note that the formula is equivalent to the CTL formula E[a WU b] and that the least fixpoint mu x.(b | a&<>x) is equivalent to the CTL formula E[a SU b] (note that the Kripke structure has no deadend states which simplifies these equivalences).

Using global model checking (or just reasoning with the semantics of the formulas), we can see that E[a WU b] holds on the state while E[a SU b] does not hold there: For the weak until, it is allowed to always have "a" true and never reach a state where "b" holds, but the strong until demands that a state where "b" holds is finally reached and until that time, only states where "a" holds must be visited.

However, the equivalent mu-calculus formulas nu x.(b | a&<>x) and mu x.(b | a&<>x) generate similar proof trees (but the result for the least fixpoint is different!). Hence, we must read that proof tree differently for least and greatest fixpoint formulas. 

As explained on slide 108, states closing a loop satisfy greatest but not least fixpoint formulas. Slide 109 explains why that is so, and to keep the story short: for least fixpoints, we try to choose as few states as possible to satisfy them, while for greatest fixpoints, we try to choose as many states as possible to satisfy them. In case of loops, we have the freedom to choose, since those states satisfy the fixpoint equation.

by (166k points)
Imprint | Privacy Policy
...