Alternating timed automaton explained

An alternating timed automaton (ATA) is a modeling formalism that combines features of timed automaton[1] and an alternating finite automaton[2] to succinctly express sets of timed event sequences. Classical timed automata only allow existential nondeterministic branching in their transitions, while alternating finite automata model discrete untimed behaviors. Unlike timed automata, alternating timed automata are closed under complementation. However, this increased expressive power comes at the cost of undecidability in their emptiness problem. A one clock alternating timed automaton (OCATA) is a restricted version of an ATA, limited to the use of a single clock. OCATAs can express timed languages that cannot be expressed using standard timed automata.[3]

Definition

In automata theory, a timed automaton is a finite automaton extended with a finite set of real-valued clocks. During a run of a timed automaton, clock values increase all with the same speed. Along the transitions of the automaton, clock values can be compared to integers. These comparisons form guards that may enable or disable transitions and by doing so constrain the possible behaviors of the automaton are more expressive than timed automata.

An alternating timed automaton is defined as a timed automaton, where the transitions are more complex.

Difference from a timed-automaton

Given a set

X

, let

lB+(X)

be the set of positive Boolean combination of elements of

X

, i.e. the set containing the elements of

X

, and containing

\phi\land\psi

and

\phi\lor\psi

, for

\phi,\psi\inlB+(X)

.

For each letter

a

and location

\ell

, let

lBa,\ell

be a set of clock constraints such that their zones partition
|X|
R
\ge0
, with

|X|

being the number of clocks. Given a clock valuation

\nu

, let

c(a,\ell,\nu)

be the only clock constraint of

lBa,\ell

which is satisfied by

\nu

.

An alternating timed-automaton contains a transition function, which associates to a 3-tuple

(\ell,a,c)

, with

c\inlBa,\ell

, to an element of

lB+(L x lP(C))

.

For example,

(\ell1,\emptyset)\lor((\ell2,\{x\})\land(\ell2,\{y\}))

is an element of

lB+(L x lP(C))

characterizing a condition over next locations and clocks to be reset. Intuitively, this means that a run (or, execution) of the automaton may existentially branch into two possibilities: 1) continue by moving to location

\ell1

without resetting any clock, or 2) universally branch into two possibilities, both moving to location

\ell2

with one resetting clock

x

and the other resetting clock

y

.

Formal definition

Formally, an alternating timed automaton is a tuple

lA=\langle\Sigma,L,L0,C,F,E\rangle

that consists of the following components:

lA

.

L

is a finite set. The elements of

L

are called the locations or states of

lA

.

C

is a finite set called the clocks of

lA

.

L0\subseteqL

is the set of start locations.

F\subseteqL

is the set of accepting locations.

E\subseteqL x \Sigma x lB(C)\tolB+(L x lP(C))

is the transitions function of

lA

.

Any Boolean expression can be rewritten into an equivalent expression in disjunctive normal form. In the representation of an ATA, each disjunction is represented by a different arrow. Each conjunct of a disjunction is represented by a set of arrows with the same tail and multiple heads. The tail is labelled by the letter and each head is labelled by the set of clocks it resets.

Run

A run of an alternating timed automaton over a timed word

w=(\sigma1,t1),(\sigma2,t2),...

can be defined in one of two equivalent ways: as a tree or as a game.

Run as a tree

In this definition, a run is not merely a list of pairs, but a rooted tree. The nodes of the rooted tree are labelled by pairs with a location and a clock valuation. The tree is defined as follows:

(\ell0,\nu0)

with

\ell0\inL0

,

n

of the tree at depth

i

, with label

(\ell,\nu)

. Without loss of generality, let us assume that

E(ai+1,\ell,c(a,\ell,\nu))

is in disjunctive normal form, i.e. it is of the form
mi
vee
j=1

(\elli,j,ri,j)

. Then the node

n

has

mi

children, for some

1\lei\len

. The

j

-th child is labelled by

