[[bench]]
harness = false
name = "optimization_benchmarks"
path = "benches/optimization_benchmarks.rs"
[dependencies.amari-core]
features = ["std", "phantom-types"]
version = "0.10"
[dependencies.amari-dual]
version = "0.10"
[dependencies.amari-gpu]
optional = true
version = "0.10"
[dependencies.amari-info-geom]
version = "0.10"
[dependencies.amari-tropical]
version = "0.10"
[dependencies.getrandom]
features = ["js"]
optional = true
version = "0.2"
[dependencies.nalgebra]
optional = true
version = "0.32"
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
features = ["getrandom"]
version = "0.8"
[dependencies.rayon]
optional = true
version = "1.8"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tokio]
features = ["full"]
version = "1.0"
[[example]]
name = "multi_objective_example"
path = "examples/multi_objective_example.rs"
[[example]]
name = "natural_gradient_example"
path = "examples/natural_gradient_example.rs"
[[example]]
name = "tropical_optimization_example"
path = "examples/tropical_optimization_example.rs"
[features]
default = ["std"]
gpu = ["dep:amari-gpu"]
linalg = ["dep:nalgebra"]
parallel = ["dep:rayon"]
serde = ["dep:serde", "amari-core/serde"]
std = ["amari-core/std"]
wasm = ["dep:getrandom"]
[lib]
name = "amari_optimization"
path = "src/lib.rs"
[package]
authors = ["Amari Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "science", "algorithms"]
description = "Geometric optimization algorithms leveraging Amari's Tropical-Dual-Clifford fusion"
edition = "2021"
homepage = "https://github.com/justinelliottcobb/Amari"
keywords = ["geometric-algebra", "optimization", "manifold", "tropical", "pareto"]
license = "MIT OR Apache-2.0"
name = "amari-optimization"
readme = "README.md"
repository = "https://github.com/justinelliottcobb/Amari"
rust-version = "1.75"
version = "0.10.0"
[[test]]
name = "basic_tests"
path = "tests/basic_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"