Computation tree logic (CTL) is a branching-time
logic
Logic is the study of correct reasoning. It includes both formal and informal logic. Formal logic is the science of deductively valid inferences or of logical truths. It is a formal science investigating how conclusions follow from premis ...
, meaning that its model of
time
Time is the continued sequence of existence and events that occurs in an apparently irreversible succession from the past, through the present, into the future. It is a component quantity of various measurements used to sequence events, t ...
is a
tree-like structure in which the future is not determined; there are different paths in the future, any one of which might be an actual path that is realized. It is used in
formal verification
In the context of hardware and software systems, formal verification is the act of proving or disproving the correctness of intended algorithms underlying a system with respect to a certain formal specification or property, using formal met ...
of software or hardware artifacts, typically by software applications known as
model checker
In computer science, model checking or property checking is a method for checking whether a finite-state model of a system meets a given specification (also known as correctness). This is typically associated with hardware or software syst ...
s, which determine if a given artifact possesses
safety or liveness properties. For example, CTL can specify that when some initial condition is satisfied (e.g., all program variables are positive or no cars on a highway straddle two lanes), then all possible executions of a program avoid some undesirable condition (e.g., dividing a number by zero or two cars colliding on a highway). In this example, the safety property could be verified by a model checker that explores all possible transitions out of program states satisfying the initial condition and ensures that all such executions satisfy the property. Computation tree logic belongs to a class of
temporal logic In logic, temporal logic is any system of rules and symbolism for representing, and reasoning about, propositions qualified in terms of time (for example, "I am ''always'' hungry", "I will ''eventually'' be hungry", or "I will be hungry ''until'' I ...
s that includes
linear temporal logic In logic, linear temporal logic or linear-time temporal logic (LTL) is a modal temporal logic with modalities referring to time. In LTL, one can encode formulae about the future of paths, e.g., a condition will eventually be true, a condition will ...
(LTL). Although there are properties expressible only in CTL and properties expressible only in LTL, all properties expressible in either logic can also be expressed in
CTL*.
CTL was first proposed by
Edmund M. Clarke and
E. Allen Emerson in 1981, who used it to synthesize so-called ''synchronisation skeletons'', ''i.e'' abstractions of
concurrent programs.
Syntax of CTL
The
language
Language is a structured system of communication. The structure of a language is its grammar and the free components are its vocabulary. Languages are the primary means by which humans communicate, and may be conveyed through a variety of ...
of
well-formed formula
In mathematical logic, propositional logic and predicate logic, a well-formed formula, abbreviated WFF or wff, often simply formula, is a finite sequence of symbols from a given alphabet that is part of a formal language. A formal language can be ...
s for CTL is generated by the following
grammar
In linguistics, the grammar of a natural language is its set of structure, structural constraints on speakers' or writers' composition of clause (linguistics), clauses, phrases, and words. The term can also refer to the study of such constraint ...
:
:
where
ranges over a set of
atomic formula
In mathematical logic, an atomic formula (also known as an atom or a prime formula) is a formula with no deeper propositional structure, that is, a formula that contains no logical connectives or equivalently a formula that has no strict subform ...
s. It is not necessary to use all connectives – for example,
comprises a complete set of connectives, and the others can be defined using them.
*
means 'along All paths' ''(inevitably)''
*
means 'along at least (there Exists) one path' ''(possibly)''
For example, the following is a well-formed CTL formula:
:
The following is not a well-formed CTL formula:
:
The problem with this string is that
can occur only when paired with an
or an
.
CTL uses
atomic propositions as its building blocks to make statements about the states of a system. These propositions are then combined into formulas using
logical operator
In logic, a logical connective (also called a logical operator, sentential connective, or sentential operator) is a logical constant. They can be used to connect logical formulas. For instance in the syntax of propositional logic, the binary ...
s and
temporal operators.
Operators
Logical operators
The
logical operators are the usual ones: ¬, ∨, ∧, ⇒ and ⇔. Along with these operators CTL formulas can also make use of the boolean constants
true
True most commonly refers to truth, the state of being in congruence with fact or reality.
True may also refer to:
Places
* True, West Virginia, an unincorporated community in the United States
* True, Wisconsin, a town in the United States
* ...
and
false
False or falsehood may refer to:
* False (logic), the negation of truth in classical logic
*Lie or falsehood, a type of deception in the form of an untruthful statement
* false (Unix), a Unix command
* ''False'' (album), a 1992 album by Gorefest
* ...
.
Temporal operators
The temporal operators are the following:
* Quantifiers over paths
**A Φ – All: Φ has to hold on all paths starting from the current state.
**E Φ – Exists: there exists at least one path starting from the current state where Φ holds.
* Path-specific quantifiers
**X ''φ'' – Next: ''φ'' has to hold at the next state (this operator is sometimes noted N instead of X).
**G ''φ'' – Globally: ''φ'' has to hold on the entire subsequent path.
**F ''φ'' – Finally: ''φ'' eventually has to hold (somewhere on the subsequent path).
**''φ'' U ''ψ'' – Until: ''φ'' has to hold ''at least'' until at some position ''ψ'' holds. This implies that ''ψ'' will be verified in the future.
**''φ'' W ''ψ'' – Weak until: ''φ'' has to hold until ''ψ'' holds. The difference with U is that there is no guarantee that ''ψ'' will ever be verified. The W operator is sometimes called "unless".
In
CTL*, the temporal operators can be freely mixed. In CTL, the operator must always be grouped in two: one path operator followed by a state operator. See the examples below.
CTL* is strictly more expressive than CTL.
Minimal set of operators
In CTL there are minimal sets of operators. All CTL formulas can be transformed to use only those operators. This is useful in
model checking
In computer science, model checking or property checking is a method for checking whether a finite-state model of a system meets a given specification (also known as correctness). This is typically associated with hardware or software system ...
. One minimal set of operators is: .
Some of the transformations used for temporal operators are:
*EF''φ'' E
rueU(''φ'') ( because F''φ''
rueU(''φ''))
*AX''φ'' ¬EX(¬''φ'')
*AG''φ'' ¬EF(¬''φ'') ¬ E
rueU(¬''φ'')*AF''φ'' A
rueU''φ'' ¬EG(¬''φ'')
*A
'φ''U''ψ'' ¬( E
¬''ψ'')U¬(''φ''∨''ψ'')∨ EG(¬''ψ'') )
Semantics of CTL
Definition
CTL formulae are interpreted over
transition system
In theoretical computer science, a transition system is a concept used in the study of computation. It is used to describe the potential behavior of discrete systems. It consists of states and transitions between states, which may be labeled wit ...
. A transition system is a triple
, where
is a set of states,
is a transition relation, assumed to be serial, i.e. every state has at least one successor, and
is a labelling function, assigning propositional letters to states. Let
be such a transition model
:with
where F is the set of
wffs over the
language
Language is a structured system of communication. The structure of a language is its grammar and the free components are its vocabulary. Languages are the primary means by which humans communicate, and may be conveyed through a variety of ...
of
.
Then the relation of semantic
entailment
Logical consequence (also entailment) is a fundamental concept in logic, which describes the relationship between statements that hold true when one statement logically ''follows from'' one or more statements. A valid logical argument is one ...
is defined recursively on
:
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
Characterisation of CTL
Rules 10–15 above refer to computation paths in models and are what ultimately characterise the "Computation Tree";
they are assertions about the nature of the infinitely deep computation tree rooted at the given state
.
Semantic equivalences
The formulae
and
are said to be semantically equivalent if any state in any model that satisfies one also satisfies the other.
This is denoted
It can be seen that A and E are duals, being universal and existential computation path quantifiers respectively:
.
Furthermore, so are G and F.
Hence an instance of
De Morgan's laws
In propositional logic and Boolean algebra, De Morgan's laws, also known as De Morgan's theorem, are a pair of transformation rules that are both valid rules of inference. They are named after Augustus De Morgan, a 19th-century British mathem ...
can be formulated in CTL:
:
:
:
It can be shown using such identities that a subset of the CTL temporal connectives is adequate if it contains
, at least one of
and at least one of
and the boolean connectives.
The important equivalences below are called the expansion laws; they allow to unfold the verification of a CTL connective towards its successors in time.
:
:
:
:
:
:
Examples
Let "P" mean "I like chocolate" and Q mean "It's warm outside."
*AG.P
:"I will like chocolate from now on, no matter what happens."
*EF.P
:"It's possible I may like chocolate some day, at least for one day."
*AF.EG.P
:"It's always possible (AF) that I will suddenly start liking chocolate for the rest of time." (Note: not just the rest of my life, since my life is finite, while G is infinite).
*EG.AF.P
:"Depending on what happens in the future (E), it's possible that for the rest of time (G), I'll be guaranteed at least one (AF) chocolate-liking day still ahead of me. However, if something ever goes wrong, then all bets are off and there's no guarantee about whether I'll ever like chocolate."
The two following examples show the difference between CTL and CTL*, as they allow for the until operator to not be qualified with any path operator (A or E):
*AG(PUQ)
:"From now until it's warm outside, I will like chocolate every single day. Once it's warm outside, all bets are off as to whether I'll like chocolate anymore. Oh, and it's guaranteed to be warm outside eventually, even if only for a single day."
*EF((EX.P)U(AG.Q))
:"It's possible that: there will eventually come a time when it will be warm forever (AG.Q) and that before that time there will always be ''some'' way to get me to like chocolate the next day (EX.P)."
Relations with other logics
Computation tree logic (CTL) is a subset of CTL* as well as of the
modal μ calculus. CTL is also a fragment of Alur, Henzinger and Kupferman's
alternating-time temporal logic (ATL).
Computation tree logic (CTL) and
linear temporal logic In logic, linear temporal logic or linear-time temporal logic (LTL) is a modal temporal logic with modalities referring to time. In LTL, one can encode formulae about the future of paths, e.g., a condition will eventually be true, a condition will ...
(LTL) are both a subset of CTL*. CTL and
LTL are not equivalent and they have a common subset, which is a proper subset of both CTL and LTL.
*FG.P exists in LTL but not in CTL.
*AG(P⇒((EX.Q)∧(EX¬Q))) and AG.EF.P exist in CTL but not in LTL.
Extensions
CTL has been extended with second-order quantification
and
to quantified computational tree logic (QCTL). There are two semantics:
* the tree semantics. We label nodes of the computation tree. QCTL* = QCTL =
MSO over trees. Model checking and satisfiability are tower complete.
* the structure semantics. We label states. QCTL* = QCTL = MSO over
graph
Graph may refer to:
Mathematics
*Graph (discrete mathematics), a structure made of vertices and edges
**Graph theory, the study of such graphs and their properties
*Graph (topology), a topological space resembling a graph in the sense of discre ...
s. Model checking is
PSPACE-complete In computational complexity theory, a decision problem is PSPACE-complete if it can be solved using an amount of memory that is polynomial in the input length ( polynomial space) and if every other problem that can be solved in polynomial space can ...
but satisfiability is
undecidable.
A reduction from the model-checking problem of QCTL with the structure semantics, to TQBF (true quantified Boolean formulae) has been proposed, in order to take advantage of the QBF solvers.
See also
*
Probabilistic CTL
*
Fair computational tree logic
*
Linear temporal logic In logic, linear temporal logic or linear-time temporal logic (LTL) is a modal temporal logic with modalities referring to time. In LTL, one can encode formulae about the future of paths, e.g., a condition will eventually be true, a condition will ...
References
*
*
*
*
* {{cite book , author=Emerson, E. A. , year=1990 , chapter =Temporal and modal logic , editor=Jan van Leeuwen , editor-link=Jan van Leeuwen , title=Handbook of Theoretical Computer Science, vol. B , pages=955–1072 , publisher=MIT Press , isbn=978-0-262-22039-2
External links
Teaching slides of CTL
Logic in computer science
Temporal logic
Automata (computation)