Expand description

Module for Monte-Carlo algrorithme, see the trait MonteCarlo.

This is one of the way to carry out simulation. This work by taking a state and progressively changing it (most of the time randomly).

Examples

see MetropolisHastingsSweep, HeatBathSweep, overrelaxation etc…

Re-exports

Modules

Structs

Traits

  • Monte-Carlo algorithm, giving the next element in the simulation. It is also a Markov chain.
  • Some times it is easier to just implement a potential next element, the rest is done automatically using an McWrapper.