[package]
edition = "2024"
name = "probabilistic_bisector"
version = "0.2.0"
authors = ["Christopher Gubbin <chris.gubbin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "bisection for one-dimensional functions in the presence of noise"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cgubbin/probabalistic_bisector"
[lib]
name = "probabilistic_bisector"
path = "src/lib.rs"
[[example]]
name = "binomial_simulation"
path = "examples/binomial_simulation.rs"
[[example]]
name = "gaussian_linear"
path = "examples/gaussian_linear.rs"
[[example]]
name = "stochastic_logistic"
path = "examples/stochastic_logistic.rs"
[[test]]
name = "alternating"
path = "tests/alternating.rs"
[[test]]
name = "deterministic"
path = "tests/deterministic.rs"
[[test]]
name = "heteroscedastic"
path = "tests/heteroscedastic.rs"
[[test]]
name = "logistic"
path = "tests/logistic.rs"
[dependencies.confi]
version = "0.2"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1.41"
[dependencies.trellis-runner]
version = "0.4"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.rand]
version = "0.10.1"
[dev-dependencies.rand_distr]
version = "0.6.0"