3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

forbidden intervals only used by viable

This commit is contained in:
Jakob Rath 2022-03-10 16:12:13 +01:00
parent afc711d6ec
commit c648b57493
5 changed files with 10 additions and 9 deletions

View file

@ -23,6 +23,7 @@ Author:
#include "math/polysat/types.h"
#include "math/polysat/conflict.h"
#include "math/polysat/constraint.h"
#include "math/polysat/forbidden_intervals.h"
#include "math/polysat/univariate/univariate_solver.h"
namespace polysat {
@ -33,6 +34,7 @@ namespace polysat {
friend class test_fi;
solver& s;
forbidden_intervals m_forbidden_intervals;
struct entry : public dll_base<entry>, public fi_record {
entry() : fi_record({ eval_interval::full(), {}, {}, rational::one()}) {}