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
U-WIN-U2045GN0RNQ\Vítor Santos Costa 840e287cda mode changes
2011-07-25 17:09:28 +01:00

18 lines
228 B
C++

#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