├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── flat-mcmc.cabal ├── lib ├── Data │ └── Vector │ │ └── Extended.hs └── Numeric │ └── MCMC │ └── Flat.hs ├── src └── Main.hs ├── stack-travis.yaml ├── stack.yaml ├── stack.yaml.lock └── test ├── BNN.hs ├── Rosenbrock.hs └── Tests.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/Setup.hs -------------------------------------------------------------------------------- /flat-mcmc.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/flat-mcmc.cabal -------------------------------------------------------------------------------- /lib/Data/Vector/Extended.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/lib/Data/Vector/Extended.hs -------------------------------------------------------------------------------- /lib/Numeric/MCMC/Flat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/lib/Numeric/MCMC/Flat.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/src/Main.hs -------------------------------------------------------------------------------- /stack-travis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/stack-travis.yaml -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | flags: {} 2 | packages: 3 | - '.' 4 | extra-deps: [] 5 | resolver: lts-16.17 6 | -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/BNN.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/test/BNN.hs -------------------------------------------------------------------------------- /test/Rosenbrock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/test/Rosenbrock.hs -------------------------------------------------------------------------------- /test/Tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtobin/flat-mcmc/HEAD/test/Tests.hs --------------------------------------------------------------------------------