Trait qmc::sse::qmc_traits::op_container::OpContainerConstructor[][src]

pub trait OpContainerConstructor {
    fn new(nvars: usize) -> Self;
fn new_with_bonds(nvars: usize, nbonds: usize) -> Self; }
Expand description

The ability to construct a new OpContainer

Required methods

Make a new container for nvars.

Make a new container for nvars giving a hint as to the number of bonds.

Implementors