Skip to content

Commit 7e51ce6

Browse files
committed
Revert "Impl solve"
This reverts commit 06d6f76.
1 parent e9d7451 commit 7e51ce6

File tree

2 files changed

+0
-69
lines changed

2 files changed

+0
-69
lines changed

src/impl2/mod.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,10 @@
22
pub mod opnorm;
33
pub mod qr;
44
pub mod svd;
5-
pub mod solve;
65

76
pub use self::opnorm::*;
87
pub use self::qr::*;
98
pub use self::svd::*;
10-
pub use self::solve::*;
11-
12-
use super::error::*;
139

1410
pub trait LapackScalar: OperatorNorm_ + QR_ + SVD_ {}
1511
impl<A> LapackScalar for A where A: OperatorNorm_ + QR_ + SVD_ {}
16-
17-
pub fn into_result<T>(info: i32, val: T) -> Result<T> {
18-
if info == 0 {
19-
Ok(val)
20-
} else {
21-
Err(LapackError::new(info).into())
22-
}
23-
}

src/impl2/solve.rs

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)