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
/// Cluster updates in imaginary time.
pub mod cluster;
/// Diagonal update moves.
pub mod diagonal;
/// Diagonal updates on subsections.
mod diagonal_subsection;
/// SSE directed loop updates.
pub mod directed_loop;
mod heatbath;
/// Holding and manipulating ops.
pub mod op_container;
/// QMC timesteps and analysis.
pub mod qmc_stepper;
/// Reasonating bonds cluster.
pub mod rvb;

pub use cluster::*;
pub use diagonal::*;
pub use diagonal_subsection::*;
pub use directed_loop::*;
pub use heatbath::*;
pub use op_container::*;
pub use qmc_stepper::*;
pub use rvb::*;

/// Check integrity of a struct.
pub trait Verify {
    /// Check integrity.
    fn verify(&self) -> bool;
}