pub enum IssueCode {
DependenceHigh,
PrecisionLow,
DiscreteMode,
ThresholdIssue,
FilteringApplied,
StationarityIssue,
NumericalIssue,
LikelihoodInflated,
}Expand description
Issue codes for programmatic handling of quality problems.
Consolidated to 8 categories per spec §6.1 (v6.0).
Variants§
DependenceHigh
High temporal dependence reduces effective sample size.
Covers: high autocorrelation, low effective sample size. The block bootstrap accounts for this, but it means more samples were needed to reach the same confidence level.
PrecisionLow
Low measurement precision due to setup issues.
Covers: small sample count for discrete mode, generator cost asymmetry, low entropy in random inputs. These affect measurement quality but results are still valid.
DiscreteMode
Timer has low resolution, using discrete mode.
The timer resolution is coarse enough that many samples have identical values. The bootstrap handles this, but sensitivity is reduced.
ThresholdIssue
Threshold was adjusted due to measurement limitations.
Covers: threshold elevated due to measurement floor, threshold clamped to timer resolution. The effective threshold may differ from the user-requested threshold.
FilteringApplied
Outlier filtering was applied to the data.
Covers: high winsorization rate, quantiles filtered from analysis. Some data points were trimmed as outliers. This is normal but excessive filtering may indicate environmental issues.
StationarityIssue
Stationarity of timing distribution is suspect.
The timing distribution may have changed during measurement, violating the i.i.d. assumption. This can occur due to CPU frequency scaling, thermal throttling, or concurrent processes.
NumericalIssue
Numerical issues in Gibbs sampler.
Covers: lambda chain poor mixing, kappa chain poor mixing. The MCMC chains showed poor convergence (CV < 0.1 or ESS < 20). Results may be less reliable.
LikelihoodInflated
Likelihood covariance was inflated for robustness.
The robust t-likelihood inflated covariance by ~1/κ_mean to accommodate data that doesn’t match the estimated Σₙ. Effect estimates remain valid but uncertainty was increased for robustness (kappa_mean < 0.3).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IssueCode
impl<'de> Deserialize<'de> for IssueCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Copy for IssueCode
impl Eq for IssueCode
impl StructuralPartialEq for IssueCode
Auto Trait Implementations§
impl Freeze for IssueCode
impl RefUnwindSafe for IssueCode
impl Send for IssueCode
impl Sync for IssueCode
impl Unpin for IssueCode
impl UnwindSafe for IssueCode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.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.