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/GraphicalModel.h
2011-05-17 12:00:33 +01:00

18 lines
228 B
C++
Executable File

#ifndef BP_GRAPHICALMODEL_H
#define BP_GRAPHICALMODEL_H
#include "Variable.h"
#include "Shared.h"
using namespace std;
class GraphicalModel
{
public:
virtual VarSet getVariables (void) const = 0;
private:
};
#endif