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:
Tiago Gomes
2013-02-08 21:01:53 +00:00
parent 264ef7a067
commit 6a1a209ee3
33 changed files with 381 additions and 382 deletions

View File

@@ -13,7 +13,7 @@ class WeightedLink : public BpLink
public:
WeightedLink (FacNode* fn, VarNode* vn, size_t idx, unsigned weight)
: BpLink (fn, vn), index_(idx), weight_(weight),
pwdMsg_(vn->range(), log_aware::one()) { }
pwdMsg_(vn->range(), LogAware::one()) { }
size_t index (void) const { return index_; }
@@ -38,7 +38,7 @@ WeightedLink::updateMessage (void)
{
pwdMsg_ = *nextMsg_;
swap (currMsg_, nextMsg_);
log_aware::pow (pwdMsg_, weight_);
LogAware::pow (pwdMsg_, weight_);
}