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 67
67
//!
68
68
//! - [svd] module for singular value decomposition (SVD) for general matrix
69
69
//! - [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
72
71
//!
73
72
74
73
#![ deny( rustdoc:: broken_intra_doc_links, rustdoc:: private_intra_doc_links) ]
@@ -89,13 +88,13 @@ pub mod layout;
89
88
pub mod eig;
90
89
pub mod eigh;
91
90
pub mod eigh_generalized;
91
+ pub mod least_squares;
92
92
pub mod qr;
93
93
pub mod svd;
94
94
pub mod svddc;
95
95
96
96
mod alloc;
97
97
mod cholesky;
98
- mod least_squares;
99
98
mod opnorm;
100
99
mod rcond;
101
100
mod solve;
@@ -105,7 +104,7 @@ mod tridiagonal;
105
104
106
105
pub use self :: cholesky:: * ;
107
106
pub use self :: flags:: * ;
108
- pub use self :: least_squares:: * ;
107
+ pub use self :: least_squares:: LeastSquaresOwned ;
109
108
pub use self :: opnorm:: * ;
110
109
pub use self :: rcond:: * ;
111
110
pub use self :: solve:: * ;
You can’t perform that action at this time.
0 commit comments