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

Debug dlist insertion

Found because of assertion failure in
test_polysat::test_fixed_point_arith_div_mul_inverse()
This commit is contained in:
Jakob Rath 2022-10-05 17:24:28 +02:00
parent e58815884f
commit f184545aca
5 changed files with 96 additions and 32 deletions

View file

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