File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 6767//!
6868//! - [svd] module for singular value decomposition (SVD) for general matrix
6969//! - [svddc] module for singular value decomposition (SVD) with divided-and-conquer algorithm for general matrix
70- //! - [LeastSquaresSvdDivideConquer_] trait provides methods
71- //! for solving least square problem by SVD
70+ //! - [least_squares] module for solving least square problem using SVD
7271//!
7372
7473#![ deny( rustdoc:: broken_intra_doc_links, rustdoc:: private_intra_doc_links) ]
@@ -89,13 +88,13 @@ pub mod layout;
8988pub mod eig;
9089pub mod eigh;
9190pub mod eigh_generalized;
91+ pub mod least_squares;
9292pub mod qr;
9393pub mod svd;
9494pub mod svddc;
9595
9696mod alloc;
9797mod cholesky;
98- mod least_squares;
9998mod opnorm;
10099mod rcond;
101100mod solve;
@@ -105,7 +104,7 @@ mod tridiagonal;
105104
106105pub use self :: cholesky:: * ;
107106pub use self :: flags:: * ;
108- pub use self :: least_squares:: * ;
107+ pub use self :: least_squares:: LeastSquaresOwned ;
109108pub use self :: opnorm:: * ;
110109pub use self :: rcond:: * ;
111110pub use self :: solve:: * ;
You can’t perform that action at this time.
0 commit comments