summaryrefslogtreecommitdiff
path: root/cacount.cpp
blob: 1437c6623ef71b2e87cc203cdfc53b95b1d9426d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <assert.h>
#include <stdlib.h>
#include <string.h>

#include <array>
#include <bitset>
#include <functional>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <thread>
#include <boost/integer.hpp>

#include "mmalloc.hpp"
#include "timer.hpp"

using namespace std;
using boost::optional;

#ifndef BIT_WIDTH
#define BIT_WIDTH 30
#endif

typedef typename boost::uint_t<BIT_WIDTH + 1>::least State;
const State logState = BIT_WIDTH;
const State maxState = (State) 1 << logState;

bitset<8> rule(110);

State update(State s) {
  State r(0);
  bitset<logState> b(s);
  for (unsigned i=0; i<logState; i++)
    r |= rule[1 * b[(i + logState - 1) % logState]
	    + 2 * b[i]                
	    + 4 * b[(i + 1) % logState]] << i;
  return r;
}

typedef array<State, maxState> Trans;
typedef array<uint8_t, maxState> pbitset;

void iterState(function<void(int)> f, optional<string> msg = optional<string>(), bool parallel = false) {
  PerfPrinter perfPrinter(msg);
  int numThreads=1;
  if (parallel) {
    numThreads = min((State) thread::hardware_concurrency(), maxState);
  }
  list<thread*> tasks;
  for (int t=0; t<numThreads; t++) {
    tasks.push_front(new thread([=]{
	  for (State s = maxState / numThreads * t; 
	       s < ((t == numThreads - 1) ? maxState : (maxState / numThreads * (t+1)));
	       s++)
	    f(s);
	}));
  }
  for (; !tasks.empty(); tasks.front()->join(), delete tasks.front(), tasks.pop_front());    
}

void iterTrans(int times, function<void(int)> f, optional<string> msg = optional<string>(), bool parallel = false) {
  PerfPrinter perfPrinter(msg);
  auto msg2 = [=,&msg] (int i) {
    return msg ? (*msg + string(" ") + to_string(times-i) + string("/") + to_string(times)) : msg; };
  while (times--) {
    iterState(f, msg2(times), parallel);
  }
}

void init(Trans &t) {
  iterState([&](int s) {
      t[s] = update(s);
    }, (string) "single step transition table", true);
}

void findCycle(Trans &t, Trans &c, pbitset &reachable) {
  // compute reachability
  iterState([&](int s) {
      reachable[t[s]] = 1;
    }, (string) "reachability", true);
  // forward to t=maxState; now every state is in a cycle
  iterTrans(logState, [&](int s) {
      t[s] = t[t[s]];
    }, (string) "fwd time");
  // compute loop id (lowest occuring state no): go through the loop again and
  // record the lowest occuring state number
  iterState([&](int s) { 
      c[s] = t[s];
    }, (string) "init cycles", true);
  iterTrans(logState, [&](int s) {
      c[s] = min<State>(c[s], c[t[s]]);
      t[s] = t[t[s]];
    }, (string) "cycles");
}

void cycleStat(Trans &c, pbitset &reachable) {
  struct Stat {
    State basin, len, eden, minState;
    Stat() : basin(0), len(0), eden(0), minState(maxState) {}
  };
  map<State, Stat> cyc;

  // How big is the basin of attraction?
  // How many garden of eden states does it contain?
  iterState([&](int s) {
      cyc[c[s]].basin++;
      if (!reachable[s])
	cyc[c[s]].eden++;
    }, (string) "basin & eden");

  // how long is the cycle, what is the actual minimal state
  { PerfPrinter perfPrinter((string) "cycle length");
  for (auto i : cyc) {
    Stat &s = cyc[i.first];
    State cur, start;
    cur = start = c[i.first]; 
    do {
      s.len++;
      s.minState = min(s.minState, cur);
      cur=update(cur);
    } while (cur != start);
  }}

  // find duplicates cycles (only bitshifted)
  map<State, set<State>> ccyc;
  { PerfPrinter perfPrinter((string) "find duplicate cycles");
  auto canonize = [](State s) {
    State cs = s;
    for (State i=0; i<logState; i++)
      cs = min(cs, (((s<<i) | (s>>(logState-i))) & (maxState - 1)));
    return cs;
  };
  for (auto i : cyc) {
    ccyc[canonize(i.second.minState)].insert(i.first);
  }}

  // print it
  for (auto i : ccyc) {
    Stat &s = cyc[*(i.second.begin())];
    cout << bitset<logState>(i.first) << "\t"
	 << i.second.size() << "\t"
	 << s.len << "\t"
	 << s.basin << "\t"
	 << s.eden  << "\t"
	 << i.first << endl;
  }
}

void print(Trans &t) {
  for (auto s : t)
    cout << bitset<logState>(s) << endl;
}

void printTraj(State s, int count) {
  while (count--) {
    cout << bitset<logState>(s) << endl;
    s = update(s);
  }
}

int main(int argc, char **argv) {
  assert(argc >= 2);
  rule = atoi(argv[1]);
  if (!strcmp(argv[2], "traj")) {
    assert(argc == 5);
    printTraj(atoi(argv[3]), atoi(argv[4]));
  }
  if (!strcmp(argv[2], "cycle")) {
    Trans *t = mmalloc<Trans>(),
          *c = mmalloc<Trans>();
    pbitset *r = mmalloc<pbitset>();
    init(*t);
    findCycle(*t, *c, *r);
    cycleStat(*c, *r);
  }
  return 0;
}
contact: Jan Huwald // Impressum