Glauber Dynamics in C
Simulation for Glauber Dynamics written in C11
update_rules.h
Go to the documentation of this file.
1
13#include "pcg_variants.h"
14#include "weightedgraph.h"
15
24typedef void (*update_rule)(graph*, int, double, pcg32_random_t*);
25
The graph struct containing the pointers to edges and vertices.
Definition: weightedgraph.h:15
void(* update_rule)(graph *, int, double, pcg32_random_t *)
The update_rule function type to which all update rules should adhere.
Definition: update_rules.h:24
update_rule polya_update
The polya update rule leading to polya competition on the graph.
Definition: update_rules.h:33
Define the graph struct and functions relating to it.