(\elli,j,(\nu+ti+1-ti)[ri,j\to0]

.

The definition of an accepting run differs depending on whether the timed word is finite or infinite. If the timed word is finite, then the run is accepting if the label of each leaf contains an accepting location. If the timed word is infinite, then a run is accepting if each branch contains an infinite number of accepting locations.

Run as a game

A run can also be defined as a two player game

GA,w

, with the two players called "player" and "opponent." The goal of the player is to create an accepting run, and the goal of the opponent is to create a rejecting (non-accepting) run.

Each state of the game is a tuple composed of a location, a clock valuation, a position in the word, and potentially an element of

lB+(L x lP(C))

. Intuitively, a tuple

(\ell,\nu,i,b)

means that the run has read

i

letters, is in location

\ell

, with clock value

\nu

, and that the transition will be as described by

b

. The run is defined as follows:

(\ell0,\nu0,0)

, for some

\ell0\inL0

.

(\ell,\nu,i)

, if the length of the word is

i

, the run ends. Otherwise, its successor state is

(\ell,\nu,i,c(ai+1,\ell,\nu))

.

(\ell,\nu,i,(\ell',r))

is the state

(\ell',\nu+ti-ti-1[r\to0],i+1)

,

(\ell,\nu,i,\phi\lor\psi)

is chosen by the player, it is either

(\ell,\nu,i,\phi)

or

(\ell,\nu,i,\psi)

,

(\ell,\nu,i,\phi\land\psi)

is chosen by the opponent, it is either

(\ell,\nu,i,\phi)

or

(\ell,\nu,i,\psi)

.

The set of successive states starting in a state of the form

(\ell,\nu,i)

and ending before the next such state is called a phase.

The definition of an accepting run is the same as that for timed automata.

Subclass of ATA

One clock alternating timed automaton

A one clock alternating timed automaton (OCATA) is an alternating timed automaton using a single clock.

The expressivity of OCATAs and of timed-automata are incomparable.

For example, the language over the alphabet

\{a\}

such that there is never exactly one time unit between two letters can not be recognized by a timed-automaton. However, the OCATA pictured accepts it. In this alternating timed automaton, two branches are started. A branch restarts the clock

x

, and ensures that each time in the future when a letter is emitted, the clock

x

is distinct from 1. This ensure that between this letter and the next ones, the time elapsed is not one. The second branch only waits for other letters to be emitted and does the same checking.

Purely-Universal and Purely-Existential ATA

An ATA is said to be purely-universal (respectively, purely-existential) if its transition function does not use disjunction (respectively, conjunction).

Purely-existential ATAs are as expressive as non-deterministic timed-automaton.

Closure

The class of language accepted by ATAs and by OCATAs is closed under complement. The construction is explained for the case where there is a single initial location.

Given an ATA

lA=\langle\Sigma,L,\{q0\},C,F,E\rangle

accepting a timed language

L

, its complement language

Lc

is accepted by an automaton

Ac

which is essentially

\langle\Sigma,L,\{q0\},C,L\setminusF,E'\rangle

, where

E'(\ell,a,c)

is defined as

E(\ell,a,c))

where disjunction and conjunctions are reversed and

E'(q0,a,c)

simulates the run from each of the locations of

L0

simultaneously.

It follows that the class of language accepted by ATAs and by OCATAs are accepted by unions and intersection. The union of two languages is constructed by taking disjoint copies of the automata accepting both languages. The intersection can be constructed from union and concatenation.

Complexity

The emptiness problem, the universality problem and the containability problem are undecidable for ATAs, but decidable for OCATAs, though it is a nonelementary problem.

Notes and References

  1. Book: Shankar . Priti . Modern Applications Of Automata Theory . D'souza . Deepak . 2012-05-24 . World Scientific . 978-981-4468-32-9 . en.
  2. Chandra . Ashok K. . Kozen . Dexter C. . Stockmeyer . Larry J. . January 1981 . Alternation . Journal of the ACM . en . 28 . 1 . 114–133 . 10.1145/322234.322243 . 0004-5411.
  3. Lasota . SƗawomir . Walukiewicz . Igor . Alternating Timed Automata . ACM Transactions on Computational Logic . 2008 . 9 . 2 . 1–26 . 10.1145/1342991.1342994. 1208.5909 . 12319 .