Packages

c

ActorsAAMGlobalStore

class ActorsAAMGlobalStore[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. ActorsAAMGlobalStore
  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 ActorsAAMGlobalStore(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. type ActorEffect = List[String]
  3. trait ActorInstance extends AnyRef
  4. case class ActorInstanceActor(actd: Exp, env: Environment[Addr]) extends ActorInstance with Product with Serializable
  5. case class ActorsAAMOutput(halted: Set[State], numberOfStates: Int, time: Double, graph: Option[G], timedOut: Boolean) extends Output with Product with Serializable
  6. type Annot = (PID, ActorEffect)
  7. case class Context(control: Control, kont: KontAddr, inst: ActorInstance, mbox: T, t: Time) extends Product with Serializable
  8. trait Control extends AnyRef
  9. case class ControlError(err: SemanticError) extends Control with Product with Serializable
  10. case class ControlEval(e: Exp, env: Environment[Addr]) extends Control with Product with Serializable
  11. case class ControlKont(v: Abs) extends Control with Product with Serializable
  12. type Ctx = Unit
  13. type G = Graph[State, Annot, Ctx]
  14. case class GlobalStore(store: DeltaStore[Addr, Abs], oldStore: DeltaStore[Addr, Abs], storeDelta: StoreDelta, mainStoreDelta: StoreDelta, kstore: TimestampedKontStore[KontAddr], oldKStore: TimestampedKontStore[KontAddr], kstoreDelta: KStoreDelta, mainKStoreDelta: KStoreDelta) extends Product with Serializable
  15. type KStoreDelta = Map[KontAddr, Set[Kont[KontAddr]]]
  16. trait KontAddr extends AnyRef
  17. case class NormalKontAddress(pid: PID, exp: Exp, time: Time) extends KontAddr with Product with Serializable
  18. case class Procs(content: CountingMap[PID, Context]) extends Product with Serializable
  19. case class State(procs: Procs) extends Product with Serializable
  20. type StoreDelta = Map[Addr, Abs]

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 ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to any2stringadd[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID], B)
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to ArrowAssoc[ActorsAAMGlobalStore[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, Ctx]
  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: (ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]) ⇒ Boolean, msg: ⇒ Any): ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]) ⇒ Boolean): ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to Ensuring[ActorsAAMGlobalStore[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
    ActorsAAMGlobalStoreAbstractMachine
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to StringFormat[ActorsAAMGlobalStore[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, Ctx]
  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
    ActorsAAMGlobalStoreAbstractMachine
  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. var poppedPerBehavior: Map[(PID, Exp), Set[(PID, String, List[Abs])]]
  27. var poppedPerBehaviorAndMailbox: Map[(PID, Exp, T), Set[(PID, String, List[Abs])]]
  28. var poppedPerMailbox: Map[(PID, T), Set[(PID, String, List[Abs])]]
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def [B](y: B): (ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID], B)
    Implicit
    This member is added by an implicit conversion from ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to ArrowAssoc[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  35. object ActionHelpers extends ActorActionHelpers[Exp, Abs, Addr, Time, PID]
  36. object ActorEffect
  37. object ActorInstanceMain extends ActorInstance with Product with Serializable
  38. object Context extends Serializable
  39. object ControlWait extends Control with Product with Serializable
  40. object G
  41. object GlobalStore extends Serializable
  42. object HaltKontAddress extends KontAddr with Product with Serializable
  43. object KStoreDelta
  44. object KontAddr
  45. object Procs extends Serializable
  46. object State extends Serializable
  47. object StoreDelta

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 ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID] to any2stringadd[ActorsAAMGlobalStore[Exp, Abs, Addr, Time, PID]]

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

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

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

Ungrouped