[[bin]]
name = "solve_matrix_market"
path = "src/bin/solve_matrix_market.rs"
[[bin]]
name = "mem_check"
path = "src/bin/mem_check.rs"
[build-dependencies.cc]
version = "1.0"
[dependencies.num-traits]
version = "0.2"
[dependencies.russell_lab]
version = "1.0.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.structopt]
version = "0.3"
[dev-dependencies.serial_test]
version = "3.0"
[[example]]
name = "doc_csr_from_coo"
path = "examples/doc_csr_from_coo.rs"
[[example]]
name = "doc_csc_from_arrays"
path = "examples/doc_csc_from_arrays.rs"
[[example]]
name = "doc_umfpack_quickstart_csc"
path = "examples/doc_umfpack_quickstart_csc.rs"
[[example]]
name = "nonlinear_system_4eqs"
path = "examples/nonlinear_system_4eqs.rs"
[[example]]
name = "doc_coo_new_put_reset"
path = "examples/doc_coo_new_put_reset.rs"
[[example]]
name = "doc_csr_from_arrays"
path = "examples/doc_csr_from_arrays.rs"
[[example]]
name = "doc_umfpack_quickstart_coo"
path = "examples/doc_umfpack_quickstart_coo.rs"
[[example]]
name = "complex_system"
path = "examples/complex_system.rs"
[[example]]
name = "doc_umfpack_tiny"
path = "examples/doc_umfpack_tiny.rs"
[[example]]
name = "doc_lin_solver_compute"
path = "examples/doc_lin_solver_compute.rs"
[[example]]
name = "doc_coo_from_arrays"
path = "examples/doc_coo_from_arrays.rs"
[[example]]
name = "doc_csc_from_coo"
path = "examples/doc_csc_from_coo.rs"
[[example]]
name = "mumps_solve_small"
path = "examples/mumps_solve_small.rs"
[[example]]
name = "doc_lin_solver_umfpack_tiny"
path = "examples/doc_lin_solver_umfpack_tiny.rs"
[features]
intel_mkl = ["russell_lab/intel_mkl"]
local_suitesparse = []
with_mumps = []
[lib]
name = "russell_sparse"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
categories = ["mathematics", "science"]
description = "Solvers for large sparse linear systems (wraps MUMPS and UMFPACK)"
documentation = "https://docs.rs/russell_sparse"
edition = "2021"
homepage = "https://github.com/cpmech/russell"
keywords = ["matrix", "sparse", "solver"]
license = "MIT"
name = "russell_sparse"
readme = "README.md"
repository = "https://github.com/cpmech/russell"
version = "1.7.0"
[[test]]
name = "test_umfpack"
path = "tests/test_umfpack.rs"
[[test]]
name = "test_complex_mumps"
path = "tests/test_complex_mumps.rs"
[[test]]
name = "test_complex_coo_matrix"
path = "tests/test_complex_coo_matrix.rs"
[[test]]
name = "test_mumps"
path = "tests/test_mumps.rs"
[[test]]
name = "test_complex_umfpack"
path = "tests/test_complex_umfpack.rs"
[[test]]
name = "test_nonlinear_system"
path = "tests/test_nonlinear_system.rs"