fixup! Boolean LP Solver.

This commit is contained in:
chriseth
2022-02-07 16:42:23 +01:00
parent fdc6f5249c
commit 252ac75de7
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
#include <libsolutil/StringUtils.h>
#include <liblangutil/Exceptions.h>
#include <libsolutil/RationalVectors.h>
#include <libsolutil/LinearExpression.h>
#include <range/v3/view/enumerate.hpp>
#include <range/v3/view/transform.hpp>
+1 -1
View File
@@ -151,7 +151,7 @@ private:
size_t m_internalVariableCounter = 0;
/// Stack of state, to allow for push()/pop().
std::vector<State> m_state{{State{}}};
LPSolver m_lpSolver;
LPSolver m_lpSolver{false};
};
+1 -1
View File
@@ -17,7 +17,7 @@
// SPDX-License-Identifier: GPL-3.0
#include <libsolutil/BooleanLP.h>
#include <libsolutil/RationalVectors.h>
#include <libsolutil/LinearExpression.h>
#include <libsmtutil/Sorts.h>
#include <libsolutil/StringUtils.h>
#include <test/Common.h>