CTL* is a superset of computational tree logic (CTL) and linear temporal logic (LTL). It freely combines path quantifiers and temporal operators. Like CTL, CTL* is a branching time logic. The formal semantics of CTL* formulae are defined with respect to a given Kripke structure.
Contents
History
LTL has been proposed for the verification of computer programs first by Amir Pnueli in 1977. Four years later in 1981 E. M. Clarke and E. A. Emerson invented CTL and CTL model checking. CTL* was defined by E. A. Emerson and Joseph Y. Halpern in 1986.
Interestingly, CTL and LTL have been developed independently before CTL*. Both sublogics have become standards in the model checking community, while CTL* is of practical importance because it provides an expressive testbed for representing and comparing these and other logics. This is surprising because the computational complexity of model checking in CTL* is not worse than that of LTL: they both lie in PSPACE.
Syntax
The language of well-formed CTL* formulae is generated by the following unambiguous (wrt bracketing) context-free grammar:
where
The operators basically are the same as in CTL. However, in CTL, every temporal operator (
Examples of formulae
Remark: When taking LTL as subset of CTL*, any LTL formula is implicitly prefixed with the universal path quantifier
Semantics
The semantics of CTL* are defined with respect to some Kripke structure. As the names imply, state formulae are interpreted with respect to the states of this structure, while path formulae are interpreted over paths on it.
State formulae
If a state
-
( ( M , s ) ⊨ ⊤ ) ∧ ( ( M , s ) ⊭ ⊥ ) -
( ( M , s ) ⊨ p ) ⇔ ( p ∈ L ( s ) ) -
( ( M , s ) ⊨ ¬ Φ ) ⇔ ( ( M , s ) ⊭ Φ ) -
( ( M , s ) ⊨ Φ 1 ∧ Φ 2 ) ⇔ ( ( ( M , s ) ⊨ Φ 1 ) ∧ ( ( M , s ) ⊨ Φ 2 ) ) -
( ( M , s ) ⊨ Φ 1 ∨ Φ 2 ) ⇔ ( ( ( M , s ) ⊨ Φ 1 ) ∨ ( ( M , s ) ⊨ Φ 2 ) ) -
( ( M , s ) ⊨ Φ 1 ⇒ Φ 2 ) ⇔ ( ( ( M , s ) ⊭ Φ 1 ) ∨ ( ( M , s ) ⊨ Φ 2 ) ) -
( ( M , s ) ⊨ Φ 1 ⇔ Φ 2 ) ⇔ ( ( ( ( M , s ) ⊨ Φ 1 ) ∧ ( ( M , s ) ⊨ Φ 2 ) ) ∨ ( ¬ ( ( M , s ) ⊨ Φ 1 ) ∧ ¬ ( ( M , s ) ⊨ Φ 2 ) ) ) -
( ( M , s ) ⊨ A ϕ ) ⇔ ( π ⊨ ϕ for all pathsπ starting ins ) -
( ( M , s ) ⊨ E ϕ ) ⇔ ( π ⊨ ϕ for some pathπ starting ins )
Path formulae
The satisfaction relation
-
( π ⊨ Φ ) ⇔ ( ( M , s 0 ) ⊨ Φ ) -
( π ⊨ ¬ ϕ ) ⇔ ( π ⊭ ϕ ) -
( π ⊨ ϕ 1 ∧ ϕ 2 ) ⇔ ( ( π ⊨ ϕ 1 ) ∧ ( π ⊨ ϕ 2 ) ) -
( π ⊨ ϕ 1 ∨ ϕ 2 ) ⇔ ( ( π ⊨ ϕ 1 ) ∨ ( π ⊨ ϕ 2 ) ) -
( π ⊨ ϕ 1 ⇒ ϕ 2 ) ⇔ ( ( π ⊭ ϕ 1 ) ∨ ( π ⊨ ϕ 2 ) ) -
( π ⊨ ϕ 1 ⇔ ϕ 2 ) ⇔ ( ( ( π ⊨ ϕ 1 ) ∧ ( π ⊨ ϕ 2 ) ) ∨ ( ¬ ( π ⊨ ϕ 1 ) ∧ ¬ ( π ⊨ ϕ 2 ) ) ) -
( π ⊨ X ϕ ) ⇔ ( π [ 1 ] ⊨ ϕ ) -
( π ⊨ F ϕ ) ⇔ ( ∃ n ⩾ 0 : π [ n ] ⊨ ϕ ) -
( π ⊨ G ϕ ) ⇔ ( ∀ n ⩾ 0 : π [ n ] ⊨ ϕ ) -
( π ⊨ [ ϕ 1 U ϕ 2 ] ) ⇔ ( ∃ n ⩾ 0 : ( π [ n ] ⊨ ϕ 2 ∧ ∀ 0 ⩽ k < n : π [ k ] ⊨ ϕ 1 ) )
Decision problems
Model checking of CTL* is PSPACE-complete and satisfiability problem is in 2EXPTIME-complete.