-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheuphrates.cabal
96 lines (85 loc) · 1.96 KB
/
euphrates.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
cabal-version: 2.2
name: euphrates
version: 0.0.0.0
license: BSD-3-Clause
license-file: LICENSE
copyright: Copyright (c) 2020, Aiken Cairncross
maintainer: [email protected]
author: Aiken Cairncross
synopsis: Maximum flow hardware accelerator
description:
A Clash implementation of the push relabel algorithm for maximum flow.
category: Hardware
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/acairncross/euphrates.git
library
exposed-modules: Euphrates.Core
Euphrates.Top
Euphrates.UART
Euphrates.Utils
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
-fplugin GHC.TypeLits.Extra.Solver
-fplugin GHC.TypeLits.KnownNat.Solver
-fplugin GHC.TypeLits.Normalise
-fexpose-all-unfoldings
-fno-worker-wrapper
build-depends:
base <5,
clash-prelude,
ghc-typelits-extra,
ghc-typelits-knownnat,
ghc-typelits-natnormalise,
lens,
mtl,
reflection,
executable shake
main-is: Build.hs
default-language: Haskell2010
build-depends:
base <5,
Cabal,
clash-lib,
deepseq,
euphrates,
shake,
split,
executable serial
main-is: bin/Serial.hs
default-language: Haskell2010
build-depends:
base <5,
bytestring,
serialport,
executable clash
main-is: bin/Clash.hs
default-language: Haskell2010
build-depends:
base <5,
clash-ghc
if !os(windows)
ghc-options: -dynamic
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Euphrates.Hedgehog
Euphrates.Spec
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base <5,
clash-prelude,
euphrates,
fgl,
ghc-typelits-extra,
ghc-typelits-knownnat,
ghc-typelits-natnormalise,
hedgehog,
hspec,