mirror of
https://github.com/Z3Prover/z3
synced 2025-10-04 23:13:57 +00:00
debug min_max
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
eb1b578bfb
commit
392b419367
2 changed files with 6 additions and 2 deletions
|
@ -298,11 +298,11 @@ namespace opt {
|
|||
|
||||
|
||||
inf_eps optsmt::get_lower(unsigned i) const {
|
||||
return m_is_max[i]?m_lower[i]:-m_lower[i];
|
||||
return m_is_max[i]?m_lower[i]:-m_upper[i];
|
||||
}
|
||||
|
||||
inf_eps optsmt::get_upper(unsigned i) const {
|
||||
return m_is_max[i]?m_upper[i]:-m_upper[i];
|
||||
return m_is_max[i]?m_upper[i]:-m_lower[i];
|
||||
}
|
||||
|
||||
void optsmt::get_model(model_ref& mdl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue