164 lines
4.1 KiB
C++
164 lines
4.1 KiB
C++
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include "FactorGraph.h"
|
|
#include "VarElimSolver.h"
|
|
#include "FgBpSolver.h"
|
|
#include "CbpSolver.h"
|
|
|
|
using namespace std;
|
|
|
|
void processArguments (FactorGraph&, int, const char* []);
|
|
void runSolver (Solver*, const VarNodes&);
|
|
|
|
const string USAGE = "usage: \
|
|
./hcli FILE [VARIABLE | OBSERVED_VARIABLE=EVIDENCE]..." ;
|
|
|
|
|
|
int
|
|
main (int argc, const char* argv[])
|
|
{
|
|
if (!argv[1]) {
|
|
cerr << "error: no graphical model specified" << endl;
|
|
cerr << USAGE << endl;
|
|
exit (0);
|
|
}
|
|
const string& fileName = argv[1];
|
|
const string& extension = fileName.substr (
|
|
fileName.find_last_of ('.') + 1);
|
|
FactorGraph fg;
|
|
if (extension == "uai") {
|
|
fg.readFromUaiFormat (argv[1]);
|
|
processArguments (fg, argc, argv);
|
|
} else if (extension == "fg") {
|
|
fg.readFromLibDaiFormat (argv[1]);
|
|
processArguments (fg, argc, argv);
|
|
} else {
|
|
cerr << "error: the graphical model must be defined either " ;
|
|
cerr << "in a UAI or libDAI file" << endl;
|
|
exit (0);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
void
|
|
processArguments (FactorGraph& fg, int argc, const char* argv[])
|
|
{
|
|
VarNodes queryVars;
|
|
for (int i = 2; i < argc; i++) {
|
|
const string& arg = argv[i];
|
|
if (arg.find ('=') == std::string::npos) {
|
|
if (!Util::isInteger (arg)) {
|
|
cerr << "error: `" << arg << "' " ;
|
|
cerr << "is not a valid variable id" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
VarId vid;
|
|
stringstream ss;
|
|
ss << arg;
|
|
ss >> vid;
|
|
VarNode* queryVar = fg.getFgVarNode (vid);
|
|
if (queryVar) {
|
|
queryVars.push_back (queryVar);
|
|
} else {
|
|
cerr << "error: there isn't a variable with " ;
|
|
cerr << "`" << vid << "' as id" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
} else {
|
|
size_t pos = arg.find ('=');
|
|
if (arg.substr (0, pos).empty()) {
|
|
cerr << "error: missing left argument" << endl;
|
|
cerr << USAGE << endl;
|
|
exit (0);
|
|
}
|
|
if (arg.substr (pos + 1).empty()) {
|
|
cerr << "error: missing right argument" << endl;
|
|
cerr << USAGE << endl;
|
|
exit (0);
|
|
}
|
|
if (!Util::isInteger (arg.substr (0, pos))) {
|
|
cerr << "error: `" << arg.substr (0, pos) << "' " ;
|
|
cerr << "is not a variable id" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
VarId vid;
|
|
stringstream ss;
|
|
ss << arg.substr (0, pos);
|
|
ss >> vid;
|
|
VarNode* var = fg.getFgVarNode (vid);
|
|
if (var) {
|
|
if (!Util::isInteger (arg.substr (pos + 1))) {
|
|
cerr << "error: `" << arg.substr (pos + 1) << "' " ;
|
|
cerr << "is not a state index" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
int stateIndex;
|
|
stringstream ss;
|
|
ss << arg.substr (pos + 1);
|
|
ss >> stateIndex;
|
|
if (var->isValidState (stateIndex)) {
|
|
var->setEvidence (stateIndex);
|
|
} else {
|
|
cerr << "error: `" << stateIndex << "' " ;
|
|
cerr << "is not a valid state index for variable " ;
|
|
cerr << "`" << var->varId() << "'" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
} else {
|
|
cerr << "error: there isn't a variable with " ;
|
|
cerr << "`" << vid << "' as id" ;
|
|
cerr << endl;
|
|
exit (0);
|
|
}
|
|
}
|
|
}
|
|
Solver* solver = 0;
|
|
switch (Globals::infAlgorithm) {
|
|
case InfAlgorithms::VE:
|
|
solver = new VarElimSolver (fg);
|
|
break;
|
|
case InfAlgorithms::FG_BP:
|
|
solver = new FgBpSolver (fg);
|
|
break;
|
|
case InfAlgorithms::CBP:
|
|
solver = new CbpSolver (fg);
|
|
break;
|
|
default:
|
|
assert (false);
|
|
}
|
|
runSolver (solver, queryVars);
|
|
}
|
|
|
|
|
|
|
|
void
|
|
runSolver (Solver* solver, const VarNodes& queryVars)
|
|
{
|
|
VarIds vids;
|
|
for (unsigned i = 0; i < queryVars.size(); i++) {
|
|
vids.push_back (queryVars[i]->varId());
|
|
}
|
|
if (queryVars.size() == 0) {
|
|
solver->runSolver();
|
|
solver->printAllPosterioris();
|
|
} else if (queryVars.size() == 1) {
|
|
solver->runSolver();
|
|
solver->printPosterioriOf (vids[0]);
|
|
} else {
|
|
solver->runSolver();
|
|
solver->printJointDistributionOf (vids);
|
|
}
|
|
delete solver;
|
|
}
|
|
|