forked from goethe-tcs/breaking-the-cycle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
100 lines (87 loc) · 2.44 KB
/
Cargo.toml
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
97
98
99
100
[package]
name = "dfvs"
version = "0.1.0"
authors = ["Holger Dell <dell@uni-frankfurt.de>", "Henri Froese <henri.froese@yahoo.com>", "Lukas Geis <lukasgeis@gmx.de>", "Jonathan Guthermuth <j2gutermuth@gmail.com>", "Anselm Haak <anhaak@em.uni-frankfurt.de>", "Lars Huth <huth@mailbox.org>", "Frank Kammer <frank.kammer@mni.thm.de>", "Marius Lotz <mariuslotz@mail.de>", "Johannes Meintrup <johannes.meintrup@mni.thm.de>", "Timo Mertin <timopace2022@gmail.com>", "Manuel Penschuck <pace22@algorithm.engineering>", "Lukas Schwarz <s5454966@stud.uni-frankfurt.de>"]
license = "GPL-3.0"
edition = "2018"
[dependencies]
bitvec = "0.22.3"
num = "0.4.0"
bimap = "0.6.1"
log = "0.4.14"
env_logger = "0.9.0"
ctrlc = { version = "3.1.9", optional = true, features = ["termination"] }
structopt = { version = "0.3", optional = true }
jemallocator = { version = "0.3.2", optional = true }
rand = "0.8.4"
rand_distr = "0.4.2"
rand_pcg = "0.3.1"
itertools = "0.10.1"
fxhash = "0.2.1"
keyed_priority_queue = "0.4.1"
glob = "0.3.0"
tempfile = { version= "3.2.0", optional = true }
test-case = { version="1.2.3", optional = true}
digest = "0.10.0"
sha2 = "0.10.0"
csv = "1.1.6"
rayon = "1.5.1"
num_cpus = "1.13.1"
paste = "1.0.6"
arrayvec = "0.7.2"
[features]
cli = ["structopt"]
signal-handling = ["ctrlc"]
bb-stats = []
[[bin]]
name = "dfvs-cli"
path = "src/bin/dfvs-cli.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "optil_exact"
path = "src/bin/optil_exact.rs"
test = false
[[bin]]
name = "optil_heuristic"
path = "src/bin/optil_heuristic.rs"
required-features = ["signal-handling"]
test = false
[[bin]]
name = "gen-gnp"
path = "src/bin/gen-gnp.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "gen-planted-cycles"
path = "src/bin/gen-planted-cycles.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "bench-preprocessing-reduction"
path = "src/bin/bench-preprocessing-reduction.rs"
test = false
[[bin]]
name = "bench-heuristics"
path = "src/bin/bench-heuristics.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "bench-branch-and-bound"
path = "src/bin/bench-branch-and-bound.rs"
required-features = ["cli", "bb-stats"]
test = false
[[bin]]
name = "dfvs-preprocessing"
path = "src/bin/dfvs-preprocessing.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "exp-bench-par-vs-seq"
path = "src/bin/exp-bench-par-vs-seq.rs"
required-features = ["cli"]
test = false
[[bin]]
name = "kernel-stress-tests"
path = "src/bin/kernel-stress-tests.rs"
test = false