File tree 4 files changed +6
-8
lines changed
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
2
2
//!
3
3
//! LAPACK correspondance
4
4
//! ----------------------
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
2
2
//!
3
3
//! LAPACK correspondance
4
4
//! ----------------------
Original file line number Diff line number Diff line change 72
72
//! for solving least square problem by SVD
73
73
//!
74
74
75
- #![ deny( rustdoc:: broken_intra_doc_links) ]
75
+ #![ deny( rustdoc:: broken_intra_doc_links, rustdoc :: private_intra_doc_links ) ]
76
76
77
77
#[ cfg( any( feature = "intel-mkl-system" , feature = "intel-mkl-static" ) ) ]
78
78
extern crate intel_mkl_src as _src;
@@ -88,11 +88,11 @@ pub mod flags;
88
88
pub mod layout;
89
89
90
90
pub mod eig;
91
+ pub mod eigh;
92
+ pub mod eigh_generalized;
91
93
92
94
mod alloc;
93
95
mod cholesky;
94
- mod eigh;
95
- mod eigh_generalized;
96
96
mod least_squares;
97
97
mod opnorm;
98
98
mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105
105
mod tridiagonal;
106
106
107
107
pub use self :: cholesky:: * ;
108
- pub use self :: eigh:: * ;
109
- pub use self :: eigh_generalized:: * ;
110
108
pub use self :: flags:: * ;
111
109
pub use self :: least_squares:: * ;
112
110
pub use self :: opnorm:: * ;
Original file line number Diff line number Diff line change 44
44
clippy:: type_complexity,
45
45
clippy:: ptr_arg
46
46
) ]
47
- #![ deny( rustdoc:: broken_intra_doc_links) ]
47
+ #![ deny( rustdoc:: broken_intra_doc_links, rustdoc :: private_intra_doc_links ) ]
48
48
49
49
#[ macro_use]
50
50
extern crate ndarray;
You can’t perform that action at this time.
0 commit comments