Enum rgsl::Value [] [src]

#[repr(C)]
pub enum Value { Success, Failure, Continue, Domain, Range, Fault, Invalid, Failed, Factorization, Sanity, NoMemory, BadFunction, RunAway, MaxIteration, ZeroDiv, BadTolerance, Tolerance, UnderFlow, OverFlow, Loss, Round, BadLength, NotSquare, Singularity, Diverge, Unsupported, Unimplemented, Cache, Table, NoProgress, NoProgressJacobian, ToleranceF, ToleranceX, ToleranceG, EOF, }

Variants

iteration has not converged

input domain error, e.g sqrt(-1)

output range error, e.g. exp(1e100)

invalid pointer

invalid argument supplied by user

generic failure

factorization failed

sanity check failed - shouldn't happen

malloc failed

problem with user-supplied function

iterative process is out of control

exceeded max number of iterations

tried to divide by zero

user specified an invalid tolerance

failed to reach the specified tolerance

underflow

overflow

loss of accuracy

failed because of roundoff error

matrix, vector lengths are not conformant

matrix not square

apparent singularity detected

integral or series is divergent

requested feature is not supported by the hardware

requested feature not (yet) implemented

cache limit exceeded

table limit exceeded

iteration is not making progress towards solution

jacobian evaluations are not improving the solution

cannot reach the specified tolerance in F

cannot reach the specified tolerance in X

cannot reach the specified tolerance in gradient

cannot reach the specified tolerance in gradient

Methods

impl Value
[src]

Trait Implementations

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Value
[src]

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

This method tests for !=.

impl PartialOrd for Value
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for Value
[src]

Formats the value using the given formatter.

impl Copy for Value
[src]