sealed trait PiProcess extends AnyRef

A trait corresponding to any process that can be executed within our framework. The specification generally follows the proofs-as-processes format, with PiObject patterns representing CLL types, paired with strings representing the channel names. *

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PiProcess
  2. AnyRef
  3. 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

Abstract Value Members

  1. abstract val dependencies: Seq[PiProcess]
  2. abstract def inputs: Seq[(PiObject, String)]
  3. abstract def name: String
  4. abstract def output: (PiObject, String)

Concrete 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 PiProcess to any2stringadd[PiProcess] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PiProcess, B)
    Implicit
    This member is added by an implicit conversion from PiProcess to ArrowAssoc[PiProcess] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. lazy val actualChannels: Seq[Chan]
    Attributes
    protected
  7. lazy val allDependencies: Seq[PiProcess]
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def channels: Seq[String]
  10. implicit def chansFromStringSeq(s: Seq[String]): Seq[Chan]
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. def ensuring(cond: (PiProcess) ⇒ Boolean, msg: ⇒ Any): PiProcess
    Implicit
    This member is added by an implicit conversion from PiProcess to Ensuring[PiProcess] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (PiProcess) ⇒ Boolean): PiProcess
    Implicit
    This member is added by an implicit conversion from PiProcess to Ensuring[PiProcess] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): PiProcess
    Implicit
    This member is added by an implicit conversion from PiProcess to Ensuring[PiProcess] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): PiProcess
    Implicit
    This member is added by an implicit conversion from PiProcess to Ensuring[PiProcess] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def execState(args: Seq[PiObject]): PiState

    Initializes a PiState that executes this process with a given list of PiObject arguments.

    Initializes a PiState that executes this process with a given list of PiObject arguments. Generates an Output term from each PiObject in args so that they can be fed to the process. Also generates an Input that consumes the output of the process when it is done. Adds all dependencies to the state and then runs a PiCall directly.

  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from PiProcess to StringFormat[PiProcess] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def iname: String
  24. def inputFrees(): Seq[Seq[Chan]]
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def mapArgs(args: Chan*): ChanMap

    Used when a process is called to map argument channels to the given values.

  27. def mapFreshArgs(i: Int, args: Chan*): ChanMap
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toEntry: (String, PiProcess)

    Shortcut to create entries in name->PiProcess maps

  33. def toIEntry: (String, PiProcess)

    * Shortcut to create entries in name->PiProcess maps using the instance name

  34. def toString(): String
    Definition Classes
    PiProcess → AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. def [B](y: B): (PiProcess, B)
    Implicit
    This member is added by an implicit conversion from PiProcess to ArrowAssoc[PiProcess] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PiProcess to any2stringadd[PiProcess]

Inherited by implicit conversion StringFormat from PiProcess to StringFormat[PiProcess]

Inherited by implicit conversion Ensuring from PiProcess to Ensuring[PiProcess]

Inherited by implicit conversion ArrowAssoc from PiProcess to ArrowAssoc[PiProcess]

Ungrouped