Skip to content

Commit

Permalink
Rename coo_matrix file
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Sep 19, 2023
1 parent 3815a4f commit 3e6048c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions russell_sparse/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,18 @@
pub type StrError = &'static str;

mod config_solver;
mod coo_matrix;
mod enums;
pub mod prelude;
mod read_matrix_market;
mod solver;
mod sparse_triplet;
mod verify_lin_sys;
mod write_matrix_market;
pub use crate::config_solver::*;
pub use crate::coo_matrix::*;
pub use crate::enums::*;
pub use crate::read_matrix_market::*;
pub use crate::solver::*;
pub use crate::sparse_triplet::*;
pub use crate::verify_lin_sys::*;
pub use crate::write_matrix_market::*;

Expand Down
2 changes: 1 addition & 1 deletion russell_sparse/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
//! access to commonly used functionality.
pub use crate::config_solver::ConfigSolver;
pub use crate::coo_matrix::CooMatrix;
pub use crate::solver::Solver;
pub use crate::sparse_triplet::CooMatrix;

0 comments on commit 3e6048c

Please sign in to comment.