nalgebra-sparse: reexport CooMatrix, CscMatrix, and CsrMatrix at the root of the crate.
This commit is contained in:
parent
4e4eeb2641
commit
98ae4f3818
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue