pub enum PathRegime {
Target,
Annealing,
Heavy,
}Expand description
The coarse “which heavy-smoothing regime is the path currently entering at”
view the seed cascade reports against. Banded from the live path parameter
s ∈ [0, 1]: heavier regime ⇒ larger s ⇒ deeper into the contraction
basin. Every variant is a re-entry the cascade re-evaluates a seed at;
none of them is a rejection.
Variants§
Target
s near the real objective (s ≤ 1/4): the path is at or close to ρ*,
the lightest smoothing the path ever sits at. The nominal entry band
only on a fully-descended path.
Annealing
Mid-path (1/4 < s ≤ 3/4): partially annealed, intermediate smoothing.
Heavy
Heavy-smoothing entry band (s > 3/4): the deepest contraction regime,
where the joint inner solve is provably a contraction. The band a fresh
heavy_entry starts in and the band repeated demotions converge toward.
Trait Implementations§
Source§impl Clone for PathRegime
impl Clone for PathRegime
Source§fn clone(&self) -> PathRegime
fn clone(&self) -> PathRegime
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for PathRegime
Source§impl Debug for PathRegime
impl Debug for PathRegime
impl Eq for PathRegime
Source§impl PartialEq for PathRegime
impl PartialEq for PathRegime
Source§fn eq(&self, other: &PathRegime) -> bool
fn eq(&self, other: &PathRegime) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PathRegime
Auto Trait Implementations§
impl Freeze for PathRegime
impl RefUnwindSafe for PathRegime
impl Send for PathRegime
impl Sync for PathRegime
impl Unpin for PathRegime
impl UnsafeUnpin for PathRegime
impl UnwindSafe for PathRegime
Blanket Implementations§
impl<T> Allocation for T
impl<T> Boilerplate 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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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,
impl<T> Scalar for T
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.