diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-04 13:43:57 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-04 13:43:57 -0400 |
commit | e817d415f02bae04881a5f0d3c1f1e313a892014 (patch) | |
tree | 307ad4bb719f56fb9bdc7798f0aab9e380e3f0e6 /src/perc_meas.hpp | |
parent | f18103d3ef037ab00004ef2095162b3802af58c2 (diff) | |
download | fuse_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.hpp | 3 |
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; |