Remove some alias for hve

This commit is contained in:
Tiago Gomes 2013-01-08 20:48:46 +00:00
parent dfd7360291
commit 2738d83302
1 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ setHorusFlag (string key, string value)
returnVal = false;
}
} else if (key == "ground_solver" || key == "solver") {
if ( value == "ve" || value == "hve") {
if ( value == "hve") {
Globals::groundSolver = GroundSolverType::VE;
} else if (value == "bp") {
Globals::groundSolver = GroundSolverType::BP;
@ -230,7 +230,7 @@ setHorusFlag (string key, string value)
cerr << "for `" << key << "'" << endl;
returnVal = false;
}
} else if (key == "ve_elim_heuristic" || key == "hve_elim_heuristic") {
} else if (key == "hve_elim_heuristic") {
if ( value == "sequential") {
ElimGraph::setElimHeuristic (ElimHeuristic::SEQUENTIAL);
} else if (value == "min_neighbors") {