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:
@@ -28,10 +28,10 @@ GroundSolver::printAnswer (const VarIds& vids)
|
||||
if (unobservedVids.empty() == false) {
|
||||
Params res = solveQuery (unobservedVids);
|
||||
std::vector<std::string> stateLines =
|
||||
util::getStateLines (unobservedVars);
|
||||
Util::getStateLines (unobservedVars);
|
||||
for (size_t i = 0; i < res.size(); i++) {
|
||||
std::cout << "P(" << stateLines[i] << ") = " ;
|
||||
std::cout << std::setprecision (constants::PRECISION) << res[i];
|
||||
std::cout << std::setprecision (Constants::PRECISION) << res[i];
|
||||
std::cout << std::endl;
|
||||
}
|
||||
std::cout << std::endl;
|
||||
|
Reference in New Issue
Block a user