-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexamples.cabal
More file actions
58 lines (53 loc) · 2.25 KB
/
examples.cabal
File metadata and controls
58 lines (53 loc) · 2.25 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
cabal-version: 2.4
name: examples
version: 0.5.0
synopsis: Examples of using the math-programming library.
description: description: Please see the README on GitHub at <https://github.com/prsteele/math-programming/blob/main/examples/README.md>
bug-reports: https://github.com/prsteele/math-programming/issues
license: BSD-3-Clause
license-file: LICENSE
author: Patrick Steele
maintainer: steele.pat@gmail.com
copyright: 2021--2023, Patrick Steele
category: Math
build-type: Simple
extra-source-files: README.md, ChangeLog.md
source-repository head
type: git
location: https://github.com/prsteele/math-programming
executable sudoku
main-is: Sudoku.lhs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -pgmL markdown-unlit
build-depends: base <5
, containers >=0.6
, markdown-unlit >=0.5
, math-programming >=0.5
, math-programming-glpk >=0.5
, mtl >=2.2
, text >=1.2
executable 3sat
main-is: Example3SAT.lhs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -pgmL markdown-unlit
build-depends: base <5
, containers >=0.6
, markdown-unlit >=0.5
, math-programming >=0.5
, math-programming-glpk >=0.5
, mtl >=2.2
, text >=1.2
executable tutorial
main-is: Tutorial.lhs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -pgmL markdown-unlit
build-depends: base <5
, containers >=0.6
, markdown-unlit >=0.5
, math-programming >=0.5
, math-programming-glpk >=0.5
, mtl >=2.2
, text >=1.2