[[bin]]
name = "benchmark_convergence"
path = "bench/benchmark_convergence.rs"
[[bin]]
name = "plot_autoeq_de"
path = "bin/plot_autoeq_de.rs"
[[bin]]
name = "run-autoeq-de"
path = "bin/run_autoeq_de.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.csv]
version = "1.4"
[dependencies.directories]
version = "5"
[dependencies.math-test-functions]
version = "0.2"
[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.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.tempfile]
version = "3.23"
[[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 = "autoeq_de"
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/sotf"
version = "0.2.53"
[target.'cfg(all(any(target_os = "ios", target_os="ios_sim"), target_arch = "aarch64"))'.dependencies.accelerate-src]
version = "0.3"
[target.'cfg(all(any(target_os = "ios", target_os="ios_sim"), target_arch = "aarch64"))'.dependencies.blas-src]
features = ["accelerate"]
version = "0.14"
[target.'cfg(all(any(target_os = "ios", target_os="ios_sim"), target_arch = "aarch64"))'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"
[target.'cfg(all(target_os = "linux", target_arch="aarch64"))'.dependencies.blas-src]
features = ["openblas"]
version = "0.14"
[target.'cfg(all(target_os = "linux", target_arch="aarch64"))'.dependencies.openblas-src]
features = ["cblas", "system"]
version = "0.10"
[target.'cfg(all(target_os = "linux", target_arch="aarch64"))'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"
[target.'cfg(all(target_os = "linux", target_arch="aarch64", target_env="musl"))'.dependencies.blas-src]
features = ["openblas"]
version = "0.14"
[target.'cfg(all(target_os = "linux", target_arch="aarch64", target_env="musl"))'.dependencies.openblas-src]
features = ["cblas", "static"]
version = "0.10"
[target.'cfg(all(target_os = "linux", target_arch="aarch64", target_env="musl"))'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"
[target.'cfg(all(target_os = "linux", target_arch="x86_64"))'.dependencies.blas-src]
features = ["openblas"]
version = "0.14"
[target.'cfg(all(target_os = "linux", target_arch="x86_64"))'.dependencies.openblas-src]
features = ["cblas", "system"]
version = "0.10"
[target.'cfg(all(target_os = "linux", target_arch="x86_64"))'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"
[target.'cfg(all(target_os = "linux", target_arch="x86_64", target_env="musl"))'.dependencies.blas-src]
features = ["openblas"]
version = "0.14"
[target.'cfg(all(target_os = "linux", target_arch="x86_64", target_env="musl"))'.dependencies.openblas-src]
features = ["cblas", "static"]
version = "0.10"
[target.'cfg(all(target_os = "linux", target_arch="x86_64", target_env="musl"))'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"
[target.'cfg(all(target_os = "windows", target_arch="aarch64"))'.dependencies.blas-src]
features = ["openblas"]
version = "0.14"
[target.'cfg(all(target_os = "windows", target_arch="aarch64"))'.dependencies.openblas-src]
features = ["cblas", "system"]
version = "0.10"
[target.'cfg(all(target_os = "windows", target_arch="x86_64"))'.dependencies.blas-src]
features = ["intel-mkl-dynamic-parallel"]
version = "0.14"
[target.'cfg(all(target_os = "windows", target_arch="x86_64"))'.dependencies.intel-mkl-src]
version = "0.8.1"
[target.'cfg(target_os = "macos")'.dependencies.accelerate-src]
version = "0.3"
[target.'cfg(target_os = "macos")'.dependencies.blas-src]
features = ["accelerate"]
version = "0.14"
[target.'cfg(target_os = "macos")'.dependencies.signal-hook-tokio]
features = ["futures-v0_3"]
version = "0.3"