summaryrefslogtreecommitdiff
path: root/src/measurements.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-10-09 11:30:30 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-10-09 11:30:30 -0400
commitfcc4b311e3e552cdbdec0e99f9d9da7a5e6d11c0 (patch)
tree6041017db6d7e11a07ba3cdd9c49df435027ee38 /src/measurements.hpp
parente856feba484dc5617891d2c09d5af28f87d462a5 (diff)
downloadfuse_networks-fcc4b311e3e552cdbdec0e99f9d9da7a5e6d11c0.tar.gz
fuse_networks-fcc4b311e3e552cdbdec0e99f9d9da7a5e6d11c0.tar.bz2
fuse_networks-fcc4b311e3e552cdbdec0e99f9d9da7a5e6d11c0.zip
measuring the clusters before the last avalanche again
Diffstat (limited to 'src/measurements.hpp')
-rw-r--r--src/measurements.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/measurements.hpp b/src/measurements.hpp
index 135f312..3b70eae 100644
--- a/src/measurements.hpp
+++ b/src/measurements.hpp
@@ -22,6 +22,7 @@ class ma : public hooks {
unsigned num;
// measurement storage
+ std::vector<uint64_t> sc;
std::vector<uint64_t> sn; // non-spanning cluster size distribution
std::vector<uint64_t> ss; // minimal spanning cluster size distribution
std::vector<uint64_t> sm; // spanning cluster size distribution
@@ -34,6 +35,7 @@ class ma : public hooks {
std::vector<uint64_t> si;
std::vector<uint64_t> sI;
+ std::vector<uint64_t> cc;
std::vector<uint64_t> cn;
std::vector<uint64_t> cs;
std::vector<uint64_t> cm;
@@ -44,6 +46,8 @@ class ma : public hooks {
std::vector<uint64_t> cp;
std::vector<uint64_t> cq;
+ ClusterTree last_clusters;
+
public:
long double lv;