pub struct SubpolyVerification {
pub fitted_exponent: f64,
pub is_subquadratic: bool,
pub r_squared: f64,
}Expand description
Result of a statistical test for subpolynomial scaling.
Fields§
§fitted_exponent: f64Fitted exponent alpha in T ~ d^alpha.
is_subquadratic: boolWhether alpha < 2.0 (subquadratic).
r_squared: f64R-squared of the power-law fit.
Trait Implementations§
Source§impl Clone for SubpolyVerification
impl Clone for SubpolyVerification
Source§fn clone(&self) -> SubpolyVerification
fn clone(&self) -> SubpolyVerification
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 SubpolyVerification
impl RefUnwindSafe for SubpolyVerification
impl Send for SubpolyVerification
impl Sync for SubpolyVerification
impl Unpin for SubpolyVerification
impl UnsafeUnpin for SubpolyVerification
impl UnwindSafe for SubpolyVerification
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