mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8b9a80e232
commit
7ec02fc11f
2 changed files with 5 additions and 5 deletions
|
@ -28,7 +28,7 @@ namespace lp {
|
|||
lia.settings().stats().m_cube_calls++;
|
||||
TRACE("cube",
|
||||
for (unsigned j = 0; j < lra.A_r().column_count(); j++)
|
||||
display_column(tout, j);
|
||||
lia.display_column(tout, j);
|
||||
tout << lra.constraints();
|
||||
);
|
||||
|
||||
|
@ -50,7 +50,7 @@ namespace lp {
|
|||
lra.pop();
|
||||
lra.round_to_integer_solution();
|
||||
lra.set_status(lp_status::FEASIBLE);
|
||||
lp_assert(lia.settings().get_cancel_flag() || is_feasible());
|
||||
lp_assert(lia.settings().get_cancel_flag() || lia.is_feasible());
|
||||
TRACE("cube", tout << "success";);
|
||||
lia.settings().stats().m_cube_success++;
|
||||
return lia_move::sat;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue