pub struct ApproximateVerification {
pub epsilon: f64,
pub delta: f64,
pub verified_property: String,
pub confidence: f64,
}Fields§
§epsilon: f64§delta: f64§verified_property: String§confidence: f64Implementations§
Source§impl ApproximateVerification
impl ApproximateVerification
pub fn pac_verification(eps: f64, delta: f64, prop: &str) -> Self
pub fn sample_complexity(&self) -> usize
pub fn soundness_statement(&self) -> String
Trait Implementations§
Source§impl Clone for ApproximateVerification
impl Clone for ApproximateVerification
Source§fn clone(&self) -> ApproximateVerification
fn clone(&self) -> ApproximateVerification
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 ApproximateVerification
impl RefUnwindSafe for ApproximateVerification
impl Send for ApproximateVerification
impl Sync for ApproximateVerification
impl Unpin for ApproximateVerification
impl UnsafeUnpin for ApproximateVerification
impl UnwindSafe for ApproximateVerification
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