mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-20 12:01:33 +03:00
74 lines
2.8 KiB
Plaintext
Executable File
74 lines
2.8 KiB
Plaintext
Executable File
-- Initial monad-conc.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: monad-conc
|
|
version: 0.0.0.0
|
|
synopsis: Overloadable primitives for potentially non-deterministic concurrency.
|
|
|
|
description:
|
|
Concurrency is nice, deadlocks and race conditions not so much. The
|
|
@Par@ monad family, as defined in
|
|
<https://hackage.haskell.org/package/abstract-par/docs/Control-Monad-Par-Class.html abstract-par>
|
|
provides deterministic parallelism, but sometimes we can tolerate a
|
|
bit of nondeterminism.
|
|
.
|
|
This package provides a family of monads for potentially
|
|
nondeterministic concurrency, with an interface very much in the
|
|
spirit of @Par@, but slightly more relaxed. Specifically, @Conc@'s
|
|
@IVar@ equivalent, @CVar@s, can be written to multiple times.
|
|
.
|
|
== @Conc@ monads with 'IO':
|
|
.
|
|
The intention of the @Conc@ monads is to provide concurrency where
|
|
any apparent nondeterminism arises purely from the scheduling
|
|
behaviour. To put it another way, a given @Conc@ computation,
|
|
parametrised with a fixed set of scheduling decisions, is
|
|
deterministic. This assumption is used by the testing functionality
|
|
provided by Control.Monad.Conc.SCT.
|
|
.
|
|
Whilst this assumption may not hold in general when 'IO' is
|
|
involved, you should strive to produce test cases where it does.
|
|
.
|
|
See the <https://github.com/barrucadu/monad-conc README> for more
|
|
details.
|
|
|
|
homepage: https://github.com/barrucadu/monad-conc
|
|
license: WTFPL
|
|
license-file: LICENSE
|
|
author: Michael Walker
|
|
maintainer: mike@barrucadu.co.uk
|
|
-- copyright:
|
|
category: Concurrency
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules: Control.Monad.Conc.Class
|
|
, Control.Monad.Conc.CVar
|
|
, Control.Monad.Conc.Fixed
|
|
, Control.Monad.Conc.Fixed.ST
|
|
, Control.Monad.Conc.Fixed.IO
|
|
, Control.Monad.Conc.Fixed.Schedulers
|
|
, Control.Monad.Conc.SCT
|
|
other-modules: Control.Monad.Conc.Fixed.Internal
|
|
, Control.Monad.Conc.SCT.Internal
|
|
, Control.Monad.Conc.SCT.PreBound
|
|
-- other-extensions:
|
|
build-depends: base >=4.6 && <5
|
|
, containers
|
|
, monad-st
|
|
, mtl
|
|
, random
|
|
, transformers
|
|
-- hs-source-dirs:
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall
|
|
|
|
test-suite tests
|
|
hs-source-dirs: tests
|
|
type: exitcode-stdio-1.0
|
|
main-is: Tests.hs
|
|
build-depends: monad-conc, base
|
|
default-language: Haskell2010
|