Class/Object

de.uni_luebeck.isp.rltlconv.automata

AMealy

Related Docs: object AMealy | package automata

Permalink

case class AMealy(alphabet: Set[String], states: Set[State], start: PosBool[State], transitions: Map[(State, Sign), PosBool[(B4, DirectedState)]]) extends Automaton with Product with Serializable

Represents alternating Mealy machines with B4 as the set of outputs.

alphabet

the alphabet of the alternating Mealy machine

states

a set of the states of the alternating Mealy machine

start

a positive boolean combination representing the the initial states of the alternating Mealy machine

transitions

maps an actual states and an element of the alphabet onto a positive boolean combination as next states and an output

Linear Supertypes
Serializable, Serializable, Product, Equals, Automaton, Automata, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AMealy
  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 AMealy(alphabet: Set[String], states: Set[State], start: PosBool[State], transitions: Map[(State, Sign), PosBool[(B4, DirectedState)]])

    Permalink

    creates a new alternating Mealy machine with an alphabet, states, start states and transitions.

    creates a new alternating Mealy machine with an alphabet, states, start states and transitions.

    alphabet

    the alphabet of the alternating Mealy machine

    states

    a set of the states of the alternating Mealy machine

    start

    a positive boolean combination representing the the initial states of the alternating Mealy machine

    transitions

    maps an actual states and an element of the alphabet onto a positive boolean combination as next states and an output

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 alternating Mealy 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 finalize(): Unit

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

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

    Permalink
    Definition Classes
    Any
  12. def isTwoWay: Boolean

    Permalink

    Looks for a transition that has not the direction "Forward".

    Looks for a transition that has not the direction "Forward".

    returns

    true if the AMealy is a 2AMealy, else false.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. val start: PosBool[State]

    Permalink

    a positive boolean combination representing the the initial states of the alternating Mealy machine

  17. val states: Set[State]

    Permalink

    a set of the states of the alternating Mealy machine

  18. def syncStatesByName: AMealy

    Permalink

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

    Returns a new alternating Mealy 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 alternating Mealy machine with same states list but modified start, transactions and accepting member.

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

    Permalink
    Definition Classes
    AnyRef
  20. def toColorDot(): String

    Permalink
  21. def toDot(aDot: ADotOption = SingleBool): String

    Permalink

    Converts the alternating Mealy machine into dot format.

    Converts the alternating Mealy machine into dot format.

    returns

    the alternating Mealy machine in dot format.

    Definition Classes
    AMealyAutomata
  22. def toMealy: Mealy

    Permalink
  23. def toNamedAMealy(forceNewNames: Boolean): AMealy

    Permalink
  24. def toNamedAMealy: AMealy

    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 alternating Mealy machine into AFF format.

    Converts the alternating Mealy machine into AFF format.

    returns

    the alternating Mealy machine in AFF format.

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

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

    Permalink

    maps an actual states and an element of the alphabet onto a positive boolean combination as next states and an output

  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