pub struct ValidationResult {
pub method_name: String,
pub empirical_errors: Vec<f64>,
pub theoretical_bounds: Vec<f64>,
pub bound_violations: usize,
pub bound_tightness: f64,
pub convergence_rate: Option<f64>,
pub stability_analysis: StabilityAnalysis,
pub sample_complexity: SampleComplexityAnalysis,
pub dimension_dependency: DimensionDependencyAnalysis,
}Expand description
Result of validation analysis ValidationResult
Fields§
§method_name: Stringmethod_name
empirical_errors: Vec<f64>empirical_errors
theoretical_bounds: Vec<f64>theoretical_bounds
bound_violations: usizebound_violations
bound_tightness: f64bound_tightness
convergence_rate: Option<f64>convergence_rate
stability_analysis: StabilityAnalysisstability_analysis
sample_complexity: SampleComplexityAnalysissample_complexity
dimension_dependency: DimensionDependencyAnalysisdimension_dependency
Trait Implementations§
Source§impl Clone for ValidationResult
impl Clone for ValidationResult
Source§fn clone(&self) -> ValidationResult
fn clone(&self) -> ValidationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ValidationResult
impl RefUnwindSafe for ValidationResult
impl Send for ValidationResult
impl Sync for ValidationResult
impl Unpin for ValidationResult
impl UnwindSafe for ValidationResult
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<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>
Converts
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>
Converts
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 more