Hello community,
here is the log from the commit of package ghc-mwc-probability for
openSUSE:Factory checked in at 2017-07-23 12:14:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-mwc-probability (Old)
and /work/SRC/openSUSE:Factory/.ghc-mwc-probability.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-mwc-probability"
Sun Jul 23 12:14:40 2017 rev:4 rq:511916 version:1.3.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-mwc-probability/ghc-mwc-probability.changes
2017-03-14 10:05:39.347949004 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-mwc-probability.new/ghc-mwc-probability.changes
2017-07-23 12:14:41.233309275 +0200
@@ -1,0 +2,5 @@
+Fri Jul 21 03:01:31 UTC 2017 - [email protected]
+
+- Update to version 1.3.0 revision 1.
+
+-------------------------------------------------------------------
New:
----
mwc-probability.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-mwc-probability.spec ++++++
--- /var/tmp/diff_new_pack.QN6sDQ/_old 2017-07-23 12:14:42.169177078 +0200
+++ /var/tmp/diff_new_pack.QN6sDQ/_new 2017-07-23 12:14:42.173176513 +0200
@@ -25,6 +25,7 @@
Group: Development/Languages/Other
Url: https://hackage.haskell.org/package/%{pkg_name}
Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-mwc-random-devel
BuildRequires: ghc-primitive-devel
@@ -72,6 +73,7 @@
%prep
%setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ mwc-probability.cabal ++++++
name: mwc-probability
version: 1.3.0
x-revision: 1
homepage: http://github.com/jtobin/mwc-probability
license: MIT
license-file: LICENSE
author: Jared Tobin
maintainer: [email protected]
category: Math
build-type: Simple
cabal-version: >= 1.10
synopsis: Sampling function-based probability distributions.
description:
A simple probability distribution type, where distributions are characterized
by sampling functions.
.
This implementation is a thin layer over @mwc-random@, which handles RNG
state-passing automatically by using a @PrimMonad@ like @IO@ or @ST s@ under
the hood.
.
/Examples/
.
Transform a distribution's support while leaving its density structure
invariant:
.
> -- uniform over [0, 1] to uniform over [1, 2]
> succ <$> uniform
.
Sequence distributions together using bind:
.
> -- a beta-binomial conjugate distribution
> beta 1 10 >>= binomial 10
.
Use do-notation to build complex joint distributions from composable,
local conditionals:
.
> hierarchicalModel = do
> [c, d, e, f] <- replicateM 4 $ uniformR (1, 10)
> a <- gamma c d
> b <- gamma e f
> p <- beta a b
> n <- uniformR (5, 10)
> binomial n p
Source-repository head
Type: git
Location: http://github.com/jtobin/mwc-probability.git
library
exposed-modules: System.Random.MWC.Probability
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base >= 4.8 && < 5
, mwc-random > 0.13 && < 0.14
, primitive >= 0.6 && < 1.0
, transformers >= 0.5 && < 1.0