summaryrefslogtreecommitdiff
path: root/src/corr_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/corr_test.c')
-rw-r--r--src/corr_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corr_test.c b/src/corr_test.c
index b6f8a18..01b3e11 100644
--- a/src/corr_test.c
+++ b/src/corr_test.c
@@ -7,7 +7,7 @@ int main() {
unsigned int width = 64;
- graph_t *network = graph_create(VORONOI_LATTICE, TORUS_BOUND, 128, false, &c);
+ graph_t *network = graph_create(VORONOI_LATTICE, TORUS_BOUND, 128, false);
net_t *instance = net_create(network, 1e-14, 3, 0, true, &c);
net_fracture(instance, &c, 1e-10);
@@ -19,7 +19,7 @@ int main() {
printf("\n");
net_free(instance, &c);
- graph_free(network, &c);
+ graph_free(network);
CHOL_F(finish)(&c);