-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (55 loc) · 1.49 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
[package]
name = "sampling"
version = "0.2.0"
rust-version = "1.60.0"
authors = ["Yannick Feld <yannick.feld@uol.de>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/Pardoxa/sampling"
keywords = [
"large-deviation",
"Wang-Landau",
"Histogram",
"Heatmap",
"Replica-Exchange"
]
license = "MIT OR Apache-2.0"
categories = ["science", "mathematics"]
documentation = "https://docs.rs/sampling/0.1.1"
homepage = "https://www.yfeld.de"
exclude = [
".github/*",
"TODO.md",
"*.dat",
"*.html",
"*.pdf",
"benches/*",
"target/*",
".gitignore",
"src/examples/ising_spins.rs",
"CHANGELOG.md"
]
description = "Large-deviation Algorithms like Wang-Landau, Entropic sampling, Replica-Exchange Wang-Landau, Heatmaps, Histograms and bootstrap resampling. This is intended for scientific simulations"
[dependencies]
rand = { version = "^0.8.2"}
serde = { version = "1.0", optional = true, features = ["derive"] }
num-traits = "^0.2"
transpose = "^0.2"
average = { version = "^0.14", optional = true }
rayon = { version = "^1.5", optional = true }
paste = "1.0"
[dev-dependencies]
serde_json = "1.0"
criterion = "0.5"
statrs = "0.16.0"
rand_pcg = { version = "^0.3.0", features = ["serde1"]}
[features]
serde_support = ["serde"]
bootstrap = ["average"]
sweep_time_optimization = []
sweep_stats = ["sweep_time_optimization"]
replica_exchange = ["rayon"]
default = ["serde_support", "bootstrap", "replica_exchange"]
[[bench]]
name = "bench"
harness = false