|
Glauber Dynamics in C
Simulation for Glauber Dynamics written in C11
|
Define the edge struct and functions relating to it. More...
Go to the source code of this file.
Data Structures | |
| struct | edge |
| Edge struct to be used as edges in the graph structs. More... | |
Typedefs | |
| typedef struct edge | edge |
| typedef of the edge struct. | |
Functions | |
| edge * | edge_new (int v1, int v2, int weight) |
| Allocate a new edge with the corresponding entries for edge. More... | |
| void | edge_free (edge *e) |
| Free the memory taken by the edge. More... | |
Define the edge struct and functions relating to it.