mirror of
https://github.com/Z3Prover/z3
synced 2025-06-04 13:21:22 +00:00
clean up and add clang-format off
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
30a2ced9aa
commit
f5d9ffaca1
5 changed files with 5 additions and 5 deletions
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
|
// clang-format off
|
||||||
#include "math/lp/gomory.h"
|
#include "math/lp/gomory.h"
|
||||||
#include "math/lp/int_solver.h"
|
#include "math/lp/int_solver.h"
|
||||||
#include "math/lp/lar_solver.h"
|
#include "math/lp/lar_solver.h"
|
||||||
|
|
|
@ -15,6 +15,7 @@ Author:
|
||||||
|
|
||||||
Revision History:
|
Revision History:
|
||||||
--*/
|
--*/
|
||||||
|
// clang-format off
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "math/lp/lar_term.h"
|
#include "math/lp/lar_term.h"
|
||||||
#include "math/lp/lia_move.h"
|
#include "math/lp/lia_move.h"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
Revision History:
|
Revision History:
|
||||||
--*/
|
--*/
|
||||||
|
// clang-format off
|
||||||
#include "math/lp/int_solver.h"
|
#include "math/lp/int_solver.h"
|
||||||
#include "math/lp/lar_solver.h"
|
#include "math/lp/lar_solver.h"
|
||||||
#include "math/lp/int_branch.h"
|
#include "math/lp/int_branch.h"
|
||||||
|
@ -63,7 +63,7 @@ int int_branch::find_inf_int_base_column() {
|
||||||
mpq small_value(1024);
|
mpq small_value(1024);
|
||||||
unsigned n = 0;
|
unsigned n = 0;
|
||||||
lar_core_solver & lcs = lra.m_mpq_lar_core_solver;
|
lar_core_solver & lcs = lra.m_mpq_lar_core_solver;
|
||||||
unsigned prev_usage = 0; // to quiet down the compile
|
unsigned prev_usage = 0; // to quiet down the compiler
|
||||||
unsigned k = 0;
|
unsigned k = 0;
|
||||||
unsigned usage;
|
unsigned usage;
|
||||||
unsigned j;
|
unsigned j;
|
||||||
|
|
|
@ -878,9 +878,6 @@ int int_solver::select_int_infeasible_var() {
|
||||||
enum state { small_box, is_small_value, any_value, not_found };
|
enum state { small_box, is_small_value, any_value, not_found };
|
||||||
state st = not_found;
|
state st = not_found;
|
||||||
|
|
||||||
// 1. small box
|
|
||||||
// 2. small value
|
|
||||||
// 3. any value
|
|
||||||
for (unsigned j : lra.r_basis()) {
|
for (unsigned j : lra.r_basis()) {
|
||||||
if (!column_is_int_inf(j))
|
if (!column_is_int_inf(j))
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -16,6 +16,7 @@ Author:
|
||||||
Revision History:
|
Revision History:
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
|
// clang-format off
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "util/numeral_buffer.h"
|
#include "util/numeral_buffer.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue