pub struct Iteration {
pub score: f64,
pub range: RangeInclusive<f64>,
pub granularity: f64,
pub converged: bool,
/* private fields */
}Expand description
The result of an iteration of the TFM-PVALUE algorithm.
Fields§
§score: f64The score computed for the current iteration, or the query score if approximating p-value.
range: RangeInclusive<f64>The p-value range for the current iteration.
granularity: f64The granularity with which scores and p-values were computed.
converged: boolA flag to mark whether the approximation converged on this iteration.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Iteration
impl RefUnwindSafe for Iteration
impl Send for Iteration
impl Sync for Iteration
impl Unpin for Iteration
impl UnwindSafe for Iteration
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