[package]
edition = "2024"
name = "oxiz-math"
version = "0.2.2"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mathematical foundations for OxiZ SMT solver"
readme = "README.md"
keywords = [
"smt",
"math",
"simplex",
"polynomial",
"algebra",
]
categories = [
"algorithms",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiz"
resolver = "2"
[features]
default = ["std"]
simd = []
std = [
"num-rational/std",
"num-bigint/std",
"num-traits/std",
"num-integer/std",
"thiserror/std",
"rustc-hash/std",
"rand",
]
[lib]
name = "oxiz_math"
path = "src/lib.rs"
[[example]]
name = "01_linear_programming"
path = "examples/01_linear_programming.rs"
[[example]]
name = "02_polynomial_operations"
path = "examples/02_polynomial_operations.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "property_based"
path = "tests/property_based.rs"
[[test]]
name = "property_based_extended"
path = "tests/property_based_extended.rs"
[[bench]]
name = "math_benchmarks"
path = "benches/math_benchmarks.rs"
harness = false
[dependencies.hashbrown]
version = "0.17"
[dependencies.num-bigint]
version = "0.4"
default-features = false
[dependencies.num-integer]
version = "0.1"
default-features = false
[dependencies.num-rational]
version = "0.4"
features = ["num-bigint"]
default-features = false
[dependencies.num-traits]
version = "0.2"
default-features = false
[dependencies.rand]
version = "0.10"
optional = true
[dependencies.rustc-hash]
version = "2.1"
default-features = false
[dependencies.smallvec]
version = "1.15"
features = [
"serde",
"union",
]
[dependencies.thiserror]
version = "2.0"
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.11"