More whitespace cleanups
This commit is contained in:
@@ -133,7 +133,7 @@ ProductOperator::toString (void)
|
||||
stringstream ss;
|
||||
ss << "just multiplicate " ;
|
||||
ss << (*g1_)->getAllGroups();
|
||||
ss << " x " ;
|
||||
ss << " x " ;
|
||||
ss << (*g2_)->getAllGroups();
|
||||
ss << " [cost=" << std::exp (getLogCost()) << "]" << endl;
|
||||
return ss.str();
|
||||
@@ -155,7 +155,7 @@ ProductOperator::validOp (Parfactor* g1, Parfactor* g2)
|
||||
}
|
||||
size_t idx1 = g1->indexOfGroup (intersect[i]);
|
||||
size_t idx2 = g2->indexOfGroup (intersect[i]);
|
||||
if (g1->range (idx1) != g2->range (idx2)) {
|
||||
if (g1->range (idx1) != g2->range (idx2)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -713,7 +713,7 @@ LiftedVe::getBestOperation (const Grounds& query)
|
||||
if ((bestOp == 0) || (cost < bestCost)) {
|
||||
bestOp = validOps[i];
|
||||
bestCost = cost;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (bestCost > largestCost_) {
|
||||
largestCost_ = bestCost;
|
||||
|
Reference in New Issue
Block a user