summaryrefslogtreecommitdiff
path: root/src/measurements.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-12-28 00:58:12 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-12-28 00:58:12 -0500
commita20ac5471a35c9c2a70b48fc4393d2323b52bd85 (patch)
tree292318d46c31539bc1476946f865c9b90c4773a1 /src/measurements.cpp
parent380e16a94dbdc7c8f4ba6e389395296cf8be66c1 (diff)
downloadfuse_networks-a20ac5471a35c9c2a70b48fc4393d2323b52bd85.tar.gz
fuse_networks-a20ac5471a35c9c2a70b48fc4393d2323b52bd85.tar.bz2
fuse_networks-a20ac5471a35c9c2a70b48fc4393d2323b52bd85.zip
removed test.cpp and made the array for saving damage size distribution larger
Diffstat (limited to 'src/measurements.cpp')
-rw-r--r--src/measurements.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/measurements.cpp b/src/measurements.cpp
index 15d37d1..72f074a 100644
--- a/src/measurements.cpp
+++ b/src/measurements.cpp
@@ -114,7 +114,7 @@ ma::ma(double Lx, double Ly, unsigned int Mx, unsigned int My, double beta) :
sa(2 * (unsigned int)ceil(Lx * Ly / 2), 0),
sC(2 * (unsigned int)ceil(Lx * Ly / 2), 0),
sA(2 * (unsigned int)ceil(Lx * Ly / 2), 0),
- sd(2 * (unsigned int)ceil(Lx * Ly / 2), 0),
+ sd(3 * (unsigned int)ceil(Lx * Ly / 2), 0),
sb(log2(Mx < My ? Mx : My) + 1, 0),
Ccc((Mx / 2 + 1) * (My / 2 + 1), 0),
Css((Mx / 2 + 1) * (My / 2 + 1), 0),