3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-02 23:27:53 +00:00

add new polynomials from handle_nullified to m_todo

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2026-02-18 10:54:39 -10:00
parent df419c137d
commit d8f2b5ca01
4 changed files with 31 additions and 162 deletions

View file

@ -44,6 +44,9 @@ namespace nlsat {
them in max_polys. Return the maximal variable
*/
var extract_max_polys(polynomial_ref_vector& max_polys);
// Extract polynomials whose max_var equals \c x, appending them to \c out.
// Returns the number of polynomials extracted.
unsigned extract_polys_at_level(var x, polynomial_ref_vector& out);
};
inline std::ostream& display(std::ostream& out, pmanager& pm, polynomial_ref const& p, display_var_proc const& proc) {