case class ParOut(channel: Chan, lchan: Chan, rchan: Chan, left: Term, right: Term) extends Output with Product with Serializable

'c<lc,rc>.(left | right) Parallel output. In proofs-as-processes, parallel communication (i.e. of a pair of objects) happens in 2 stages: 1) Use a common channel to send 2 new channels, one for the left side of the pair and one for the right. 2) Communicate each part of the pair through its respective channel. This performs the output for the first stage. Creates fresh versions of lc and rc and then sends them out as a pair.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParOut
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Output
  7. ChannelTerm
  8. Term
  9. AnyRef
  10. 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 ParOut(channel: Chan, lchan: Chan, rchan: Chan, left: Term, right: Term)

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 ParOut to any2stringadd[ParOut] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ParOut, B)
    Implicit
    This member is added by an implicit conversion from ParOut to ArrowAssoc[ParOut] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addTo(s: PiState): PiState
    Definition Classes
    OutputTerm
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val channel: Chan
    Definition Classes
    ParOutChannelTerm
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. def ensuring(cond: (ParOut) ⇒ Boolean, msg: ⇒ Any): ParOut
    Implicit
    This member is added by an implicit conversion from ParOut to Ensuring[ParOut] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ParOut) ⇒ Boolean): ParOut
    Implicit
    This member is added by an implicit conversion from ParOut to Ensuring[ParOut] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): ParOut
    Implicit
    This member is added by an implicit conversion from ParOut to Ensuring[ParOut] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ParOut
    Implicit
    This member is added by an implicit conversion from ParOut to Ensuring[ParOut] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ParOut to StringFormat[ParOut] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. def fresh(i: Int): ParOut
    Definition Classes
    ParOutTerm
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val lchan: Chan
  21. val left: Term
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. val rchan: Chan
  26. val right: Term
  27. def send(s: PiState): (List[Term], PiObject, PiState)

    Sends its output through the given PiState Returns a list of continuations, the PiObject it wants to send, and an updated PiState.

    Sends its output through the given PiState Returns a list of continuations, the PiObject it wants to send, and an updated PiState. We often need to update the freshness counter of the state, hence the 3rd output.

    Definition Classes
    ParOutOutput
  28. def sub(s: ChanMap): ParOut
    Definition Classes
    ParOutTerm
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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
    @throws( ... ) @native()
  33. def [B](y: B): (ParOut, B)
    Implicit
    This member is added by an implicit conversion from ParOut to ArrowAssoc[ParOut] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Output

Inherited from ChannelTerm

Inherited from Term

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped