Enum xxcalc::linear_solver::SolvingError [] [src]

pub enum SolvingError {
    NonLinear,
    NoSymbol,
    Tautology,
    NonSolvable,
}

An error that occurs during linear solving.

Variants

Provided expression is non linear (contains polynomials of degree greater than one).

Expression contains only constants (no x symbol), so there is nothing to solve.

The equation is solvable for any value of x (it is always true).

The equation cannot be solved at all (as there is no such value of x which would make the equation true).

Trait Implementations

impl Debug for SolvingError
[src]

Formats the value using the given formatter.

impl PartialEq for SolvingError
[src]

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

This method tests for !=.