Skip to content

Commit

Permalink
Make eigh and eigh_generalized sub-modules public, update documents
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 25, 2022
1 parent 8c4aae3 commit 28be9bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lax/src/eigh.rs
@@ -1,4 +1,4 @@
//! Eigenvalue problem for symmetric/Hermite matricies
//! Eigenvalue problem for symmetric/Hermitian matricies
//!
//! LAPACK correspondance
//! ----------------------
Expand Down
2 changes: 1 addition & 1 deletion lax/src/eigh_generalized.rs
@@ -1,4 +1,4 @@
//! Compute generalized right eigenvalue and eigenvectors
//! Generalized eigenvalue problem for symmetric/Hermitian matrices
//!
//! LAPACK correspondance
//! ----------------------
Expand Down
6 changes: 2 additions & 4 deletions lax/src/lib.rs
Expand Up @@ -88,11 +88,11 @@ pub mod flags;
pub mod layout;

pub mod eig;
pub mod eigh;
pub mod eigh_generalized;

mod alloc;
mod cholesky;
mod eigh;
mod eigh_generalized;
mod least_squares;
mod opnorm;
mod qr;
Expand All @@ -105,8 +105,6 @@ mod triangular;
mod tridiagonal;

pub use self::cholesky::*;
pub use self::eigh::*;
pub use self::eigh_generalized::*;
pub use self::flags::*;
pub use self::least_squares::*;
pub use self::opnorm::*;
Expand Down

0 comments on commit 28be9bb

Please sign in to comment.