pub struct VerifySparseSolutionOp;Expand description
Op marker for verify_sparse_solution. SubLinear in n.
Trait Implementations§
Source§impl Clone for VerifySparseSolutionOp
impl Clone for VerifySparseSolutionOp
Source§fn clone(&self) -> VerifySparseSolutionOp
fn clone(&self) -> VerifySparseSolutionOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Complexity for VerifySparseSolutionOp
impl Complexity for VerifySparseSolutionOp
Source§const CLASS: ComplexityClass = ComplexityClass::SubLinear
const CLASS: ComplexityClass = ComplexityClass::SubLinear
Worst-case complexity class on a single-query call. For iterative
solvers this is the per-iter cost; the iteration count is bounded by
other configuration (max_iterations, tolerance, ef_construction).
Source§const DETAIL: &'static str = "Residual audit restricted to caller-supplied closure entries. \
O(|entries| · avg_row_nnz) — same class as the SubLinear orchestrator \
whose output it verifies. Independent of n for sparse DD matrices."
const DETAIL: &'static str = "Residual audit restricted to caller-supplied closure entries. \ O(|entries| · avg_row_nnz) — same class as the SubLinear orchestrator \ whose output it verifies. Independent of n for sparse DD matrices."
Optional human-readable detail for documentation / MCP tool schemas.
Defaults to the short label of
CLASS. Override when there’s a
non-obvious constant or k-bound.Source§impl Debug for VerifySparseSolutionOp
impl Debug for VerifySparseSolutionOp
Source§impl Default for VerifySparseSolutionOp
impl Default for VerifySparseSolutionOp
Source§fn default() -> VerifySparseSolutionOp
fn default() -> VerifySparseSolutionOp
Returns the “default value” for a type. Read more
impl Copy for VerifySparseSolutionOp
Auto Trait Implementations§
impl Freeze for VerifySparseSolutionOp
impl RefUnwindSafe for VerifySparseSolutionOp
impl Send for VerifySparseSolutionOp
impl Sync for VerifySparseSolutionOp
impl Unpin for VerifySparseSolutionOp
impl UnsafeUnpin for VerifySparseSolutionOp
impl UnwindSafe for VerifySparseSolutionOp
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