Alternating timed automaton

From testwiki
Jump to navigation Jump to search

Template:More citations needed

An alternating timed automaton[1] (ATA) is a modeling formalism that combines features of timed automaton[2] and an alternating finite automaton[3] 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.[1] 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.[1]

Definition

In automata theory, a timed automaton[2] 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.[1]

Difference from a timed-automaton

Given a set X, let +(X) be the set of positive Boolean combination of elements of X, i.e. the set containing the elements of X, and containing ϕψ and ϕψ, for ϕ,ψ+(X).

For each letter a and location , let a, be a set of clock constraints such that their zones partition 0|X|, with |X| being the number of clocks. Given a clock valuation ν, let c(a,,ν) be the only clock constraint of a, which is satisfied by ν.

An alternating timed-automaton contains a transition function, which associates to a 3-tuple (,a,c), with ca,, to an element of +(L×𝒫(C)).

For example, (1,)((2,{x})(2,{y})) is an element of +(L×𝒫(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 1without resetting any clock, or 2) universally branch into two possibilities, both moving to location 2 with one resetting clock x and the other resetting clock y.

Formal definition

Formally, an alternating timed automaton is a tuple 𝒜=Σ,L,L0,C,F,E that consists of the following components:

  • Σ is a finite set called the alphabet or actions of 𝒜.
  • L is a finite set. The elements of L are called the locations or states of 𝒜.
  • C is a finite set called the clocks of 𝒜.
  • L0L is the set of start locations.
  • FL is the set of accepting locations.
  • EL×Σ×(C)+(L×𝒫(C)) is the transitions function of 𝒜.

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 resetsTemplate:Example needed.

Run

A run of an alternating timed automaton over a timed word w=(σ1,t1),(σ2,t2), can be defined in one of two equivalent ways: as a tree or as a game.Template:Citation needed

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:

  • The root of the tree is of the form (0,ν0) with 0L0,
  • Consider a node n of the tree at depth i, with label (,ν). Without loss of generality, let us assume that E(ai+1,,c(a,,ν)) is in disjunctive normal form, i.e. it is of the form i=1nj=1mi(i,j,ri,j). Then the node n has mi children, for some 1in. The j-th child is labelled by (i,j,(ν+ti+1ti)[ri,j0].

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 +(L×𝒫(C)). Intuitively, a tuple (,ν,i,b) means that the run has read i letters, is in location , with clock value ν, and that the transition will be as described by b. The run is defined as follows:

  • The initial state is of the form (0,ν0,0), for some 0L0.
  • Given a state (,ν,i), if the length of the word is i, the run ends. Otherwise, its successor state is (,ν,i,c(ai+1,,ν)).
  • The successor of a state (,ν,i,(,r)) is the state (,ν+titi1[r0],i+1),
  • The successor of a state (,ν,i,ϕψ) is chosen by the player, it is either (,ν,i,ϕ) or (,ν,i,ψ),
  • The successor of a state (,ν,i,ϕψ) is chosen by the opponent, it is either (,ν,i,ϕ) or (,ν,i,ψ).

The set of successive states starting in a state of the form (,ν,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.Template:Clarify

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.

OCATA accepting the language in which no two letters occurs at 1 time unit of interval

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 𝒜=Σ,L,{q0},C,F,E accepting a timed language L, its complement language Lc is accepted by an automaton Ac which is essentially Σ,L,{q0},C,LF,E, where E(,a,c) is defined as E(,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 itTemplate:Ambiguous is a nonelementary problem.

References

Template:Reflist