-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmcmc-synthesis.cabal
31 lines (25 loc) · 1.32 KB
/
mcmc-synthesis.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- Initial mcmc-synthesis.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: mcmc-synthesis
version: 0.1.2.2
synopsis: MCMC applied to probabilistic program synthesis
description: A simple implementation of the ideas from "Stochastic Superoptimization" which uses a variant of Markov Chain Monte Carlo (MCMC) to synthesize programs based on a set of test cases.
"Stochastic Superoptimization": <http://cs.stanford.edu/people/eschkufz/research/asplos291-schkufza.pdf>
license: GPL-3
license-file: LICENSE
author: Jessica Taylor <[email protected]>, Tikhon Jelvis <[email protected]>
maintainer: Jessica Taylor <[email protected]>
category: Language
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/jacobt/mcmc-synthesis.git
library
build-depends: base >3 && <=5, MonadRandom ==0.1.*
hs-source-dirs: src
exposed-modules: Language.Synthesis.Distribution,
Language.Synthesis.MCMC,
Language.Synthesis.Mutations,
Language.Synthesis.Synthesis
GHC-options: -Wall