mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fixup! Boolean LP Solver.
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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};
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user