stochastic 0.1.1.0 → 0.1.1.1
raw patch · 3 files changed
+6/−4 lines, 3 files
Files
- ChangeLog.md +4/−0
- src/Data/Stochastic/Types.hs +1/−3
- stochastic.cabal +1/−1
ChangeLog.md view
@@ -9,3 +9,7 @@ * Exposes composeProcess for quickly composing StochProcesses. * Un-reinvents the State monad. * Adds gamma and beta distributions.++## 0.1.1.1 -- 2016-08-27++* Fixes haddock issue.
src/Data/Stochastic/Types.hs view
@@ -51,10 +51,8 @@ DiscreteUniform :: [a] -> Distribution a Uniform :: Distribution Double Certain :: a -> Distribution a+ -- | Gamma distribution, where the first parameter is the shape parameter alpha, and the second parameter is the scale parameter beta. Gamma :: Double -> Double -> Distribution Double- -- ^ Gamma distribution, where the first parameter is the- -- shape parameter alpha, and the second parameter is the- -- scale parameter beta. Beta :: Double -> Double -> Distribution Double -- | Class of types from which samples can be obtained.
stochastic.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.1.0+version: 0.1.1.1 -- A short (one-line) description of the package. synopsis: Monadic composition of probabilistic functions and sampling.