diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-04-08 14:59:02 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-04-08 14:59:02 +0200 |
commit | 1c136653da2a89c69e5f64101eae92b3faaed260 (patch) | |
tree | dfe39449204621c5e9981026159c1cd15b8c7b7e /src/fig0_13.cpp | |
parent | 7c51df4e6f13b7c85300e2da2b9759adee671eae (diff) | |
download | etisnoop-1c136653da2a89c69e5f64101eae92b3faaed260.tar.gz etisnoop-1c136653da2a89c69e5f64101eae92b3faaed260.tar.bz2 etisnoop-1c136653da2a89c69e5f64101eae92b3faaed260.zip |
Fix FIG completeness calculation, add length histogramnext
Diffstat (limited to 'src/fig0_13.cpp')
-rw-r--r-- | src/fig0_13.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fig0_13.cpp b/src/fig0_13.cpp index dd053b7..de1eda9 100644 --- a/src/fig0_13.cpp +++ b/src/fig0_13.cpp @@ -46,9 +46,8 @@ bool fig0_13_is_complete(SId_t SId, SCIdS_t SCIdS) if (complete) { components_ids_seen.clear(); } - else { - components_ids_seen.insert(key); - } + + components_ids_seen.insert(key); return complete; } |