Skip to main content

HyperCoordPairResult

Type Alias HyperCoordPairResult 

Source
pub type HyperCoordPairResult = Result<HyperCoordPair, String>;
Expand description

Fallible result of computing one second-order fixed-β coordinate pair.

Pair assembly may call an immutable family workspace whose shape and numerical validation are deliberately error-capable. Keeping that failure in the callback contract lets dense and operator Hessian consumers stop with the original evidence instead of converting it into a panic.

Aliased Type§

pub enum HyperCoordPairResult {
    Ok(HyperCoordPair),
    Err(String),
}

Variants§

§1.0.0

Ok(HyperCoordPair)

Contains the success value

§1.0.0

Err(String)

Contains the error value