pub struct ClosureSelection<FitHandle> {
pub ci: ClosureProfileCi,
pub representative: ClosureProfilePoint<FitHandle>,
pub route_to_mixture_rung: bool,
}Expand description
The result of profiling the closure parameter inside the smooth class.
The headline is gamma_hat with its profile-likelihood CI (a regular Wilks
interval when the optimum is interior; one-sided when it touches a boundary).
representative is the γ̂ fit, scored on the SAME TK evidence surface the
discrete race uses, so this single smooth-class entry competes directly with
the non-homotopic candidates (mixture/union) the discrete race retains: the
closure family absorbs the within-smooth-class circle/line grid, it does not
replace the cross-class race.
Fields§
§ci: ClosureProfileCi§representative: ClosureProfilePoint<FitHandle>§route_to_mixture_rung: boolTrue when the profile pinned γ at the singular cluster boundary — the “not a regular smooth 1-D topology” signal that must be routed to the #907 mixture/union rung rather than reported as a regular closure.
Trait Implementations§
Source§impl<FitHandle: Clone> Clone for ClosureSelection<FitHandle>
impl<FitHandle: Clone> Clone for ClosureSelection<FitHandle>
Source§fn clone(&self) -> ClosureSelection<FitHandle>
fn clone(&self) -> ClosureSelection<FitHandle>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl<FitHandle> Freeze for ClosureSelection<FitHandle>where
FitHandle: Freeze,
impl<FitHandle> RefUnwindSafe for ClosureSelection<FitHandle>where
FitHandle: RefUnwindSafe,
impl<FitHandle> Send for ClosureSelection<FitHandle>where
FitHandle: Send,
impl<FitHandle> Sync for ClosureSelection<FitHandle>where
FitHandle: Sync,
impl<FitHandle> Unpin for ClosureSelection<FitHandle>where
FitHandle: Unpin,
impl<FitHandle> UnsafeUnpin for ClosureSelection<FitHandle>where
FitHandle: UnsafeUnpin,
impl<FitHandle> UnwindSafe for ClosureSelection<FitHandle>where
FitHandle: UnwindSafe,
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.