This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/CLPBN/horus/Histogram.h

46 lines
878 B
C
Raw Normal View History

2012-05-23 14:56:01 +01:00
#ifndef HORUS_HISTOGRAM_H
#define HORUS_HISTOGRAM_H
#include <vector>
#include <ostream>
using namespace std;
typedef vector<unsigned> Histogram;
class HistogramSet
{
public:
HistogramSet (unsigned, unsigned);
void nextHistogram (void);
2012-05-24 22:55:20 +01:00
unsigned operator[] (size_t idx) const;
2012-05-23 14:56:01 +01:00
unsigned nrHistograms (void) const;
void reset (void);
static vector<Histogram> getHistograms (unsigned ,unsigned);
static unsigned nrHistograms (unsigned, unsigned);
2012-05-24 22:55:20 +01:00
static size_t findIndex (
2012-05-23 14:56:01 +01:00
const Histogram&, const vector<Histogram>&);
static vector<double> getNumAssigns (unsigned, unsigned);
friend std::ostream& operator<< (ostream &os, const HistogramSet& hs);
private:
2012-05-24 22:55:20 +01:00
unsigned maxCount (size_t) const;
2012-05-23 14:56:01 +01:00
2012-05-24 22:55:20 +01:00
void clearAfter (size_t);
2012-05-23 14:56:01 +01:00
unsigned size_;
Histogram hist_;
};
#endif // HORUS_HISTOGRAM_H