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:
@@ -23,7 +23,7 @@ ProbFormula::sameSkeletonAs (const ProbFormula& f) const
|
||||
bool
|
||||
ProbFormula::contains (LogVar lv) const
|
||||
{
|
||||
return util::contains (logVars_, lv);
|
||||
return Util::contains (logVars_, lv);
|
||||
}
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ ProbFormula::contains (LogVarSet s) const
|
||||
size_t
|
||||
ProbFormula::indexOf (LogVar X) const
|
||||
{
|
||||
return util::indexOf (logVars_, X);
|
||||
return Util::indexOf (logVars_, X);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user