Class/Object

de.uni_luebeck.isp.rltlconv.automata

Moore

Related Docs: object Moore | package automata

Permalink

case class Moore(alphabet: Set[String], states: Set[State], start: State, transitions: Map[(State, Sign), State], labels: Map[State, B3]) extends Automaton with Product with Serializable

Represents Moore-machines with B3 as the set of outputs.

alphabet

the alphabet of the Moore-machine

states

a set of the states of the Moore-machine

start

the initial state of the Moore-machine

transitions

maps an actual states and an element of the alphabet onto a state as next state

labels

maps each state onto its output value.

Linear Supertypes
Serializable, Serializable, Product, Equals, Automaton, Automata, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Moore
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Automaton
  7. Automata
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Moore(alphabet: Set[String], states: Set[State], start: State, transitions: Map[(State, Sign), State], labels: Map[State, B3])

    Permalink

    creates a new Moore-machine with an alphabet, states, start states, transitions and a label map.

    creates a new Moore-machine with an alphabet, states, start states, transitions and a label map.

    alphabet

    the alphabet of the Moore-machine

    states

    a set of the states of the Moore-machine

    start

    the initial state of the Moore-machine

    transitions

    maps an actual states and an element of the alphabet onto a state as next state

    labels

    maps each state onto its output value.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val alphabet: Set[String]

    Permalink

    the alphabet of the Moore-machine

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def callDot(filetype: String, adot: ADotOption = SingleBool): Array[Byte]

    Permalink
    Attributes
    protected[de.uni_luebeck.isp.rltlconv.automata]
    Definition Classes
    Automata
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    Moore → Equals → AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. val labels: Map[State, B3]

    Permalink

    maps each state onto its output value.

  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def output(word: List[String]): B3

    Permalink

    Computes the output of the Moore-machine for a finite word.

    Computes the output of the Moore-machine for a finite word.

    word

    the input word as a list of strings.

    returns

    the output of the run of the Moore-machine for the word.

  18. val start: State

    Permalink

    the initial state of the Moore-machine

  19. val states: Set[State]

    Permalink

    a set of the states of the Moore-machine

  20. def syncStatesByName: Moore

    Permalink

    Returns a new Moore-machine instance where all used State instances appear in the states list.

    Returns a new Moore-machine instance where all used State instances appear in the states list.

    To achieve this goal the members start, transitions and labels are scanned and every appearing State instance is tried to find in the states list by comparing the names. If it's not found, an exception is thrown.

    Simultaneously for every symbol it is checked if the symbol is element of the alphabet. If it's not found an exception is thrown.

    returns

    a new Moore-machine with same states list but modified start, transactions and accepting member.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toDot(aDot: ADotOption = SingleBool): String

    Permalink

    Converts the Moore-machine into dot format.

    Converts the Moore-machine into dot format.

    returns

    the Moore-machine in dot format.

    Definition Classes
    MooreAutomata
  23. def toMinimizedMoore: Moore

    Permalink

    Performs optimal minimization using equivalence classes.

    Performs optimal minimization using equivalence classes.

    returns

    the minimized Moore-machine

  24. def toNamedMoore: Moore

    Permalink
  25. def toPdf(aDot: ADotOption = SingleBool): Array[Byte]

    Permalink
    Definition Classes
    Automata
  26. def toPng(aDot: ADotOption = SingleBool): Array[Byte]

    Permalink
    Definition Classes
    Automaton
  27. def toString(): String

    Permalink

    Converts the Moore-machine into AFF format.

    Converts the Moore-machine into AFF format.

    returns

    the Moore-machine in AFF format.

    Definition Classes
    Moore → AnyRef → Any
  28. def toSvg(aDot: ADotOption = SingleBool): Array[Byte]

    Permalink
    Definition Classes
    Automaton
  29. val transitions: Map[(State, Sign), State]

    Permalink

    maps an actual states and an element of the alphabet onto a state as next state

  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Automaton

Inherited from Automata

Inherited from AnyRef

Inherited from Any

Ungrouped