File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1- //! Eigenvalue problem for symmetric/Hermite matricies
1+ //! Eigenvalue problem for symmetric/Hermitian matricies
22//!
33//! LAPACK correspondance
44//! ----------------------
Original file line number Diff line number Diff line change 1- //! Compute generalized right eigenvalue and eigenvectors
1+ //! Generalized eigenvalue problem for symmetric/Hermitian matrices
22//!
33//! LAPACK correspondance
44//! ----------------------
Original file line number Diff line number Diff line change 7272//! for solving least square problem by SVD
7373//!
7474
75- #![ deny( rustdoc:: broken_intra_doc_links) ]
75+ #![ deny( rustdoc:: broken_intra_doc_links, rustdoc :: private_intra_doc_links ) ]
7676
7777#[ cfg( any( feature = "intel-mkl-system" , feature = "intel-mkl-static" ) ) ]
7878extern crate intel_mkl_src as _src;
@@ -88,11 +88,11 @@ pub mod flags;
8888pub mod layout;
8989
9090pub mod eig;
91+ pub mod eigh;
92+ pub mod eigh_generalized;
9193
9294mod alloc;
9395mod cholesky;
94- mod eigh;
95- mod eigh_generalized;
9696mod least_squares;
9797mod opnorm;
9898mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105105mod tridiagonal;
106106
107107pub use self :: cholesky:: * ;
108- pub use self :: eigh:: * ;
109- pub use self :: eigh_generalized:: * ;
110108pub use self :: flags:: * ;
111109pub use self :: least_squares:: * ;
112110pub use self :: opnorm:: * ;
Original file line number Diff line number Diff line change 4444 clippy:: type_complexity,
4545 clippy:: ptr_arg
4646) ]
47- #![ deny( rustdoc:: broken_intra_doc_links) ]
47+ #![ deny( rustdoc:: broken_intra_doc_links, rustdoc :: private_intra_doc_links ) ]
4848
4949#[ macro_use]
5050extern crate ndarray;
You can’t perform that action at this time.
0 commit comments