Enum linxal::factorization::cholesky::CholeskyError [] [src]

pub enum CholeskyError {
    BadLayout,
    NotSquare,
    NotPositiveDefinite,
    IllegalParameter(i32),
}

Error for Cholesky-based computations.

Variants

The layout of the matrix is not compatible

The matrix is not square.

The matrix is not positive definite.

Implementation error, please submit as bug.

Trait Implementations

impl Debug for CholeskyError
[src]

Formats the value using the given formatter.

impl Clone for CholeskyError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CholeskyError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CholeskyError
[src]