Skip to content

Commit

Permalink
Make least_squares submodule public, fix document
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 28, 2022
1 parent 6a218d3 commit d75c693
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lax/src/lib.rs
Expand Up @@ -67,8 +67,7 @@
//!
//! - [svd] module for singular value decomposition (SVD) for general matrix
//! - [svddc] module for singular value decomposition (SVD) with divided-and-conquer algorithm for general matrix
//! - [LeastSquaresSvdDivideConquer_] trait provides methods
//! for solving least square problem by SVD
//! - [least_squares] module for solving least square problem using SVD
//!

#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]
Expand All @@ -89,13 +88,13 @@ pub mod layout;
pub mod eig;
pub mod eigh;
pub mod eigh_generalized;
pub mod least_squares;
pub mod qr;
pub mod svd;
pub mod svddc;

mod alloc;
mod cholesky;
mod least_squares;
mod opnorm;
mod rcond;
mod solve;
Expand All @@ -105,7 +104,7 @@ mod tridiagonal;

pub use self::cholesky::*;
pub use self::flags::*;
pub use self::least_squares::*;
pub use self::least_squares::LeastSquaresOwned;
pub use self::opnorm::*;
pub use self::rcond::*;
pub use self::solve::*;
Expand Down

0 comments on commit d75c693

Please sign in to comment.