Whitespace clean
This commit is contained in:
parent
2f2f88e571
commit
3eb6b76ddd
@ -77,7 +77,7 @@ class FactorGraph
|
|||||||
|
|
||||||
void setFactorsAsBayesian (void) { bayesFactors_ = true; }
|
void setFactorsAsBayesian (void) { bayesFactors_ = true; }
|
||||||
|
|
||||||
bool bayesianFactors (void) const { return bayesFactors_ ; }
|
bool bayesianFactors (void) const { return bayesFactors_; }
|
||||||
|
|
||||||
size_t nrVarNodes (void) const { return varNodes_.size(); }
|
size_t nrVarNodes (void) const { return varNodes_.size(); }
|
||||||
|
|
||||||
|
@ -251,11 +251,10 @@ class LiftedCircuit
|
|||||||
|
|
||||||
CircuitNode* root_;
|
CircuitNode* root_;
|
||||||
const LiftedWCNF* lwcnf_;
|
const LiftedWCNF* lwcnf_;
|
||||||
|
bool compilationSucceeded_;
|
||||||
Clauses backupClauses_;
|
Clauses backupClauses_;
|
||||||
unordered_map<CircuitNode*, Clauses> originClausesMap_;
|
unordered_map<CircuitNode*, Clauses> originClausesMap_;
|
||||||
unordered_map<CircuitNode*, string> explanationMap_;
|
unordered_map<CircuitNode*, string> explanationMap_;
|
||||||
bool compilationSucceeded_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // HORUS_LIFTEDCIRCUIT_H
|
#endif // HORUS_LIFTEDCIRCUIT_H
|
||||||
|
@ -24,3 +24,4 @@ class LiftedOperations
|
|||||||
};
|
};
|
||||||
|
|
||||||
#endif // HORUS_LIFTEDOPERATIONS_H
|
#endif // HORUS_LIFTEDOPERATIONS_H
|
||||||
|
|
||||||
|
@ -23,10 +23,10 @@ CC=@CC@
|
|||||||
CXX=@CXX@
|
CXX=@CXX@
|
||||||
|
|
||||||
# normal
|
# normal
|
||||||
#CXXFLAGS= -std=c++0x @SHLIB_CXXFLAGS@ $(YAP_EXTRAS) $(DEFS) -D_YAP_NOT_INSTALLED_=1 -I$(srcdir) -I../../.. -I$(srcdir)/../../../include @CPPFLAGS@ -DNDEBUG
|
CXXFLAGS= -std=c++0x @SHLIB_CXXFLAGS@ $(YAP_EXTRAS) $(DEFS) -D_YAP_NOT_INSTALLED_=1 -I$(srcdir) -I../../.. -I$(srcdir)/../../../include @CPPFLAGS@ -DNDEBUG
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
CXXFLAGS= -std=c++0x @SHLIB_CXXFLAGS@ $(YAP_EXTRAS) $(DEFS) -D_YAP_NOT_INSTALLED_=1 -I$(srcdir) -I../../.. -I$(srcdir)/../../../include @CPPFLAGS@ -g -O0 -Wextra
|
#CXXFLAGS= -std=c++0x @SHLIB_CXXFLAGS@ $(YAP_EXTRAS) $(DEFS) -D_YAP_NOT_INSTALLED_=1 -I$(srcdir) -I../../.. -I$(srcdir)/../../../include @CPPFLAGS@ -g -O0 -Wextra
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -60,7 +60,6 @@ class ParfactorList
|
|||||||
ParfactorList& operator= (const ParfactorList& pfList);
|
ParfactorList& operator= (const ParfactorList& pfList);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
bool isShattered (const Parfactor*) const;
|
bool isShattered (const Parfactor*) const;
|
||||||
|
|
||||||
bool isShattered (const Parfactor*, const Parfactor*) const;
|
bool isShattered (const Parfactor*, const Parfactor*) const;
|
||||||
|
Reference in New Issue
Block a user