chp-1.1.0: An implementation of concurrency ideas from Communicating Sequential ProcessesSource codeContentsIndex
Control.Concurrent.CHP.Traces.VCR
Description
A module for recording View Centric Reasoning (VCR) traces. A view centric reasnoning trace is a list of sets of events. Each set contains independent events that have no causal relationship between them. Hopefully we will publish a paper explaining all this in detail soon.
Synopsis
newtype VCRTrace = VCRTrace (ChannelLabels, [Set RecordedEvent])
runCHP_VCRTrace :: CHP a -> IO (Maybe a, VCRTrace)
runCHP_VCRTraceAndPrint :: CHP a -> IO ()
Documentation
newtype VCRTrace Source
A VCR (View-Centric Reasoning) trace. It is the channel labels, accompanied by a sequential list of sets of recorded events. Each of the sets is a set of independent events. The set at the head of the list is the first-recorded (oldest).
Constructors
VCRTrace (ChannelLabels, [Set RecordedEvent])
show/hide Instances
runCHP_VCRTrace :: CHP a -> IO (Maybe a, VCRTrace)Source
runCHP_VCRTraceAndPrint :: CHP a -> IO ()Source
Produced by Haddock version 2.3.0