[dependencies.amari-core]
version = "0.15.1"
[dependencies.amari-dual]
version = "0.15.1"
[dependencies.amari-tropical]
version = "0.15.1"
[dependencies.creusot-contracts]
optional = true
version = "0.6"
[dependencies.nalgebra]
version = "0.32"
[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"
[[example]]
name = "basic_network"
path = "examples/basic_network.rs"
[[example]]
name = "community_detection"
path = "examples/community_detection.rs"
[[example]]
name = "geometric_analysis"
path = "examples/geometric_analysis.rs"
[[example]]
name = "information_diffusion"
path = "examples/information_diffusion.rs"
[[example]]
name = "tropical_pathfinding"
path = "examples/tropical_pathfinding.rs"
[features]
contracts = ["formal-verification"]
default = ["std"]
formal-verification = ["creusot-contracts", "phantom-types"]
high-precision = ["amari-core/high-precision", "amari-tropical/high-precision", "amari-dual/high-precision"]
native-precision = ["amari-core/native-precision", "amari-tropical/native-precision", "amari-dual/native-precision"]
phantom-types = []
serde = ["dep:serde", "amari-core/serde", "amari-tropical/serde"]
std = []
wasm-precision = ["amari-core/wasm-precision", "amari-tropical/wasm-precision", "amari-dual/wasm-precision"]
[lib]
name = "amari_network"
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 network analysis using Clifford algebra and tropical algebra"
edition = "2021"
homepage = "https://github.com/justinelliottcobb/Amari"
keywords = ["network-analysis", "graph-theory", "geometric-algebra", "tropical-algebra", "clifford"]
license = "MIT OR Apache-2.0"
name = "amari-network"
readme = "README.md"
repository = "https://github.com/justinelliottcobb/Amari"
version = "0.15.1"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "phantom_types"
path = "tests/phantom_types.rs"