Packages

object SSAPass

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SSAPass
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(hp: Program): Program

    Apply SSA translation pass to hybrid program.

    Apply SSA translation pass to hybrid program. Make sure you don't actually want apply(Statement). Hybrid program SSA is used, for example, to cross-check statements against CdGL theorem statements

  5. def apply(s: Statement): Statement

    Apply SSA translation pass to Kaisar statement

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def ssa(ds: DomainStatement, snapshot: Snapshot): DomainStatement

    SSA translation of domain statement.

    SSA translation of domain statement. DomModify might bind a duration variable, in which case snapshot refers to the *final* state of the ODE.

  18. def ssa(ds: DiffStatement, snapshot: Snapshot): DiffStatement

    In contrast to other ssa functions, differential equations do not update the snapshot as we go.

    In contrast to other ssa functions, differential equations do not update the snapshot as we go. instead, snapshot should be the snapshot at the *end* of the ODE, which must be precomputed. this difference is due to product ODEs having to assign variables in parallel

  19. def ssa(s: Statement, snapshot: Snapshot): (Statement, Snapshot)

  20. def ssa(ld: LabelDef, snapshot: Snapshot): LabelDef

    Translate indices of label arguments

  21. def ssa(mod: Modify, snapshot: Snapshot): (Modify, Snapshot)

    SSA translation of a Modify proof statement

    SSA translation of a Modify proof statement

    returns

    Translated statement and snapshot of final state

  22. def ssa(pt: ProofTerm, snapshot: Snapshot): ProofTerm

    SSA transformation of a forward proof term

  23. def ssa(sel: Selector, snapshot: Snapshot): Selector

    SSA translation of a fact selector

  24. def ssa(m: Method, snapshot: Snapshot): Method

    SSA translation of a proof method

  25. def ssa(exp: Expression, snapshot: Snapshot): (Expression, Snapshot)

    SSA translation of a hybrid program/game

  26. def ssa(fml: Formula, snapshot: Snapshot): (Formula, Snapshot)

    SSA translation of a formula We assume for simplicity that the formula does not bind any of the variables subject to SSA, meaning we simply re-index free variable occurrences

  27. def ssa(dp: DifferentialProgram, snapshot: Snapshot): DifferentialProgram

    SSA translation of a differential program We assume for simplicity that the program does not bind any of the variables subject to SSA, meaning we simply re-index free variable occurrences

  28. def ssa(hp: Program, snapshot: Snapshot): (Program, Snapshot)

    SSA translation of a hybrid program/game.

    SSA translation of a hybrid program/game. We assume for simplicity that the hybrid program does not bind any of the variables subject to SSA, meaning we simply re-index free variable occurrences in hp

  29. def ssa(f: Term, snapshot: Snapshot): Term

    SSA translation of a term

  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped