summaryrefslogtreecommitdiff
path: root/src/perc_meas.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-04 13:43:57 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-04 13:43:57 -0400
commite817d415f02bae04881a5f0d3c1f1e313a892014 (patch)
tree307ad4bb719f56fb9bdc7798f0aab9e380e3f0e6 /src/perc_meas.hpp
parentf18103d3ef037ab00004ef2095162b3802af58c2 (diff)
downloadfuse_networks-e817d415f02bae04881a5f0d3c1f1e313a892014.tar.gz
fuse_networks-e817d415f02bae04881a5f0d3c1f1e313a892014.tar.bz2
fuse_networks-e817d415f02bae04881a5f0d3c1f1e313a892014.zip
reimplemented distance-from-pc measurements of the cluster size distributions
Diffstat (limited to 'src/perc_meas.hpp')
-rw-r--r--src/perc_meas.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/perc_meas.hpp b/src/perc_meas.hpp
index e2357db..75ef61a 100644
--- a/src/perc_meas.hpp
+++ b/src/perc_meas.hpp
@@ -32,13 +32,14 @@ class pm : public hooks {
// measurement storage
std::vector<std::vector<uint64_t>> sn; // non-spanning cluster size distribution
+ std::vector<std::vector<uint64_t>> sN; // non-spanning cluster size distribution
+ std::list<std::list<unsigned>> sN_tmp; // non-spanning cluster size distribution
std::vector<uint64_t> ss; // minimal spanning cluster size distribution
std::vector<uint64_t> sm; // spanning cluster size distribution
std::vector<uint64_t> sl; // final avalanche size distribution
std::vector<std::vector<uint64_t>> sb; // final avalanche size distribution
std::vector<uint64_t> sd;
std::vector<uint64_t> sr;
- std::vector<unsigned> sb_tmp;
public:
std::string model_string;