1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! # Spacial ensemble
//!
//! # Citation
//! 
//! Overview over spacial networks:
//! > Marc Barthélemy,
//! > "Spacial networks" *Physics Reports* **499**:1-101 (2011),
//! > DOI: [10.1016/j.physrep.2010.11.002](https://doi.org/10.1016/j.physrep.2010.11.002)
//! 
//! The specific model I implemented is described in
//! > Timo Dewenter and Alexander K. Hartmann,
//! > "Large-deviation properties of resilience of power grids"
//! > *New J. Phys.* **17** (2015),
//! > DOI: [10.1088/1367-2630/17/1/015005](https://doi.org/10.1088/1367-2630/17/1/015005)
mod spacial_graph;
mod spacial_ensemble;
mod dog_networks;

pub use spacial_graph::*;
pub use spacial_ensemble::*;
pub use dog_networks::*;