3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-20 22:30:32 +00:00

pass anum_manager to levelwise, crash on sign

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-08-14 15:39:13 -07:00
parent 52759c815e
commit 7949e77d1a
3 changed files with 60 additions and 29 deletions

View file

@ -33,8 +33,8 @@ namespace nlsat {
struct impl;
impl* m_impl;
public:
// Construct with polynomials ps, maximal variable max_x, and current sample s (assignment of vars < max_x)
levelwise(polynomial_ref_vector const& ps, var max_x, assignment const& s);
// Construct with polynomials ps, maximal variable max_x, current sample s, and algebraic-number manager am
levelwise(polynomial_ref_vector const& ps, var max_x, assignment const& s, anum_manager& am);
~levelwise();
levelwise(levelwise const&) = delete;