3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-16 04:20:25 +00:00

track refinement source

This commit is contained in:
Jakob Rath 2022-12-15 13:08:13 +01:00
parent e978e4fc8e
commit 3d06a90e7f
2 changed files with 7 additions and 1 deletions

View file

@ -38,7 +38,9 @@ namespace polysat {
solver& s;
forbidden_intervals m_forbidden_intervals;
struct entry final : public dll_base<entry>, public fi_record {};
struct entry final : public dll_base<entry>, public fi_record {
entry const* refined = nullptr;
};
enum class entry_kind { unit_e, equal_e, diseq_e };
ptr_vector<entry> m_alloc;