Signal automaton

From Wikipedia, the free encyclopedia

In automata theory, a field of computer science, a signal automaton is a finite automaton extended with a finite set of real-valued clocks. During a run of a signal 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. Further, clocks can be reset. [1]

Example[edit]

Before formally defining what a signal automaton is, an example will be given. Let one consider the language of signals, over a binary alphabet , which contains signals such that:

  • appears in singular intervals. That is, the set of times is discrete, and
  • appears at least once during each interval of length one.

This language can be accepted by the automaton pictured nearby.

A signal automaton ensuring A holds discretely and at least once by time unit

As for finite automaton, incoming arrows represents initial locations and double circle represents accepting locations. However, contrary to finite automata, letters occurs in locations and not in transition. This is because letters are emitted continuously and transitions are taken discretely. The symbol represents a clock. This clock allow to measure the time since the last time where was emitted. Thus ensures that is emitted discretely. And ensures that no more than a unit of time can pass without occurring.

Formal definition[edit]

Signal automaton[edit]

Formally, a signal automaton is a tuple that consists of the following components:

  • is a finite set called the alphabet or actions of .
  • is a finite set. The elements of are called the locations or states of .
  • is a finite set called the clocks of .
  • is the set of start locations.
  • is the set of accepting locations.
  • which associates a letter to each location.
  • which associate a clock constraints to each location, and
  • is a set of edges, called transitions of , where
    • is the powerset of .

An edge from is a transition from locations to which reset the clocks of .

Extended state[edit]

A pair with a location and a clock valuation is called either an extended state or a state.

Note that the word state is thus ambiguous, since, depending on the author, it may means either a pair or an element of . For the sake of the clarity, this article will use the term location for element of and the term extended location for pairs.

Here lies one of the biggest difference between signal-automata and finite automata. In a finite automaton, at some point of the execution, the state is entirely described by the number of letter read and by a finite number of possible values, which are actually called "states". That means that, given a state and a suffix of the word to read, the remaining of the run is totally determined. Thus, the word "finite" in the name "finite automata". However, as it is explained in the section "run" below, in order to resume clocks are used to determine which transitions can be taken. Thus, in order to know the state of the automaton, you must both now in which location you are, and the clock valuation.

Run[edit]

As for finite automata, a run is essentially a sequence of locations, such that there exists a transition between two locations. However, two differences must be emphasized. The letter is not determined by the transition but by the locations; this is due to the fact that the letters are emitted continuously while transitions are taken discretely. Some time elapses while in a location; the clock constraints labelling a location or its successor may constraint the time spent in a single location.

A run is a sequence of the form satisfying some constraints. Before stating those constraints, some notations are introduced. The sequences are discrete but represents continuous events. A continuous version of the sequences , , are now introduced. Let integral and , then

  • let be equal to ,
  • let be with being the lower bound of the interval ,
  • let .

The constraints satisfied by run are, for each integral and real:

  • ,
  • ,
  • ,
  • .

The signal defined by this run is the function defined above. It is said that the run defined above is a run for the signal .

The notion of accepting run is defined as in finite automata for finite words and as in Büchi automata for infinite words. That is, if is finite of length , then the run is accepting if . If the word is infinite, then the run is accepting if and only if there exists an infinite number of position such that .

Accepted signals and language[edit]

A signal is said to be accepted by a signal automaton if there exists a run of on accepting it. The set of signals accepted by is called the language accepted by and is denoted by .

Deterministic signal automaton[edit]

As in the case of finite and Büchi automaton, a signal-automaton may be deterministic or non-deterministic. Intuitively, being deterministic as the same meaning in each of those case. It means that the set of start locations is a singleton, and that, given an extended state , and a letter , there is only one possible extended state which can be reached from by reading . More precisely, either it is possible to stay in the location longer, or there is at most one possible successor location.

Formally, this can be defined as follows:

  • is a singleton
  • for each location , for each transition , the two following zones are disjoint:
    • the zone defined by the clock constraint ,
    • the zone defined by the clock constraint where the constraints on clocks of are removed,
  • for each location transitions and , the two following zones are disjoint:
    • the zone defined by the clock constraint where the constraints on clocks of are removed,
    • the zone defined by the clock constraint where the constraints on clocks of are removed,

Simplified signal automata[edit]

Depending on the authors, the exact definition of signal automata may be slightly different. Two such definitions are now given.

Half-open intervals[edit]

In order to simplify the definition of a run, some authors requires that each interval of a run is right-closed and left-open. This restrict automata to accept only signals whose underlying partition satisfies the same property. However, it ensures that at each time , for representing any of the function , or introduced above.

Bipartite signal automaton[edit]

A bipartite signal automaton is a signal automaton in which the run alternates between open intervals and singular intervals (i.e. intervals which are singletons). It ensures that the graph underlying the automaton is a bipartite graph, and thus that the set of locations can be partitioned into , the set of open locations and of singular locations. Since the first interval contains 0, it can not be an open location, it follows that . In order to ensure that each singular location is indeed singular, for each location , there must be a clock which is reset when entering and such that the clock constraint of contains .

Any signal automaton can be transformed into an equivalent bipartite signal automaton. It suffices to replace each location by a pair of locations and introduce a new clock , such that for each , .

Nearby is pictured a bipartite automaton equivalent to the signal automaton from the example section. Rectangle states represents singular locations.

A bipartite signal automaton ensuring A holds discretely and at least once by time unit

Synchronization of automata[edit]

The notion of product of finite automaton is extended to signal automaton. However, such a product is called a synchronization of automaton to emphasize the fact that the time should pass similarly in both automata considered. The main difference between synchronization and product is that, when two finite automata read the same word, they take transition simultaneously. This is not the case anymore for signal automata, since they can take transition at arbitrary time. Thus, the transition relation of a signal automaton may allow transition to be taken in one or two automata.

Let and two signal automata, their synchronization is the signal automaton , where contains the following transitions:

  • for , and similarly for ,
  • for and .

Difference with timed automata[edit]

Timed automata is another extension of finite automata, which adds a notion of time to words. We now state some of the main differences between timed automata and signal automata.

In timed automata, letters are emitted on the transitions and not in the locations. As explained above when comparing signal automata to finite automata, letters are emitted on transitions when the words are emitted discretely, as for words and timed-words while they are emitted on locations when letters are emitted continuously, as for signals.

In timed automata, guards are only checked on transitions. This simplifies the definition of deterministic automaton, since it means that the constraint must be satisfied before the clocks are restarted.

See also[edit]

Notes[edit]

  1. ^ Brihaye, Thomas; Geeraerts, Gilles; Ho, Hsi-Ming; Monmege, Benjamin (2017). "Timed-Automata-Based Verification of MITL over Signals". 24th International Symposium on Temporal Representation and Reasoning (TIME 2017). 90: 7:1–7:19. doi:10.4230/LIPIcs.TIME.2017.7.