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

51 lines
963 B
C
Raw Normal View History

2013-02-06 22:58:42 +00:00
#ifndef PACKAGES_CLPBN_HORUS_HISTOGRAM_H
#define PACKAGES_CLPBN_HORUS_HISTOGRAM_H
2012-05-23 14:56:01 +01:00
#include <vector>
2012-12-27 12:54:58 +00:00
2012-05-23 14:56:01 +01:00
#include <ostream>
2012-12-27 22:25:45 +00:00
#include "Horus.h"
2012-05-23 14:56:01 +01:00
using namespace std;
typedef vector<unsigned> Histogram;
class HistogramSet
{
public:
HistogramSet (unsigned, unsigned);
2012-12-17 18:39:42 +00:00
2012-05-23 14:56:01 +01:00
void nextHistogram (void);
2012-05-24 22:55:20 +01:00
unsigned operator[] (size_t idx) const;
2012-12-17 18:39:42 +00:00
2012-05-23 14:56:01 +01:00
unsigned nrHistograms (void) const;
void reset (void);
2012-12-27 22:29:20 +00:00
static vector<Histogram> getHistograms (unsigned, unsigned);
2012-12-17 18:39:42 +00:00
2012-05-23 14:56:01 +01:00
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);
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
2012-12-17 18:39:42 +00:00
unsigned size_;
Histogram hist_;
2012-12-27 22:25:45 +00:00
friend std::ostream& operator<< (ostream &os, const HistogramSet& hs);
2012-12-27 22:25:45 +00:00
DISALLOW_COPY_AND_ASSIGN (HistogramSet);
2012-05-23 14:56:01 +01:00
};
#endif // HORUS_HISTOGRAM_H