pub struct ConfigGrid {
pub cells: [ConfigCell; 27],
pub nominal_idx: usize,
pub best_f_idx: usize,
}Expand description
Full W × K × τ configuration grid: 3 × 3 × 3 = 27 cells.
Fields§
§cells: [ConfigCell; 27]All 27 cells (W varies slowest, τ varies fastest).
nominal_idx: usizeIndex of the selected nominal configuration (W=10, K=4, τ=2.0).
best_f_idx: usizeIndex of the cell with highest precision × recall product.
Implementations§
Source§impl ConfigGrid
impl ConfigGrid
Sourcepub fn nominal(&self) -> &ConfigCell
pub fn nominal(&self) -> &ConfigCell
Selected nominal cell (W=10, K=4, τ=2.0).
Sourcepub fn best(&self) -> &ConfigCell
pub fn best(&self) -> &ConfigCell
Cell with highest precision × recall (compression-biased selection).
Auto Trait Implementations§
impl Freeze for ConfigGrid
impl RefUnwindSafe for ConfigGrid
impl Send for ConfigGrid
impl Sync for ConfigGrid
impl Unpin for ConfigGrid
impl UnsafeUnpin for ConfigGrid
impl UnwindSafe for ConfigGrid
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