mirror of
https://github.com/Z3Prover/z3
synced 2025-08-27 13:39:49 +00:00
refactor
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
4acdd952c2
commit
f74d1fc8ec
4 changed files with 11 additions and 11 deletions
|
@ -52,8 +52,8 @@ namespace nlsat {
|
|||
// Since m_p_relation holds (lesser -> greater), we invert edges when populating dom: greater ▹ lesser.
|
||||
std::vector<std::vector<bool>> m_prop_dom;
|
||||
|
||||
assignment const& sample() const { return m_solver.get_assignment();}
|
||||
assignment & sample() { return m_solver.get_assignment(); }
|
||||
assignment const& sample() const { return m_solver.sample();}
|
||||
assignment & sample() { return m_solver.sample(); }
|
||||
|
||||
// max_x plays the role of n in algorith 1 of the levelwise paper.
|
||||
impl(solver& solver, polynomial_ref_vector const& ps, var max_x, assignment const& s, pmanager& pm, anum_manager& am)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue