ising_lib 1.0.0

Ising model simulation on lattices and graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Everything you need to run Ising model simulations on different 
//! networks (although, so far, only the classic 2d grid ising model 
//! has been implemented as the Ising2d type). 
//! Despite its simplicity, the simulation allows us to observe an 
//! interesting physical phenomenon - phase transition.
//! Refer to the github repository for [examples](https://github.com/micouy/ising_lib). 


pub mod lattice2d;
pub mod measurement;
pub mod monte_carlo_measurement;
// pub mod prelude; // TODO: do this
// pub mod graph; // TODO: implement this