forked from OSchip/llvm-project
Added initialisers for reduction rule counters.
llvm-svn: 113108
This commit is contained in:
parent
e3ac69eca3
commit
64a4a13617
|
@ -34,6 +34,10 @@ namespace PBQP {
|
|||
|
||||
public:
|
||||
|
||||
/// \brief Initialise an empty solution.
|
||||
Solution()
|
||||
: r0Reductions(0), r1Reductions(0), r2Reductions(0), rNReductions(0) {}
|
||||
|
||||
/// \brief Number of nodes for which selections have been made.
|
||||
/// @return Number of nodes for which selections have been made.
|
||||
unsigned numNodes() const { return selections.size(); }
|
||||
|
|
Loading…
Reference in New Issue