pub struct F4Stats {
pub iterations: u64,
pub pairs_processed: u64,
pub matrix_reductions: u64,
pub basis_size: u64,
pub time_us: u64,
}Expand description
Statistics for F4 algorithm.
Fields§
§iterations: u64Iterations performed.
pairs_processed: u64Critical pairs processed.
matrix_reductions: u64Matrix reductions.
basis_size: u64Polynomials in final basis.
time_us: u64Time (microseconds).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for F4Stats
impl RefUnwindSafe for F4Stats
impl Send for F4Stats
impl Sync for F4Stats
impl Unpin for F4Stats
impl UnsafeUnpin for F4Stats
impl UnwindSafe for F4Stats
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