pub enum StrategyId {
Reference {
technique: Technique,
target: ReferenceTarget,
},
Canonical {
technique: Technique,
},
}Expand description
Runtime-selectable strategy identity. Reference strategies are 0-ULP
bit-exact to an external reference and remain the validation oracles;
Canonical is the single bounded-tolerance “best” model (P6). Canonical SPP,
RTK, and PPP are all wired.
Variants§
Reference
A reference-faithful strategy: 0-ULP to target for technique.
Canonical
The canonical strategy for technique (bounded-tolerance, truth-gated).
Implementations§
Source§impl StrategyId
impl StrategyId
Sourcepub const fn spp_reference() -> Self
pub const fn spp_reference() -> Self
SPP, bit-exact to Skyfield (spp::solve).
Sourcepub const fn rtk_reference() -> Self
pub const fn rtk_reference() -> Self
RTK, bit-exact to RTKLIB (rtk / rtk_filter).
Sourcepub const fn ppp_reference() -> Self
pub const fn ppp_reference() -> Self
PPP, bit-exact to the PPP oracle arc (precise_positioning).
Sourcepub const fn spp_owned_deterministic() -> Self
pub const fn spp_owned_deterministic() -> Self
SPP via the owned deterministic trust-region solver
(SolverRecipe::OwnedDeterministicTrf): the owned dense subproblem
factorization, pinned to its own frozen-bits golden (its cross-platform
bit guarantee is scoped to the factorization). Selecting this through
crate::estimation::strategies::estimate drives the owned solver
rather than the legacy nalgebra LU path.
Trait Implementations§
Source§impl Clone for StrategyId
impl Clone for StrategyId
Source§fn clone(&self) -> StrategyId
fn clone(&self) -> StrategyId
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 StrategyId
Source§impl Debug for StrategyId
impl Debug for StrategyId
Source§impl Default for StrategyId
impl Default for StrategyId
impl Eq for StrategyId
Source§impl Hash for StrategyId
impl Hash for StrategyId
Source§impl PartialEq for StrategyId
impl PartialEq for StrategyId
Source§fn eq(&self, other: &StrategyId) -> bool
fn eq(&self, other: &StrategyId) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StrategyId
Auto Trait Implementations§
impl Freeze for StrategyId
impl RefUnwindSafe for StrategyId
impl Send for StrategyId
impl Sync for StrategyId
impl Unpin for StrategyId
impl UnsafeUnpin for StrategyId
impl UnwindSafe for StrategyId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> 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.