1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use thiserror::Error;

pub type Result<T> = ::std::result::Result<T, Error>;

#[derive(Error, Debug)]
pub enum Error {
    #[error(
        "Invalid value for LAPACK subroutine {}-th argument",
        -return_code
    )]
    LapackInvalidValue { return_code: i32 },

    #[error(
        "Computational failure in LAPACK subroutine: return_code = {}",
        return_code
    )]
    LapackComputationalFailure { return_code: i32 },

    /// Strides of the array is not supported
    #[error("Invalid shape")]
    InvalidShape,
}

pub trait AsLapackResult {
    fn as_lapack_result(self) -> Result<()>;
}

impl AsLapackResult for i32 {
    fn as_lapack_result(self) -> Result<()> {
        if self > 0 {
            return Err(Error::LapackComputationalFailure { return_code: self });
        }
        if self < 0 {
            return Err(Error::LapackInvalidValue { return_code: self });
        }
        Ok(())
    }
}