Packages

trait SignalProcessing0 extends AnyRef

A generic trait for different signal processing methods. There are two descendants - a tracking one and a simple one. The tracking signal processor keeps track of what signals were produced during processing. The simple one do not save traces. So it requires less memory for processing.

Keeping traces can greatly help with debugging. One may see which signals and processors have lead to the result. It may be worth to save trellis to dot file.

Having a common ancestor for both types of processing is advantageous because there will be no code duplication among processors.

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

Type Members

  1. class RuntimeSystemForTrellisProcessingTracking extends AnyRef

    Tracking processing collects lost and final traces during signal processing.

    Tracking processing collects lost and final traces during signal processing. (Lost traces are those that haven't produced any result.) Be careful! Collecting traces in a system with intensive processing can quickly lead to memory overflow. This processing is intended for debug purposes.

  2. abstract type TSignal

    The type that is used to represent a single value related to signal

  3. type TSignals = List[TSignal]
  4. trait TotalTrellisBuilder extends AnyRef

    TrellisBuilder is a way for a final user to watch the process of trellis building.

    TrellisBuilder is a way for a final user to watch the process of trellis building. One may override #newTotalTrellisBuilder and put own implementation of TotalTrellisBuilder.

  5. type TotalTrellisProducerTracking = (SignalProcessingApi0.Context, SignalProcessingApi0.Signal[_]) => TrellisElementTracking
  6. trait TrellisBuilder extends AnyRef

    Constructs trellis.

    Constructs trellis. After running a proc over the trace signal, we construct the next step of the trellis. An instance of this class is constructed anew for every trellis step.

  7. type TrellisElement = (SignalProcessingApi0.Context, TSignals)
  8. type TrellisElementTracking = (SignalProcessingApi0.Context, TSignals)
  9. case class TrellisProducerLoopyTracking(trellisProducer: TrellisProducerSpeedyTracking, stopContacts: Set[SignalProcessingApi0.Contact[_]]) extends TotalTrellisProducerTracking with Product with Serializable

    Generates trellis until there are some data on nonStop contacts.

    Generates trellis until there are some data on nonStop contacts. Can also process signals from child subsystems (not constrained only to input contacts). Processes one signal at a time. Has the same interface as RuntimeComponentMultiState.

    It works as follows. Constructs a lazy evaluated Stream of TrellisElement s (method from). Then searches within the stream for a first element that contains only signals at stop contacts.

  10. case class TrellisProducerSpeedyTracking(runtimeSystemForTrellisProcessing: RuntimeSystemForTrellisProcessingTracking) extends Product with Serializable

    A component that does single step along the trellis.

  11. type TrellisProducerTracking = (TotalTrellisBuilder) => (TSignals) => TSignals

Abstract Value Members

  1. abstract def newTotalTrellisBuilder(runtimeSystem: SignalProcessingApi0.RuntimeSystem, context: SignalProcessingApi0.Context): TotalTrellisBuilder
  2. abstract def signalToTSignal(s: SignalProcessingApi0.Signal[_]): TSignal
  3. implicit abstract def tSignalToSignal(s: TSignal): SignalProcessingApi0.Signal[_]

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def rsToTrellisProducer(runtimeSystem: SignalProcessingApi0.RuntimeSystem): TotalTrellisProducerTracking

    Converts a runtime system to Trellis producer.

  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped