mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
integrating new integer primal loop
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4bb5302def
commit
e24db56650
17 changed files with 183 additions and 66 deletions
|
@ -251,11 +251,11 @@ namespace opt {
|
|||
}
|
||||
|
||||
void maxsmt::update_lower(rational const& r) {
|
||||
if (m_lower > r) m_lower = r;
|
||||
m_lower = r;
|
||||
}
|
||||
|
||||
void maxsmt::update_upper(rational const& r) {
|
||||
if (m_upper < r) m_upper = r;
|
||||
m_upper = r;
|
||||
}
|
||||
|
||||
void maxsmt::get_model(model_ref& mdl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue