From a300b2776401f4e8cc21976e221e8d2fcf5cb384 Mon Sep 17 00:00:00 2001 From: Tiago Gomes Date: Sat, 9 Mar 2013 16:46:42 +0000 Subject: [PATCH] BeliefProp: move some members to private section --- packages/CLPBN/horus/BeliefProp.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/CLPBN/horus/BeliefProp.h b/packages/CLPBN/horus/BeliefProp.h index aa09cd28e..ed7641e43 100644 --- a/packages/CLPBN/horus/BeliefProp.h +++ b/packages/CLPBN/horus/BeliefProp.h @@ -120,15 +120,11 @@ class BeliefProp : public GroundSolver { BpLinks links_; unsigned nIters_; - std::vector varsLinks_; - std::vector facsLinks_; bool runned_; SortedOrder sortedOrder_; BpLinkMap linkMap_; static double accuracy_; - static unsigned maxIter_; - static MsgSchedule schedule_; private: void initializeSolver(); @@ -137,6 +133,12 @@ class BeliefProp : public GroundSolver { virtual void printLinkInformation() const; + std::vector varsLinks_; + std::vector facsLinks_; + + static unsigned maxIter_; + static MsgSchedule schedule_; + DISALLOW_COPY_AND_ASSIGN (BeliefProp); };