Fix typos

This commit is contained in:
Tiago Gomes 2013-02-16 15:30:44 +00:00
parent acb4bf610f
commit be24ff5160
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ typedef unsigned long long ullong;
enum LiftedSolverType {
lveSolver, // generalized counting first-order variable elimination (GC-FOveSolver)
lveSolver, // generalized counting first-order variable elimination (GC-FOVE)
lbpSolver, // lifted first-order belief propagation
lkcSolver // lifted first-order knowledge compilation
};

View File

@ -149,7 +149,7 @@ LiftedOperations::absorveEvidence (
}
if (Globals::verbosity > 2 && obsFormulas.empty() == false) {
Util::printAsteriskLine();
std::cout << "AFTER EVIDENCE ABSORveSolverD" << std::endl;
std::cout << "AFTER EVIDENCE ABSORVED" << std::endl;
for (size_t i = 0; i < obsFormulas.size(); i++) {
std::cout << " -> " << obsFormulas[i] << std::endl;
}