27 lines
516 B
Text
27 lines
516 B
Text
cabal-version: 2.2
|
|
name: probabilistic
|
|
version: 0.1.0.0
|
|
author: Joshua Moerman
|
|
maintainer: joshua@cs.rwth-aachen.de
|
|
build-type: Simple
|
|
|
|
common stuff
|
|
default-language: Haskell2010
|
|
build-depends:
|
|
base >=4.14 && <4.15,
|
|
containers
|
|
|
|
library pag
|
|
import: stuff
|
|
hs-source-dirs: src
|
|
exposed-modules:
|
|
Grid,
|
|
PA,
|
|
Prob,
|
|
Output
|
|
|
|
executable probabilistic
|
|
import: stuff
|
|
hs-source-dirs: app
|
|
main-is: Main.hs
|
|
build-depends: pag
|