[package]
edition = "2021"
name = "feral-amd"
version = "0.2.1"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Approximate Minimum Degree (AMD) fill-reducing ordering, quotient-graph algorithm (Amestoy, Davis & Duff 1996, 2004). Pure Rust, standalone."
homepage = "https://github.com/jkitchin/feral"
readme = "README.md"
keywords = [
"sparse",
"ordering",
"amd",
"fill-reducing",
"linear-algebra",
]
categories = [
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/jkitchin/feral"
[lib]
name = "feral_amd"
path = "src/lib.rs"
[[bin]]
name = "feral-amd"
path = "src/bin/feral-amd.rs"
[[bin]]
name = "feral-amd-bench"
path = "src/bin/feral-amd-bench.rs"
[[test]]
name = "oracle_match"
path = "tests/oracle_match.rs"
[dependencies.feral-ordering-core]
version = "0.2"
[dev-dependencies]