diff options
Diffstat (limited to 'cacount.cpp')
-rw-r--r-- | cacount.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cacount.cpp b/cacount.cpp index 368e325..72134e1 100644 --- a/cacount.cpp +++ b/cacount.cpp @@ -7,8 +7,8 @@ #include <functional> #include <iostream> #include <list> -#include <unordered_map> -#include <unordered_set> +#include <map> +#include <set> #include <thread> #include <boost/integer.hpp> @@ -127,9 +127,9 @@ void cycleStat(Trans &t, Color &c, pbitset &reachable) { struct Stat { StateIter basin, len, eden, totalBasin; explicit Stat() : basin(0), len(0), eden(0), totalBasin(0) {} - }; - unordered_map<State, Stat> cycStat; - unordered_set<State> redCycleCounted; + } __attribute__((packed)); + map<State, Stat> cycStat; + set<State> redCycleCounted; // Is this cycle the canonical one? // How big is the basin of attraction? |