Skip to content

Commit 28be9bb

Browse files
committed
Make eigh and eigh_generalized sub-modules public, update documents
1 parent 8c4aae3 commit 28be9bb

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

lax/src/eigh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Eigenvalue problem for symmetric/Hermite matricies
1+
//! Eigenvalue problem for symmetric/Hermitian matricies
22
//!
33
//! LAPACK correspondance
44
//! ----------------------

lax/src/eigh_generalized.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Compute generalized right eigenvalue and eigenvectors
1+
//! Generalized eigenvalue problem for symmetric/Hermitian matrices
22
//!
33
//! LAPACK correspondance
44
//! ----------------------

lax/src/lib.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ pub mod flags;
8888
pub mod layout;
8989

9090
pub mod eig;
91+
pub mod eigh;
92+
pub mod eigh_generalized;
9193

9294
mod alloc;
9395
mod cholesky;
94-
mod eigh;
95-
mod eigh_generalized;
9696
mod least_squares;
9797
mod opnorm;
9898
mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105105
mod tridiagonal;
106106

107107
pub use self::cholesky::*;
108-
pub use self::eigh::*;
109-
pub use self::eigh_generalized::*;
110108
pub use self::flags::*;
111109
pub use self::least_squares::*;
112110
pub use self::opnorm::*;

0 commit comments

Comments
 (0)