summaryrefslogtreecommitdiff
path: root/src/corr_test.c
diff options
context:
space:
mode:
authorpants <jaron@kent-dobias.com>2016-09-09 14:33:56 -0400
committerpants <jaron@kent-dobias.com>2016-09-09 14:33:56 -0400
commit03de79b8c5ebcc206e3450dfbc701211d9c254b0 (patch)
treeea1882e66605bbfcf257692c53f45bf1c4d0d2db /src/corr_test.c
parentbf525955316995a56b9fd1e66b9345cdf4ba3561 (diff)
downloadfuse_networks-03de79b8c5ebcc206e3450dfbc701211d9c254b0.tar.gz
fuse_networks-03de79b8c5ebcc206e3450dfbc701211d9c254b0.tar.bz2
fuse_networks-03de79b8c5ebcc206e3450dfbc701211d9c254b0.zip
more refactoring
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 4805fb0..3d56c07 100644
--- a/src/corr_test.c
+++ b/src/corr_test.c
@@ -7,8 +7,8 @@ int main() {
unsigned int width = 64;
- graph_t *network = ini_square_network(width, true, false, &c);
- net_t *instance = net_create(network, 1e-14, 0.001, 0, true, &c);
+ graph_t *network = graph_create(VORONOI_LATTICE, TORUS_BOUND, 64, false, &c);
+ net_t *instance = net_create(network, 1e-14, 0.5, 0, true, &c);
net_fracture(instance, &c, 1e-10);
double *corr = get_corr(instance, NULL, &c);