Trait qmc::sse::qmc_debug::QmcDebug[][src]

pub trait QmcDebug {
    type M: DebugOps;
    fn get_debug_manager(&self) -> &Self::M;

    fn count_diagonal_and_off(&self) -> (usize, usize) { ... }
fn count_constant_ops(&self) -> usize { ... } }
Expand description

Allows for debugging QMC instances given they have a debuggable OpContainer.

Associated Types

The type of the debuggable manager.

Required methods

The manager which can be debugged.

Provided methods

Count the number of diagonal and offdiagonal ops.

Count the number of constant ops.

Implementors