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),
}