mirror of
https://github.com/dnlbauer/WHAM.git
synced 2026-09-10 22:25:31 +00:00
Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b39d603bd | ||
|
|
465f46b280 | ||
|
|
d221fc7195 | ||
|
|
dc218df051 | ||
|
|
1e27cfd457 | ||
|
|
7116142c2a | ||
|
|
fbdb451f6b | ||
|
|
d4119b2fae | ||
|
|
b9f6b24b20 | ||
|
|
5390b089ac | ||
|
|
133234706e | ||
|
|
1a95f222eb | ||
|
|
77637133a7 | ||
|
|
a099a71b3b | ||
|
|
a4f3b3091c | ||
|
|
08e7c93327 | ||
|
|
936cbe1c58 | ||
|
|
554e250838 | ||
|
|
cd7bea063f | ||
|
|
d3a70520df | ||
|
|
aca4265a02 | ||
|
|
d758c843d8 | ||
|
|
79db640a7b | ||
|
|
99f2c9069d | ||
|
|
7109d27543 | ||
|
|
c03be1723e | ||
|
|
4aa3552f1d | ||
|
|
5650d2a65a | ||
|
|
6ed0e4c49c | ||
|
|
5caa2b5f20 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
target
|
||||
reference
|
||||
.idea
|
||||
bench.sh
|
||||
*bench.*
|
||||
*.sublime*
|
||||
381
Cargo.lock
generated
381
Cargo.lock
generated
@@ -1,266 +1,397 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
[[package]]
|
||||
name = "GSL"
|
||||
version = "1.0.0"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7830156ea389bcbbdc8f01bf140b609b892bf7cbd0ec6ccf9957ea2be6f25ad3"
|
||||
dependencies = [
|
||||
"c_vec 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"c_vec",
|
||||
"libc",
|
||||
"pkg-config",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "addr2line"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
|
||||
dependencies = [
|
||||
"gimli",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "adler"
|
||||
version = "0.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
|
||||
|
||||
[[package]]
|
||||
name = "ansi_term"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
||||
dependencies = [
|
||||
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "assert_approx_eq"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3c07dab4369547dbe5114677b33fbbf724971019f3818172d59a97a61c774ffd"
|
||||
|
||||
[[package]]
|
||||
name = "atty"
|
||||
version = "0.2.11"
|
||||
version = "0.2.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
||||
dependencies = [
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"hermit-abi",
|
||||
"libc",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "autocfg"
|
||||
version = "1.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
||||
|
||||
[[package]]
|
||||
name = "backtrace"
|
||||
version = "0.3.9"
|
||||
version = "0.3.50"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
|
||||
dependencies = [
|
||||
"backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "backtrace-sys"
|
||||
version = "0.1.24"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"addr2line",
|
||||
"cfg-if",
|
||||
"libc",
|
||||
"miniz_oxide",
|
||||
"object",
|
||||
"rustc-demangle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.0.4"
|
||||
version = "1.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
||||
|
||||
[[package]]
|
||||
name = "c_vec"
|
||||
version = "1.0.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "aa9e1d9f7d49e289f36f19effbf3d5a5e30163ecf9c7a3c9be94d5374dec5b9a"
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
version = "0.1.6"
|
||||
version = "0.1.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
||||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "2.32.0"
|
||||
version = "2.33.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
|
||||
dependencies = [
|
||||
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"ansi_term",
|
||||
"atty",
|
||||
"bitflags",
|
||||
"strsim",
|
||||
"textwrap",
|
||||
"unicode-width",
|
||||
"vec_map",
|
||||
"yaml-rust",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cloudabi"
|
||||
version = "0.0.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
|
||||
dependencies = [
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bitflags",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-channel"
|
||||
version = "0.4.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
|
||||
dependencies = [
|
||||
"crossbeam-utils",
|
||||
"maybe-uninit",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-deque"
|
||||
version = "0.7.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
|
||||
dependencies = [
|
||||
"crossbeam-epoch",
|
||||
"crossbeam-utils",
|
||||
"maybe-uninit",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-epoch"
|
||||
version = "0.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"cfg-if",
|
||||
"crossbeam-utils",
|
||||
"lazy_static",
|
||||
"maybe-uninit",
|
||||
"memoffset",
|
||||
"scopeguard",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.7.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"cfg-if",
|
||||
"lazy_static",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "either"
|
||||
version = "1.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cd56b59865bce947ac5958779cfa508f6c3b9497cc762b7e24a12d11ccde2c4f"
|
||||
|
||||
[[package]]
|
||||
name = "error-chain"
|
||||
version = "0.12.0"
|
||||
version = "0.12.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
||||
dependencies = [
|
||||
"backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"backtrace",
|
||||
"version_check",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fuchsia-zircon"
|
||||
version = "0.3.3"
|
||||
name = "fuchsia-cprng"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
||||
|
||||
[[package]]
|
||||
name = "gimli"
|
||||
version = "0.22.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
|
||||
|
||||
[[package]]
|
||||
name = "hermit-abi"
|
||||
version = "0.1.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9"
|
||||
dependencies = [
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fuchsia-zircon-sys"
|
||||
version = "0.3.3"
|
||||
name = "lazy_static"
|
||||
version = "1.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.43"
|
||||
version = "0.2.77"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
|
||||
|
||||
[[package]]
|
||||
name = "maybe-uninit"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
||||
|
||||
[[package]]
|
||||
name = "memoffset"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c198b026e1bbf08a937e94c6c60f9ec4a2267f5b0d2eec9c1b21b061ce2be55f"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "miniz_oxide"
|
||||
version = "0.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c60c0dfe32c10b43a144bad8fc83538c52f58302c92300ea7ec7bf7b38d5a7b9"
|
||||
dependencies = [
|
||||
"adler",
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num_cpus"
|
||||
version = "1.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
||||
dependencies = [
|
||||
"hermit-abi",
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.20.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
|
||||
|
||||
[[package]]
|
||||
name = "pkg-config"
|
||||
version = "0.3.14"
|
||||
version = "0.3.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33"
|
||||
|
||||
[[package]]
|
||||
name = "rand"
|
||||
version = "0.5.5"
|
||||
version = "0.5.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
|
||||
dependencies = [
|
||||
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cloudabi",
|
||||
"fuchsia-cprng",
|
||||
"libc",
|
||||
"rand_core 0.3.1",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.2.2"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
||||
dependencies = [
|
||||
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rand_core 0.4.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.3.0"
|
||||
version = "0.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
||||
|
||||
[[package]]
|
||||
name = "redox_syscall"
|
||||
version = "0.1.40"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "redox_termios"
|
||||
version = "0.1.1"
|
||||
name = "rayon"
|
||||
version = "1.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cfd016f0c045ad38b5251be2c9c0ab806917f82da4d36b2a327e5166adad9270"
|
||||
dependencies = [
|
||||
"redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"autocfg",
|
||||
"crossbeam-deque",
|
||||
"either",
|
||||
"rayon-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon-core"
|
||||
version = "1.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "91739a34c4355b5434ce54c9086c5895604a9c278586d1f1aa95e04f66b525a0"
|
||||
dependencies = [
|
||||
"crossbeam-channel",
|
||||
"crossbeam-deque",
|
||||
"crossbeam-utils",
|
||||
"lazy_static",
|
||||
"num_cpus",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustc-demangle"
|
||||
version = "0.1.9"
|
||||
version = "0.1.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
|
||||
|
||||
[[package]]
|
||||
name = "scopeguard"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "termion"
|
||||
version = "1.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
||||
|
||||
[[package]]
|
||||
name = "textwrap"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
||||
dependencies = [
|
||||
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"unicode-width",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-width"
|
||||
version = "0.1.5"
|
||||
version = "0.1.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
|
||||
|
||||
[[package]]
|
||||
name = "vec_map"
|
||||
version = "0.8.1"
|
||||
version = "0.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
||||
|
||||
[[package]]
|
||||
name = "version_check"
|
||||
version = "0.9.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
|
||||
|
||||
[[package]]
|
||||
name = "wham"
|
||||
version = "0.9.0"
|
||||
version = "0.9.8"
|
||||
dependencies = [
|
||||
"GSL 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"GSL",
|
||||
"assert_approx_eq",
|
||||
"clap",
|
||||
"error-chain",
|
||||
"rand",
|
||||
"rayon",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi"
|
||||
version = "0.3.6"
|
||||
version = "0.3.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
||||
dependencies = [
|
||||
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi-i686-pc-windows-gnu",
|
||||
"winapi-x86_64-pc-windows-gnu",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi-i686-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||
|
||||
[[package]]
|
||||
name = "winapi-x86_64-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||
|
||||
[[package]]
|
||||
name = "yaml-rust"
|
||||
version = "0.3.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[metadata]
|
||||
"checksum GSL 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2e70167131757876cda6ab95869b57ad6b55c627ff28421f5935f55f9b97d85c"
|
||||
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
||||
"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
|
||||
"checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a"
|
||||
"checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0"
|
||||
"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
|
||||
"checksum c_vec 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9e1d9f7d49e289f36f19effbf3d5a5e30163ecf9c7a3c9be94d5374dec5b9a"
|
||||
"checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
|
||||
"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4"
|
||||
"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
|
||||
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
|
||||
"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
|
||||
"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
|
||||
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
|
||||
"checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"
|
||||
"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c"
|
||||
"checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c"
|
||||
"checksum rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372"
|
||||
"checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
|
||||
"checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1"
|
||||
"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
|
||||
"checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395"
|
||||
"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
|
||||
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
|
||||
"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
|
||||
"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
|
||||
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
|
||||
"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
|
||||
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||
"checksum yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"
|
||||
checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "wham"
|
||||
version = "0.9.0"
|
||||
authors = ["D. Bauer <bauer@bio.tu-darmstadt.de>"]
|
||||
version = "0.9.8"
|
||||
authors = ["Daniel Bauer <bauer@cbs.tu-darmstadt.de>"]
|
||||
description = "An implementation of the weighted histogram analysis method"
|
||||
license = "GPL-3.0"
|
||||
repository = "https://github.com/danijoo/WHAM"
|
||||
@@ -11,6 +11,10 @@ clap = {version="2.32.0", features=['yaml']}
|
||||
error-chain = "0.12.0"
|
||||
rand = "0.5.5"
|
||||
GSL = "1.0.0"
|
||||
rayon = "1.0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
assert_approx_eq = "1.1.0"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 2
|
||||
|
||||
19
README.md
19
README.md
@@ -1,4 +1,6 @@
|
||||
[](https://travis-ci.com/danijoo/WHAM) [](https://www.crates.io/crates/wham)
|
||||
[](https://travis-ci.com/danijoo/WHAM) [](https://www.crates.io/crates/wham) [](https://doi.org/10.5281/zenodo.1488597)
|
||||
|
||||
|
||||
|
||||
Weighted Histogram Analysis Method (WHAM)
|
||||
===
|
||||
@@ -10,6 +12,7 @@ from umbrella sampling simulations. For more details on the method, I suggest *R
|
||||
Features
|
||||
---
|
||||
- Fast, especially for small systems
|
||||
- Multithreaded
|
||||
- Multidimensional
|
||||
- Error analysis
|
||||
- Unit tested
|
||||
@@ -78,27 +81,29 @@ one can estimate the error as standard deviation between the N bootstrapping run
|
||||
Autocorrelation Estimates, JCTC, 6(12), 3713-3720*.
|
||||
|
||||
To perform bayesian bootstrapping in WHAM, use the ```-bt <RUNS>``` flag to perform <RUNS> individual bootstrapping
|
||||
runs. The error estimates of bin probabilities and free energy will be given as separate column (+/-) in the output file.
|
||||
If no error analysis is performed, these columns are set to 0.0.
|
||||
runs. The error estimates of bin probabilities and free energy will be given as standard error (SE) in a
|
||||
separate column (+/-) in the output file. If no error analysis is performed, these columns are set to 0.0.
|
||||
|
||||
Examples
|
||||
---
|
||||
The example folder contains input and output files for two simple test systems:
|
||||
|
||||
- 1d: Phi torsion angle of dialanine in vaccum
|
||||
- 2d: Phi and psi torsion angles of the same system
|
||||
- 1d_cyclic: Phi torsion angle of dialanine in vaccum
|
||||
- 2d_cyclic: Phi and psi torsion angles of the same system
|
||||
|
||||
|
||||
TODO
|
||||
---
|
||||
- Multithreading (?)
|
||||
- better error estimation
|
||||
- Autocorrelation
|
||||
- Replica exchange
|
||||
|
||||
License
|
||||
License & Citing
|
||||
---
|
||||
WHAM is licensed under the GPL-3.0 license. Please read the LICENSE file in this
|
||||
repository for more information.
|
||||
|
||||
There's no publication for this WHAM implementation. However, there is a citeabe DOI. If you use this software for your work, please consider citing it: *Bauer, D, WHAM - An efficient weighted histogram analysis implementation written in Rust, Zenodo. https://doi.org/10.5281/zenodo.1488597*
|
||||
|
||||
Parts of this work, especially some perfomance optimizations and the I/O format, are inspired by the
|
||||
implementation of A. Grossfield (*Grossfield, A, WHAM: the weighted histogram analysis method, http://membrane.urmc.rochester.edu/content/wham*).
|
||||
|
||||
@@ -1,101 +0,0 @@
|
||||
#coord1 Free Energy +/- Probability +/-
|
||||
-3.108600 7.118166 0.000000 0.003561 0.000000
|
||||
-3.045800 5.331290 0.000000 0.007290 0.000000
|
||||
-2.983000 3.879241 0.000000 0.013048 0.000000
|
||||
-2.920200 2.968659 0.000000 0.018796 0.000000
|
||||
-2.857400 1.942494 0.000000 0.028362 0.000000
|
||||
-2.794600 1.418408 0.000000 0.034994 0.000000
|
||||
-2.731800 1.169398 0.000000 0.038668 0.000000
|
||||
-2.669000 0.843024 0.000000 0.044073 0.000000
|
||||
-2.606200 0.636021 0.000000 0.047887 0.000000
|
||||
-2.543400 0.720123 0.000000 0.046299 0.000000
|
||||
-2.480600 1.066434 0.000000 0.040297 0.000000
|
||||
-2.417800 1.509855 0.000000 0.033734 0.000000
|
||||
-2.355000 2.015549 0.000000 0.027544 0.000000
|
||||
-2.292200 2.226942 0.000000 0.025306 0.000000
|
||||
-2.229400 2.573176 0.000000 0.022026 0.000000
|
||||
-2.166600 2.591946 0.000000 0.021861 0.000000
|
||||
-2.103800 2.476835 0.000000 0.022893 0.000000
|
||||
-2.041000 2.513953 0.000000 0.022555 0.000000
|
||||
-1.978200 2.470032 0.000000 0.022956 0.000000
|
||||
-1.915400 2.227585 0.000000 0.025299 0.000000
|
||||
-1.852600 2.105310 0.000000 0.026570 0.000000
|
||||
-1.789800 1.778779 0.000000 0.030286 0.000000
|
||||
-1.727000 1.447127 0.000000 0.034593 0.000000
|
||||
-1.664200 0.906384 0.000000 0.042968 0.000000
|
||||
-1.601400 0.304263 0.000000 0.054699 0.000000
|
||||
-1.538600 0.247397 0.000000 0.055960 0.000000
|
||||
-1.475800 0.000000 0.000000 0.061795 0.000000
|
||||
-1.413000 0.536142 0.000000 0.049843 0.000000
|
||||
-1.350200 1.428046 0.000000 0.034859 0.000000
|
||||
-1.287400 2.398149 0.000000 0.023627 0.000000
|
||||
-1.224600 3.784647 0.000000 0.013552 0.000000
|
||||
-1.161800 5.696583 0.000000 0.006297 0.000000
|
||||
-1.099000 7.656158 0.000000 0.002870 0.000000
|
||||
-1.036200 9.955000 0.000000 0.001142 0.000000
|
||||
-0.973400 12.357407 0.000000 0.000436 0.000000
|
||||
-0.910600 14.954254 0.000000 0.000154 0.000000
|
||||
-0.847800 17.745327 0.000000 0.000050 0.000000
|
||||
-0.785000 20.559461 0.000000 0.000016 0.000000
|
||||
-0.722200 22.783560 0.000000 0.000007 0.000000
|
||||
-0.659400 25.175865 0.000000 0.000003 0.000000
|
||||
-0.596600 26.419980 0.000000 0.000002 0.000000
|
||||
-0.533800 27.885999 0.000000 0.000001 0.000000
|
||||
-0.471000 29.029334 0.000000 0.000001 0.000000
|
||||
-0.408200 30.366556 0.000000 0.000000 0.000000
|
||||
-0.345400 31.615252 0.000000 0.000000 0.000000
|
||||
-0.282600 32.781716 0.000000 0.000000 0.000000
|
||||
-0.219800 33.731378 0.000000 0.000000 0.000000
|
||||
-0.157000 34.476014 0.000000 0.000000 0.000000
|
||||
-0.094200 35.387300 0.000000 0.000000 0.000000
|
||||
-0.031400 35.579756 0.000000 0.000000 0.000000
|
||||
0.031400 35.520194 0.000000 0.000000 0.000000
|
||||
0.094200 35.344763 0.000000 0.000000 0.000000
|
||||
0.157000 34.886460 0.000000 0.000000 0.000000
|
||||
0.219800 33.633998 0.000000 0.000000 0.000000
|
||||
0.282600 32.686511 0.000000 0.000000 0.000000
|
||||
0.345400 31.211777 0.000000 0.000000 0.000000
|
||||
0.408200 29.680451 0.000000 0.000000 0.000000
|
||||
0.471000 28.032242 0.000000 0.000001 0.000000
|
||||
0.533800 26.439599 0.000000 0.000002 0.000000
|
||||
0.596600 24.432467 0.000000 0.000003 0.000000
|
||||
0.659400 22.309893 0.000000 0.000008 0.000000
|
||||
0.722200 20.186040 0.000000 0.000019 0.000000
|
||||
0.785000 18.295046 0.000000 0.000040 0.000000
|
||||
0.847800 16.221232 0.000000 0.000093 0.000000
|
||||
0.910600 14.251911 0.000000 0.000204 0.000000
|
||||
0.973400 12.562353 0.000000 0.000402 0.000000
|
||||
1.036200 11.184029 0.000000 0.000698 0.000000
|
||||
1.099000 10.040677 0.000000 0.001103 0.000000
|
||||
1.161800 9.369064 0.000000 0.001444 0.000000
|
||||
1.224600 9.095392 0.000000 0.001612 0.000000
|
||||
1.287400 9.256035 0.000000 0.001511 0.000000
|
||||
1.350200 9.814068 0.000000 0.001208 0.000000
|
||||
1.413000 10.945207 0.000000 0.000768 0.000000
|
||||
1.475800 12.518898 0.000000 0.000409 0.000000
|
||||
1.538600 14.409744 0.000000 0.000191 0.000000
|
||||
1.601400 16.451965 0.000000 0.000084 0.000000
|
||||
1.664200 18.589166 0.000000 0.000036 0.000000
|
||||
1.727000 20.669504 0.000000 0.000016 0.000000
|
||||
1.789800 22.804791 0.000000 0.000007 0.000000
|
||||
1.852600 24.531690 0.000000 0.000003 0.000000
|
||||
1.915400 26.182612 0.000000 0.000002 0.000000
|
||||
1.978200 27.279439 0.000000 0.000001 0.000000
|
||||
2.041000 28.571380 0.000000 0.000001 0.000000
|
||||
2.103800 29.328969 0.000000 0.000000 0.000000
|
||||
2.166600 29.897739 0.000000 0.000000 0.000000
|
||||
2.229400 30.320908 0.000000 0.000000 0.000000
|
||||
2.292200 30.065391 0.000000 0.000000 0.000000
|
||||
2.355000 29.809137 0.000000 0.000000 0.000000
|
||||
2.417800 29.340601 0.000000 0.000000 0.000000
|
||||
2.480600 28.473346 0.000000 0.000001 0.000000
|
||||
2.543400 27.679353 0.000000 0.000001 0.000000
|
||||
2.606200 26.453160 0.000000 0.000002 0.000000
|
||||
2.669000 24.424649 0.000000 0.000003 0.000000
|
||||
2.731800 22.285933 0.000000 0.000008 0.000000
|
||||
2.794600 19.958407 0.000000 0.000021 0.000000
|
||||
2.857400 17.606291 0.000000 0.000053 0.000000
|
||||
2.920200 15.420138 0.000000 0.000128 0.000000
|
||||
2.983000 13.069599 0.000000 0.000328 0.000000
|
||||
3.045800 11.036085 0.000000 0.000740 0.000000
|
||||
3.108600 9.015657 0.000000 0.001664 0.000000
|
||||
9
example/1d_cyclic/README.txt
Normal file
9
example/1d_cyclic/README.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
Example data: Dialanine torsion angle at 300K
|
||||
wham.out was produced with the folling settings:
|
||||
|
||||
wham --max pi --min -pi --cyclic\
|
||||
--bins 100 \
|
||||
-T 300 \
|
||||
-f metadata.dat \
|
||||
-o wham.out \
|
||||
--bt 100 --seed 1234
|
||||
101
example/1d_cyclic/wham.out
Normal file
101
example/1d_cyclic/wham.out
Normal file
@@ -0,0 +1,101 @@
|
||||
#coord1 Free Energy +/- Probability +/-
|
||||
-3.110177 7.158102 0.069244 0.003494 0.000067
|
||||
-3.047345 5.365727 0.068503 0.007168 0.000135
|
||||
-2.984513 3.873190 0.065883 0.013039 0.000226
|
||||
-2.921681 2.953162 0.066856 0.018855 0.000334
|
||||
-2.858849 1.949554 0.066705 0.028195 0.000501
|
||||
-2.796017 1.391747 0.064012 0.035261 0.000576
|
||||
-2.733186 1.128270 0.061522 0.039189 0.000598
|
||||
-2.670354 0.839970 0.060810 0.043991 0.000653
|
||||
-2.607522 0.624769 0.061888 0.047955 0.000733
|
||||
-2.544690 0.663757 0.062566 0.047211 0.000736
|
||||
-2.481858 1.051932 0.061093 0.040407 0.000616
|
||||
-2.419026 1.463048 0.062547 0.034267 0.000543
|
||||
-2.356194 1.990616 0.057022 0.027734 0.000373
|
||||
-2.293363 2.190692 0.044029 0.025597 0.000202
|
||||
-2.230531 2.553036 0.041867 0.022136 0.000157
|
||||
-2.167699 2.572522 0.044817 0.021964 0.000184
|
||||
-2.104867 2.472360 0.038778 0.022863 0.000155
|
||||
-2.042035 2.517562 0.030296 0.022453 0.000150
|
||||
-1.979203 2.469778 0.025852 0.022887 0.000167
|
||||
-1.916372 2.223125 0.030799 0.025266 0.000411
|
||||
-1.853540 2.080157 0.024928 0.026756 0.000365
|
||||
-1.790708 1.793841 0.027529 0.030011 0.000475
|
||||
-1.727876 1.458784 0.026130 0.034326 0.000462
|
||||
-1.665044 0.914441 0.024774 0.042697 0.000576
|
||||
-1.602212 0.303813 0.020400 0.054540 0.000701
|
||||
-1.539380 0.268335 0.020423 0.055321 0.000733
|
||||
-1.476549 0.000000 0.020271 0.061604 0.000835
|
||||
-1.413717 0.537061 0.023895 0.049671 0.000735
|
||||
-1.350885 1.439940 0.023678 0.034586 0.000528
|
||||
-1.288053 2.391838 0.025951 0.023614 0.000386
|
||||
-1.225221 3.779470 0.026215 0.013538 0.000224
|
||||
-1.162389 5.685555 0.028543 0.006305 0.000109
|
||||
-1.099557 7.661896 0.030579 0.002855 0.000051
|
||||
-1.036726 9.946594 0.039243 0.001142 0.000022
|
||||
-0.973894 12.359408 0.054067 0.000434 0.000009
|
||||
-0.911062 14.954655 0.066597 0.000153 0.000004
|
||||
-0.848230 17.742242 0.073582 0.000050 0.000002
|
||||
-0.785398 20.555785 0.074644 0.000016 0.000001
|
||||
-0.722566 22.811160 0.078503 0.000007 0.000000
|
||||
-0.659734 25.178094 0.088961 0.000003 0.000000
|
||||
-0.596903 26.442288 0.093509 0.000002 0.000000
|
||||
-0.534071 27.897565 0.091353 0.000001 0.000000
|
||||
-0.471239 29.062473 0.086244 0.000001 0.000000
|
||||
-0.408407 30.384521 0.084285 0.000000 0.000000
|
||||
-0.345575 31.638454 0.084871 0.000000 0.000000
|
||||
-0.282743 32.817727 0.092750 0.000000 0.000000
|
||||
-0.219911 33.770369 0.094479 0.000000 0.000000
|
||||
-0.157080 34.505503 0.095774 0.000000 0.000000
|
||||
-0.094248 35.431659 0.107598 0.000000 0.000000
|
||||
-0.031416 35.615810 0.108959 0.000000 0.000000
|
||||
0.031416 35.561946 0.107382 0.000000 0.000000
|
||||
0.094248 35.382089 0.096643 0.000000 0.000000
|
||||
0.157080 34.934827 0.107624 0.000000 0.000000
|
||||
0.219911 33.673460 0.100231 0.000000 0.000000
|
||||
0.282743 32.731563 0.096604 0.000000 0.000000
|
||||
0.345575 31.261855 0.099036 0.000000 0.000000
|
||||
0.408407 29.717377 0.107915 0.000000 0.000000
|
||||
0.471239 28.076620 0.104513 0.000001 0.000000
|
||||
0.534071 26.481097 0.103164 0.000002 0.000000
|
||||
0.596903 24.487358 0.103039 0.000003 0.000000
|
||||
0.659734 22.344251 0.100666 0.000008 0.000000
|
||||
0.722566 20.241543 0.102150 0.000018 0.000001
|
||||
0.785398 18.341869 0.101957 0.000039 0.000002
|
||||
0.848230 16.261582 0.105391 0.000091 0.000005
|
||||
0.911062 14.301801 0.107389 0.000199 0.000010
|
||||
0.973894 12.603788 0.105487 0.000394 0.000020
|
||||
1.036726 11.249601 0.106308 0.000678 0.000035
|
||||
1.099557 10.087886 0.106741 0.001079 0.000055
|
||||
1.162389 9.443303 0.106957 0.001398 0.000071
|
||||
1.225221 9.152799 0.105940 0.001570 0.000079
|
||||
1.288053 9.331937 0.105860 0.001462 0.000074
|
||||
1.350885 9.905546 0.105389 0.001161 0.000058
|
||||
1.413717 11.042050 0.105466 0.000736 0.000037
|
||||
1.476549 12.598167 0.105119 0.000395 0.000020
|
||||
1.539380 14.520167 0.104367 0.000183 0.000009
|
||||
1.602212 16.569783 0.104184 0.000080 0.000004
|
||||
1.665044 18.687390 0.104276 0.000034 0.000002
|
||||
1.727876 20.775408 0.104944 0.000015 0.000001
|
||||
1.790708 22.905200 0.101547 0.000006 0.000000
|
||||
1.853540 24.643852 0.103914 0.000003 0.000000
|
||||
1.916372 26.301740 0.101973 0.000002 0.000000
|
||||
1.979203 27.372071 0.101762 0.000001 0.000000
|
||||
2.042035 28.697726 0.105177 0.000001 0.000000
|
||||
2.104867 29.417901 0.100003 0.000000 0.000000
|
||||
2.167699 30.008351 0.100038 0.000000 0.000000
|
||||
2.230531 30.406016 0.096233 0.000000 0.000000
|
||||
2.293363 30.171275 0.096428 0.000000 0.000000
|
||||
2.356194 29.884646 0.108339 0.000000 0.000000
|
||||
2.419026 29.428153 0.106679 0.000000 0.000000
|
||||
2.481858 28.546982 0.123259 0.000001 0.000000
|
||||
2.544690 27.757520 0.108526 0.000001 0.000000
|
||||
2.607522 26.505787 0.111134 0.000001 0.000000
|
||||
2.670354 24.491866 0.095963 0.000003 0.000000
|
||||
2.733186 22.320664 0.096576 0.000008 0.000000
|
||||
2.796017 20.052723 0.098813 0.000020 0.000001
|
||||
2.858849 17.655650 0.097052 0.000052 0.000002
|
||||
2.921681 15.471590 0.100497 0.000125 0.000005
|
||||
2.984513 13.138167 0.092102 0.000318 0.000011
|
||||
3.047345 11.092386 0.081862 0.000722 0.000020
|
||||
3.110177 9.065722 0.072111 0.001626 0.000034
|
||||
10001
example/2d/wham.out
10001
example/2d/wham.out
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user