Update class, struct and enum bracket style

This commit is contained in:
Tiago Gomes
2013-02-13 14:26:47 +00:00
parent e178c1af04
commit 2bc123d72c
26 changed files with 80 additions and 139 deletions

View File

@@ -11,8 +11,7 @@
namespace Horus {
struct ScheduleInfo
{
struct ScheduleInfo {
ScheduleInfo (BBNode* n, bool vfp, bool vfc)
: node(n), visitedFromParent(vfp), visitedFromChild(vfc) { }
@@ -25,8 +24,7 @@ struct ScheduleInfo
typedef std::queue<ScheduleInfo, std::list<ScheduleInfo>> Scheduling;
class BayesBall
{
class BayesBall {
public:
BayesBall (FactorGraph& fg);