summaryrefslogtreecommitdiff
path: root/code/core/bin.h
blob: 302df56e7952fc5ce64e2712b45055dd1cbe42c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef BIN_H
#define BIN_H

#include <set>

class Bin {
public:
  Bin(std::set<int> * neurons) : neurons(neurons), count(0) {}
  void bin(int neuron);

  std::set<int> * neurons;
  int count;
};

#endif // BIN_H
contact: Jan Huwald // Impressum