pub struct AccuracyVerifier { /* private fields */ }Expand description
Mathematical accuracy verification system
Ensures all mathematical properties, formulas, and constants meet research-grade accuracy standards as found in authoritative sources.
Implementations§
Source§impl AccuracyVerifier
impl AccuracyVerifier
Sourcepub fn verify_accuracy(
&self,
function_class: &str,
computed: f64,
expected: f64,
) -> bool
pub fn verify_accuracy( &self, function_class: &str, computed: f64, expected: f64, ) -> bool
Verify mathematical accuracy of a function evaluation
Returns true if the evaluation meets research-grade accuracy standards
Sourcepub fn get_verified_constant(&self, name: &str) -> Option<&VerifiedConstant>
pub fn get_verified_constant(&self, name: &str) -> Option<&VerifiedConstant>
Get verified constant by name
Sourcepub fn get_verified_relationship(
&self,
name: &str,
) -> Option<&VerifiedRelationship>
pub fn get_verified_relationship( &self, name: &str, ) -> Option<&VerifiedRelationship>
Get verified relationship by name
Sourcepub fn generate_accuracy_report(&self) -> String
pub fn generate_accuracy_report(&self) -> String
Generate accuracy report for all verified constants and relationships
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AccuracyVerifier
impl RefUnwindSafe for AccuracyVerifier
impl Send for AccuracyVerifier
impl Sync for AccuracyVerifier
impl Unpin for AccuracyVerifier
impl UnwindSafe for AccuracyVerifier
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> 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