Packages

c

ActorsAAM

class ActorsAAM[Exp, Abs, Addr, Time, PID] extends AbstractMachine[Exp, Abs, Addr, Time]

Linear Supertypes
AbstractMachine[Exp, Abs, Addr, Time], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorsAAM
  2. AbstractMachine
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ActorsAAM(M: MboxImpl[PID, Abs])(implicit arg0: Expression[Exp], arg1: IsASchemeLattice[Abs], arg2: Address[Addr], arg3: ActorTimestamp[Time], arg4: ThreadIdentifier[PID])

Type Members

  1. trait Output extends AnyRef

    The output of the abstract machine

    The output of the abstract machine

    Definition Classes
    AbstractMachine
  2. trait ActorEffect extends AnyRef
  3. case class ActorEffectBecome(p: PID, name: String) extends ActorEffect with Product with Serializable
  4. case class ActorEffectCreate(p: PID, name: String) extends ActorEffect with Product with Serializable
  5. case class ActorEffectSend(target: PID, name: String) extends ActorEffect with Product with Serializable
  6. case class ActorEffectSendSelf(target: PID, name: String) extends ActorEffect with Product with Serializable
  7. case class ActorEffectTerminate(p: PID) extends ActorEffect with Product with Serializable
  8. trait ActorInstance extends AnyRef
  9. case class ActorInstanceActor(actd: Exp, env: Environment[Addr]) extends ActorInstance with Product with Serializable
  10. case class ActorsAAMOutput(halted: Set[State], numberOfStates: Int, time: Double, graph: Option[G], timedOut: Boolean) extends Output with Product with Serializable
  11. type Annot = (PID, Option[ActorEffect])
  12. case class Context(control: Control, kont: KontAddr, inst: ActorInstance, mbox: T, t: Time) extends Product with Serializable
  13. trait Control extends AnyRef
  14. case class ControlError(err: SemanticError) extends Control with Product with Serializable
  15. case class ControlEval(e: Exp, env: Environment[Addr]) extends Control with Product with Serializable
  16. case class ControlKont(v: Abs) extends Control with Product with Serializable
  17. type G = Graph[State, Annot, Unit]
  18. trait KontAddr extends AnyRef
  19. case class NormalKontAddress(pid: PID, exp: Exp, time: Time) extends KontAddr with Product with Serializable
  20. case class Procs(content: CountingMap[PID, Context]) extends Product with Serializable
  21. case class State(procs: Procs, store: Store[Addr, Abs], kstore: KontStore[KontAddr]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to any2stringadd[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ActorsAAM[Exp, Abs, Addr, Time, PID], B)
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to ArrowAssoc[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val M: MboxImpl[PID, Abs]
  7. implicit val annot: GraphAnnotation[Annot, Unit]
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  10. def ensuring(cond: (ActorsAAM[Exp, Abs, Addr, Time, PID]) ⇒ Boolean, msg: ⇒ Any): ActorsAAM[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ActorsAAM[Exp, Abs, Addr, Time, PID]) ⇒ Boolean): ActorsAAM[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): ActorsAAM[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ActorsAAM[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def eval(exp: Exp, sem: Semantics[Exp, Abs, Addr, Time], graph: Boolean, timeout: Timeout): Output

    Evaluates a program, given a semantics.

    Evaluates a program, given a semantics. If @param graph is true, the state graph will be computed and stored in the output. Returns an object implementing the Output trait, containing information about the evaluation. @param timeout is the timeout in ns, when reached, the evaluation stops and the currently computed results are returned.

    Definition Classes
    ActorsAAMAbstractMachine
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to StringFormat[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. implicit val graphNode: GraphNode[State, Unit]
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def name: String

    The name of the abstract machine

    The name of the abstract machine

    Definition Classes
    ActorsAAMAbstractMachine
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def [B](y: B): (ActorsAAM[Exp, Abs, Addr, Time, PID], B)
    Implicit
    This member is added by an implicit conversion from ActorsAAM[Exp, Abs, Addr, Time, PID] to ArrowAssoc[ActorsAAM[Exp, Abs, Addr, Time, PID]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  32. object ActionHelpers extends ActorActionHelpers[Exp, Abs, Addr, Time, PID]
  33. object ActorInstanceMain extends ActorInstance with Product with Serializable
  34. object Context extends Serializable
  35. object ControlWait extends Control with Product with Serializable
  36. object G
  37. object HaltKontAddress extends KontAddr with Product with Serializable
  38. object KontAddr
  39. object Procs extends Serializable
  40. object State extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AbstractMachine[Exp, Abs, Addr, Time]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ActorsAAM[Exp, Abs, Addr, Time, PID] to any2stringadd[ActorsAAM[Exp, Abs, Addr, Time, PID]]

Inherited by implicit conversion StringFormat from ActorsAAM[Exp, Abs, Addr, Time, PID] to StringFormat[ActorsAAM[Exp, Abs, Addr, Time, PID]]

Inherited by implicit conversion Ensuring from ActorsAAM[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAM[Exp, Abs, Addr, Time, PID]]

Inherited by implicit conversion ArrowAssoc from ActorsAAM[Exp, Abs, Addr, Time, PID] to ArrowAssoc[ActorsAAM[Exp, Abs, Addr, Time, PID]]

Ungrouped