pub struct GeodesicCertificate<F> {
pub bound_asserted: bool,
pub search_exhaustive: bool,
pub straightening_result: StraighteningResult<F>,
}Expand description
Evidence describing whether a returned Geodesic is globally minimal.
Each field records one logically independent obligation of the
branch-and-bound search. GeodesicCertificate::is_global is true exactly
when all three obligations are satisfied.
Fieldsยง
ยงbound_asserted: boolAn overestimation_bound was asserted. Without one, the ceiling is
graph_opt and exactly one basin is inspected. Fix: assert a bound.
search_exhaustive: boolThe search terminated by clearing its ceiling, not by exhausting
max_candidate_paths or the frontier. Fix: raise the caps.
straightening_result: StraighteningResult<F>Every candidate examined straightened. A failure here is the rescue
budget running out โ 2ฯ reaching for the injectivity radius.
Fix: raise max_rescues.
Implementationsยง
Trait Implementationsยง
Sourceยงimpl<F: Clone> Clone for GeodesicCertificate<F>
impl<F: Clone> Clone for GeodesicCertificate<F>
Sourceยงfn clone(&self) -> GeodesicCertificate<F>
fn clone(&self) -> GeodesicCertificate<F>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<F: Copy> Copy for GeodesicCertificate<F>
Sourceยงimpl<F: Debug> Debug for GeodesicCertificate<F>
impl<F: Debug> Debug for GeodesicCertificate<F>
impl<F: Eq> Eq for GeodesicCertificate<F>
Sourceยงimpl<F: PartialEq> PartialEq for GeodesicCertificate<F>
impl<F: PartialEq> PartialEq for GeodesicCertificate<F>
impl<F: PartialEq> StructuralPartialEq for GeodesicCertificate<F>
Auto Trait Implementationsยง
impl<F> Freeze for GeodesicCertificate<F>where
StraighteningResult<F>: Freeze,
impl<F> RefUnwindSafe for GeodesicCertificate<F>where
StraighteningResult<F>: RefUnwindSafe,
impl<F> Send for GeodesicCertificate<F>where
StraighteningResult<F>: Send,
impl<F> Sync for GeodesicCertificate<F>where
StraighteningResult<F>: Sync,
impl<F> Unpin for GeodesicCertificate<F>where
StraighteningResult<F>: Unpin,
impl<F> UnsafeUnpin for GeodesicCertificate<F>where
StraighteningResult<F>: UnsafeUnpin,
impl<F> UnwindSafe for GeodesicCertificate<F>where
StraighteningResult<F>: UnwindSafe,
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<๐, X> Equivalent<๐, X> for Xwhere
๐: Cat,
impl<๐, X> Equivalent<๐, X> for Xwhere
๐: Cat,
Sourceยงimpl<T> OptionallyOption<T> for T
impl<T> OptionallyOption<T> for T
Sourceยงfn into_option(self) -> Option<T>
fn into_option(self) -> Option<T>
Converts either permitted representation into
Option<T>. Read more