mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
fixplex
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4da1b7b03c
commit
831edba1c8
7 changed files with 26 additions and 1 deletions
|
@ -10,4 +10,5 @@ z3_add_component(polysat
|
|||
COMPONENT_DEPENDENCIES
|
||||
util
|
||||
dd
|
||||
simplex
|
||||
)
|
||||
|
|
|
@ -18,6 +18,7 @@ Author:
|
|||
|
||||
#include "math/polysat/solver.h"
|
||||
#include "math/polysat/log.h"
|
||||
#include "math/polysat/fixplex_def.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
|
@ -69,6 +70,8 @@ namespace polysat {
|
|||
m_bdd(1000),
|
||||
m_dm(m_value_manager, m_alloc),
|
||||
m_free_vars(m_activity) {
|
||||
|
||||
fixplex<uint64_ext> s(m_lim);
|
||||
}
|
||||
|
||||
solver::~solver() {}
|
||||
|
|
|
@ -25,6 +25,7 @@ Author:
|
|||
#include "math/polysat/ule_constraint.h"
|
||||
#include "math/polysat/justification.h"
|
||||
#include "math/polysat/trail.h"
|
||||
#include "math/polysat/fixplex.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue