#include <vector>
int main() {
typedef float ValueType;
{
ValueType,
OperationType,
FunctionType,
SpaceType
> GraphicalModelType;
const LabelType numbersOfLabels[] = {2,4,6,4,3};
GraphicalModelType gm(SpaceType(numbersOfLabels, numbersOfLabels + 4));
}
{
ValueType,
OperationType,
FunctionType,
SpaceType
> GraphicalModelType;
const IndexType numberOfVariables = 5;
const LabelType numberOfLabels = 4;
GraphicalModelType gm(SpaceType(numberOfVariables, numberOfLabels));
}
return 0;
}