Deprecated

In favour of

dpor

A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency.

https://github.com/barrucadu/dejafu

LTS Haskell 10.10:0.2.0.0
Stackage Nightly 2017-12-23:0.2.0.0
Latest on Hackage:0.2.0.0

See all snapshots dpor appears in

MIT licensed by Michael Walker
Maintained by [email protected]
This version can be pinned in stack with:dpor-0.2.0.0@sha256:b844634e0d12dc62cf585a0f53af305fda36d8a32c9b236dfe6e426c4b9b3312,2914

Module documentation for 0.2.0.0

We can characterise the state of a concurrent computation by considering the ordering of dependent events. This is a partial order: independent events can be performed in any order without affecting the result. DPOR is a technique for computing these partial orders at run-time, and only testing one total order for each partial order. This cuts down the amount of work to be done significantly. In particular, this package implemented bounded partial-order reduction, which is a further optimisation. Only schedules within some *bound* are considered.

  • DPOR with no schedule bounding is complete, it will find all distinct executions!

  • DPOR with schedule bounding is incomplete, it will only find all distinct executions within the bound!

Caution: The fundamental assumption behind DPOR is that the *only* source of nondeterminism in your program is the scheduler. Or, to put it another way, if you execute the same program with the same schedule twice, you get the same result. If you are using this library in combination with something which performs I/O, be *very* certain that this is the case!

See the README for more details.

For details on the algorithm, albeit presented in a very imperative way, see Bounded partial-order reduction, K. Coons, M. Musuvathi, and K. McKinley (2013), available at http://research.microsoft.com/pubs/202164/bpor-oopsla-2013.pdf