mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
enable partial results
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f1710e5618
commit
5adb4a22d1
3 changed files with 22 additions and 15 deletions
|
@ -53,7 +53,7 @@ namespace opt {
|
|||
if (m_msolver) {
|
||||
m_msolver->updt_params(m_params);
|
||||
is_sat = (*m_msolver)();
|
||||
if (is_sat == l_true) {
|
||||
if (is_sat != l_false) {
|
||||
m_msolver->get_model(m_model);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue