mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 15:55:46 +00:00
add solution_prefix per #1463, have parto with single objective behave similar to multipe-objectives #1439
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
57406d6cc4
commit
e4198c38e2
6 changed files with 31 additions and 3 deletions
|
@ -155,7 +155,7 @@ namespace opt {
|
|||
rational l = m_adjust_value(m_lower);
|
||||
rational u = m_adjust_value(m_upper);
|
||||
if (l > u) std::swap(l, u);
|
||||
verbose_stream() << "(opt." << solver << " [" << l << ":" << u << "])\n";);
|
||||
verbose_stream() << "(opt." << solver << " [" << l << ":" << u << "])\n";);
|
||||
}
|
||||
|
||||
lbool maxsmt_solver_base::find_mutexes(obj_map<expr, rational>& new_soft) {
|
||||
|
@ -391,6 +391,10 @@ namespace opt {
|
|||
return m_c.get_solver();
|
||||
}
|
||||
|
||||
void maxsmt::model_updated(model* mdl) {
|
||||
m_c.model_updated(mdl);
|
||||
}
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue