mirror of
https://github.com/Z3Prover/z3
synced 2026-02-28 19:01:29 +00:00
interleave linear solver calls
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
118dc0f3b4
commit
17fcf79c04
4 changed files with 26 additions and 7 deletions
|
|
@ -24,6 +24,7 @@ Author:
|
|||
#include "math/polysat/var_constraint.h"
|
||||
#include "math/polysat/ule_constraint.h"
|
||||
#include "math/polysat/justification.h"
|
||||
#include "math/polysat/linear_solver.h"
|
||||
#include "math/polysat/trail.h"
|
||||
|
||||
namespace polysat {
|
||||
|
|
@ -43,10 +44,12 @@ namespace polysat {
|
|||
friend class var_constraint;
|
||||
friend class ule_constraint;
|
||||
friend class forbidden_intervals;
|
||||
friend class linear_solver;
|
||||
|
||||
typedef ptr_vector<constraint> constraints;
|
||||
|
||||
reslimit& m_lim;
|
||||
linear_solver m_linear_solver;
|
||||
scoped_ptr_vector<dd::pdd_manager> m_pdd;
|
||||
scoped_ptr_vector<dd::fdd> m_bits;
|
||||
dd::bdd_manager m_bdd;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue