math-differential-evolution 0.3.1

Non linear optimisation library with own DE solvers and interface to NLOpt and MetaHeuristics
Documentation
[[bin]]
name = "benchmark_convergence"
path = "bench/benchmark_convergence.rs"

[[bin]]
name = "plot_de"
path = "bin/plot_de.rs"

[[bin]]
name = "run-de"
path = "bin/run_de.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.directories]
version = "5"

[dependencies.math-test-functions]
default-features = false
version = "0.3"

[dependencies.ndarray]
default-features = false
features = ["rayon", "blas", "serde"]
version = "0.17"

[dependencies.nlopt]
optional = true
version = "0.8.1"

[dependencies.plotly]
version = "0.13.5"

[dependencies.plotly_static]
optional = true
version = "0.1"

[dependencies.rand]
version = "0.9.2"

[dependencies.rayon]
version = "1.11"

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies]

[[example]]
name = "optde_adaptive_demo"
path = "examples/optde_adaptive_demo.rs"

[[example]]
name = "optde_basic"
path = "examples/optde_basic.rs"

[[example]]
name = "optde_linear_constraints"
path = "examples/optde_linear_constraints.rs"

[[example]]
name = "optde_nonlinear_constraints"
path = "examples/optde_nonlinear_constraints.rs"

[[example]]
name = "optde_parallel"
path = "examples/optde_parallel.rs"

[features]
default = ["nlopt"]
nlopt = ["dep:nlopt"]
plotly_static = ["dep:plotly_static"]

[lib]
name = "math_audio_differential_evolution"
path = "src/mod.rs"

[package]
authors = ["Pierre F. Aubert pierre@spinorama.org"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "Non linear optimisation library with own DE solvers and interface to NLOpt and MetaHeuristics"
edition = "2024"
license = "GPL-3.0-or-later"
name = "math-differential-evolution"
readme = "README.md"
repository = "https://github.com/pierreaubert/math-audio"
version = "0.3.1"

[target.'cfg(all(any(target_os = "ios", target_os="ios_sim"), target_arch = "aarch64"))'.dependencies]

[target.'cfg(all(target_os = "linux", target_arch="aarch64"))'.dependencies]

[target.'cfg(all(target_os = "linux", target_arch="aarch64", target_env="musl"))'.dependencies]

[target.'cfg(all(target_os = "linux", target_arch="x86_64"))'.dependencies]

[target.'cfg(all(target_os = "linux", target_arch="x86_64", target_env="musl"))'.dependencies]

[target.'cfg(all(target_os = "windows", target_arch="aarch64"))'.dependencies]

[target.'cfg(all(target_os = "windows", target_arch="x86_64"))'.dependencies]

[target.'cfg(target_os = "macos")'.dependencies]