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

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

The ability to construct a new OpContainer

Required methods

pub fn new(nvars: usize) -> Self[src]

Make a new container for nvars.

pub fn new_with_bonds(nvars: usize, nbonds: usize) -> Self[src]

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

Loading content...

Implementors

impl<O: Op + Clone> OpContainerConstructor for FastOpsTemplate<O>[src]

Loading content...