Trait qmc::sse::qmc_ising::IntoQmc[][src]

pub trait IntoQmc<R, M> where
    R: Rng,
    M: QmcManager
{ fn into_qmc(self) -> Qmc<R, M>; }

Convertable into QMC, helps since calling .into() runs into type inference problems.

Required methods

fn into_qmc(self) -> Qmc<R, M>[src]

Convert into QMC.

Loading content...

Implementors

impl<R, M> IntoQmc<R, M> for QmcIsingGraph<R, M> where
    R: Rng,
    M: IsingManager + QmcManager
[src]

Loading content...