Skip to content

Commit

Permalink
Remove restrictive mtl bound
Browse files Browse the repository at this point in the history
  • Loading branch information
turion committed Jan 3, 2024
1 parent 959183d commit 9bef9eb
Show file tree
Hide file tree
Showing 7 changed files with 5,428 additions and 0 deletions.
1,319 changes: 1,319 additions & 0 deletions applicative_do*>.txt

Large diffs are not rendered by default.

1,356 changes: 1,356 additions & 0 deletions applicative_do.txt

Large diffs are not rendered by default.

Empty file added applicative_do_*
Empty file.
1,331 changes: 1,331 additions & 0 deletions applicative_do_*>_bench_apdo.txt

Large diffs are not rendered by default.

88 changes: 88 additions & 0 deletions hie.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
cradle:
cabal:
- path: "src"
component: "lib:monad-bayes"

- path: "benchmark/Single.hs"
component: "monad-bayes:exe:example"

- path: "models/Single.hs"
component: "monad-bayes:exe:example"

- path: "benchmark/Dice.hs"
component: "monad-bayes:exe:example"

- path: "benchmark/Helper.hs"
component: "monad-bayes:exe:example"

- path: "benchmark/HMM.hs"
component: "monad-bayes:exe:example"

- path: "benchmark/LDA.hs"
component: "monad-bayes:exe:example"

- path: "benchmark/LogReg.hs"
component: "monad-bayes:exe:example"

- path: "models/Dice.hs"
component: "monad-bayes:exe:example"

- path: "models/Helper.hs"
component: "monad-bayes:exe:example"

- path: "models/HMM.hs"
component: "monad-bayes:exe:example"

- path: "models/LDA.hs"
component: "monad-bayes:exe:example"

- path: "models/LogReg.hs"
component: "monad-bayes:exe:example"

- path: "test"
component: "monad-bayes:test:monad-bayes-test"

- path: "models"
component: "monad-bayes:test:monad-bayes-test"

- path: "models/SSM.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "benchmark/SSM.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "models/NonlinearSSM.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "models/NonlinearSSM/Algorithms.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "benchmark/NonlinearSSM.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "benchmark/NonlinearSSM/Algorithms.hs"
component: "monad-bayes:bench:ssm-bench"

- path: "models/Speed.hs"
component: "monad-bayes:bench:speed-bench"

- path: "benchmark/Speed.hs"
component: "monad-bayes:bench:speed-bench"

- path: "models/HMM.hs"
component: "monad-bayes:bench:speed-bench"

- path: "models/LDA.hs"
component: "monad-bayes:bench:speed-bench"

- path: "models/LogReg.hs"
component: "monad-bayes:bench:speed-bench"

- path: "benchmark/HMM.hs"
component: "monad-bayes:bench:speed-bench"

- path: "benchmark/LDA.hs"
component: "monad-bayes:bench:speed-bench"

- path: "benchmark/LogReg.hs"
component: "monad-bayes:bench:speed-bench"
1,330 changes: 1,330 additions & 0 deletions master.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/Control/Monad/Bayes/Traced/MetropolisHastings.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Control.Monad.Bayes.Traced.MetropolisHastings where

class MonadMetropolisHastings m where
mhSteps :: m a

0 comments on commit 9bef9eb

Please sign in to comment.