mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 14:55:45 +00:00
renamed LP bound propagator to avoid linker name clashes
This commit is contained in:
parent
6bc5209e26
commit
e315d063c5
5 changed files with 285 additions and 285 deletions
|
@ -6,14 +6,14 @@
|
|||
#include "util/lp/lp_settings.h"
|
||||
namespace lean {
|
||||
class lar_solver;
|
||||
class bound_propagator {
|
||||
class lp_bound_propagator {
|
||||
std::unordered_map<unsigned, unsigned> m_improved_low_bounds; // these maps map a column index to the corresponding index in ibounds
|
||||
std::unordered_map<unsigned, unsigned> m_improved_upper_bounds;
|
||||
lar_solver & m_lar_solver;
|
||||
public:
|
||||
vector<implied_bound> m_ibounds;
|
||||
public:
|
||||
bound_propagator(lar_solver & ls);
|
||||
lp_bound_propagator(lar_solver & ls);
|
||||
column_type get_column_type(unsigned) const;
|
||||
const impq & get_low_bound(unsigned) const;
|
||||
const impq & get_upper_bound(unsigned) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue