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/clpbn/bp/Distribution.h

25 lines
468 B
C
Raw Normal View History

#ifndef DISTRIBUTION_H
#define DISTRIBUTION_H
#include <vector>
#include <string>
using namespace std;
class CptEntry;
class Distribution
{
public:
Distribution (int, double*, int, vector<string>);
Distribution (double*, int, vector<string>);
int id;
double* params;
int nParams;
vector<string> domain;
int* offsets;
};
#endif // DISTRIBUTION