From 98ae4f3818b43d7b56920c4605df96959eb98017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Thu, 25 Feb 2021 11:03:27 +0100 Subject: [PATCH] nalgebra-sparse: reexport CooMatrix, CscMatrix, and CsrMatrix at the root of the crate. --- nalgebra-sparse/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nalgebra-sparse/src/lib.rs b/nalgebra-sparse/src/lib.rs index a2783545..ebf2f842 100644 --- a/nalgebra-sparse/src/lib.rs +++ b/nalgebra-sparse/src/lib.rs @@ -155,6 +155,10 @@ use num_traits::Zero; use std::error::Error; use std::fmt; +pub use self::coo::CooMatrix; +pub use self::csc::CscMatrix; +pub use self::csr::CsrMatrix; + /// Errors produced by functions that expect well-formed sparse format data. #[derive(Debug)] pub struct SparseFormatError {