Packages

  • package root
    Definition Classes
    root
  • class ConcreteMachine[Exp, Abs, Addr, Time] extends EvalKontMachine[Exp, Abs, Addr, Time]

    Implementation of a concrete CESK machine.

    Implementation of a concrete CESK machine. It should be faster than other implementations in this framework because it doesn't store the set of visited states.

    Definition Classes
    root
c

ConcreteMachine

class ConcreteMachine[Exp, Abs, Addr, Time] extends EvalKontMachine[Exp, Abs, Addr, Time]

Implementation of a concrete CESK machine. It should be faster than other implementations in this framework because it doesn't store the set of visited states.

Linear Supertypes
EvalKontMachine[Exp, Abs, Addr, Time], AbstractMachine[Exp, Abs, Addr, Time], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConcreteMachine
  2. EvalKontMachine
  3. AbstractMachine
  4. AnyRef
  5. 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 ConcreteMachine()(implicit arg0: Expression[Exp], arg1: JoinLattice[Abs], arg2: Address[Addr], arg3: Timestamp[Time])

Type Members

  1. trait Output extends AnyRef

    The output of the abstract machine

    The output of the abstract machine

    Definition Classes
    AbstractMachine
  2. trait ConcreteMachineOutput extends Output
  3. case class ConcreteMachineOutputError(store: Store[Addr, Abs], time: Double, numberOfStates: Int, err: String) extends ConcreteMachineOutput with Product with Serializable
  4. case class ConcreteMachineOutputTimeout(store: Store[Addr, Abs], time: Double, numberOfStates: Int) extends ConcreteMachineOutput with Product with Serializable
  5. case class ConcreteMachineOutputValue(store: Store[Addr, Abs], time: Double, numberOfStates: Int, v: Abs) extends ConcreteMachineOutput with Product with Serializable
  6. trait Control extends AnyRef

    The control component of the machine

    The control component of the machine

    Definition Classes
    EvalKontMachine
  7. case class ControlError(err: SemanticError) extends Control with Product with Serializable

    Or an error component, in case an error is reached (e.g., incorrect number of arguments in a function call)

    Or an error component, in case an error is reached (e.g., incorrect number of arguments in a function call)

    Definition Classes
    EvalKontMachine
  8. case class ControlEval(exp: Exp, env: Environment[Addr]) extends Control with Product with Serializable

    It can either be an eval component, where an expression needs to be evaluated in an environment

    It can either be an eval component, where an expression needs to be evaluated in an environment

    Definition Classes
    EvalKontMachine
  9. case class ControlKont(v: Abs) extends Control with Product with Serializable

    Or it can be a continuation component, where a value has been reached and a continuation should be popped from the stack to continue the evaluation

    Or it can be a continuation component, where a value has been reached and a continuation should be popped from the stack to continue the evaluation

    Definition Classes
    EvalKontMachine

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 ConcreteMachine[Exp, Abs, Addr, Time] to any2stringadd[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ConcreteMachine[Exp, Abs, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to ArrowAssoc[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensuring(cond: (ConcreteMachine[Exp, Abs, Addr, Time]) ⇒ Boolean, msg: ⇒ Any): ConcreteMachine[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to Ensuring[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (ConcreteMachine[Exp, Abs, Addr, Time]) ⇒ Boolean): ConcreteMachine[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to Ensuring[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): ConcreteMachine[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to Ensuring[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): ConcreteMachine[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to Ensuring[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def eval(exp: Exp, sem: Semantics[Exp, Abs, Addr, Time], graph: Boolean, timeout: Timeout): Output

    Performs the evaluation of an expression, possibly writing the output graph in a file, and returns the set of final states reached

    Performs the evaluation of an expression, possibly writing the output graph in a file, and returns the set of final states reached

    Definition Classes
    ConcreteMachineAbstractMachine
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to StringFormat[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def name: String

    The name of the abstract machine

    The name of the abstract machine

    Definition Classes
    ConcreteMachineAbstractMachine
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def [B](y: B): (ConcreteMachine[Exp, Abs, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from ConcreteMachine[Exp, Abs, Addr, Time] to ArrowAssoc[ConcreteMachine[Exp, Abs, Addr, Time]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  29. object Control
    Definition Classes
    EvalKontMachine

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 EvalKontMachine[Exp, Abs, Addr, Time]

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

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped