3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-04-20 12:03:28 -07:00
parent 4da1b7b03c
commit 831edba1c8
7 changed files with 26 additions and 1 deletions

View file

@ -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() {}