[package]
edition = "2024"
name = "math-test-functions"
version = "0.5.0"
authors = ["Pierre F. Aubert pierre@spinorama.org"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of non linear functions for testing optimisation algorithms"
readme = "README.md"
keywords = [
"audio",
"dsp",
"eq",
]
categories = ["multimedia::audio"]
license = "GPL-3.0-or-later"
repository = "https://github.com/pierreaubert/sotf"
[features]
default = []
plotly_static = ["dep:plotly_static"]
[lib]
name = "math_audio_test_functions"
path = "src/lib.rs"
[[bin]]
name = "plot-functions"
path = "bin/plot_functions.rs"
[[example]]
name = "find_hartman_4d_min"
path = "examples/find_hartman_4d_min.rs"
[[example]]
name = "test_additional_functions"
path = "examples/test_additional_functions.rs"
[[example]]
name = "test_gramacy_lee"
path = "examples/test_gramacy_lee.rs"
[[example]]
name = "test_hartman_4d"
path = "examples/test_hartman_4d.rs"
[[example]]
name = "test_new_sfu_functions"
path = "examples/test_new_sfu_functions.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"derive",
]
[dependencies.directories]
version = "6"
[dependencies.ndarray]
version = "0.17"
features = [
"rayon",
"serde",
]
default-features = false
[dependencies.plotly]
version = "0.13"
[dependencies.plotly_static]
version = "0.1"
features = [
"chromedriver",
"webdriver_download",
"chromedriver",
"webdriver_download",
]
optional = true