feral-amd 0.2.1

Approximate Minimum Degree (AMD) fill-reducing ordering, quotient-graph algorithm (Amestoy, Davis & Duff 1996, 2004). Pure Rust, standalone.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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]