Skip to content

Commit e555ae7

Browse files
committed
Rename impl2 -> lapack_traits
1 parent f002e8e commit e555ae7

File tree

17 files changed

+14
-14
lines changed

17 files changed

+14
-14
lines changed

src/cholesky.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ use super::error::*;
66
use super::layout::*;
77
use super::triangular::IntoTriangular;
88

9-
use impl2::LapackScalar;
10-
pub use impl2::UPLO;
9+
use lapack_traits::LapackScalar;
10+
pub use lapack_traits::UPLO;
1111

1212
pub trait Cholesky<K> {
1313
fn cholesky(self, UPLO) -> Result<K>;

src/eigh.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use ndarray::*;
44
use super::error::*;
55
use super::layout::*;
66

7-
use impl2::LapackScalar;
8-
pub use impl2::UPLO;
7+
use lapack_traits::LapackScalar;
8+
pub use lapack_traits::UPLO;
99

1010
pub trait Eigh<EigVal, EigVec> {
1111
fn eigh(self, UPLO) -> Result<(EigVal, EigVec)>;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)