Revert "Improve namespace names"
This reverts commit 973df43fe0
.
On a second thought, namespaces are close to classes in the sense that both encapsulate data, so they should both use Pascal case notation.
This commit is contained in:
@@ -77,7 +77,7 @@ LiftedBp::printSolverFlags (void) const
|
||||
}
|
||||
ss << ",bp_max_iter=" << WeightedBp::maxIterations();
|
||||
ss << ",bp_accuracy=" << WeightedBp::accuracy();
|
||||
ss << ",log_domain=" << util::toString (globals::logDomain);
|
||||
ss << ",log_domain=" << Util::toString (Globals::logDomain);
|
||||
ss << "]" ;
|
||||
std::cout << ss.str() << std::endl;
|
||||
}
|
||||
@@ -90,8 +90,8 @@ LiftedBp::refineParfactors (void)
|
||||
pfList_ = parfactorList;
|
||||
while (iterate() == false);
|
||||
|
||||
if (globals::verbosity > 2) {
|
||||
util::printHeader ("AFTER REFINEMENT");
|
||||
if (Globals::verbosity > 2) {
|
||||
Util::printHeader ("AFTER REFINEMENT");
|
||||
pfList_.print();
|
||||
}
|
||||
}
|
||||
@@ -187,7 +187,7 @@ LiftedBp::rangeOfGround (const Ground& gr)
|
||||
}
|
||||
++ it;
|
||||
}
|
||||
return util::maxUnsigned();
|
||||
return Util::maxUnsigned();
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user