Enum nexsys_core::mvcalc::SolverResult
source · pub enum SolverResult<T> {
Ok(T),
Warn(T),
Err,
}Expand description
A result from the Newton-Raphson Solver that can be valid, valid with warnings, or erroneous.
pub enum SolverResult<T> {
Ok(T),
Warn(T),
Err,
}A result from the Newton-Raphson Solver that can be valid, valid with warnings, or erroneous.