1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! A module with various QMC algorithms and traits.

pub use qmc_ising::DefaultQMCIsingGraph;
pub use qmc_runner::DefaultQMC;
pub use qmc_traits::*;

/// An arena for managing memory efficiently
pub(crate) mod arena;

/// Calculate the autcorrelation calculations for bonds.
#[cfg(feature = "autocorrelations")]
pub mod autocorrelations;

/// Clever operator management
pub mod fast_ops;

/// A generic QMC framework.
pub mod qmc_runner;

/// A QMC graph for easy TFIM.
pub mod qmc_ising;

/// Traits which, when implemented, run SSE.
pub mod qmc_traits;

/// QMC utility classes.
pub mod qmc_types;

/// A simpler operator management.
pub mod simple_ops;

#[cfg(feature = "autocorrelations")]
pub use autocorrelations::*;