3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

remove more warnings

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-10-07 14:02:13 -07:00 committed by Lev Nachmanson
parent 552a504f72
commit 8aeba62802
2 changed files with 1 additions and 3 deletions

View file

@ -177,7 +177,6 @@ namespace lp {
for (unsigned i = 0; i < n_of_rows; i++) { for (unsigned i = 0; i < n_of_rows; i++) {
auto & row = lra.get_row(i); auto & row = lra.get_row(i);
TRACE("dioph_eq", tout << "row "<< i <<":"; lia.display_row_info(tout, i) << "\n";); TRACE("dioph_eq", tout << "row "<< i <<":"; lia.display_row_info(tout, i) << "\n";);
unsigned basic_var = lra.r_basis()[i];
if (!all_vars_are_int_and_small(row)) { if (!all_vars_are_int_and_small(row)) {
TRACE("dioph_eq", tout << "not all vars are int and small\n";); TRACE("dioph_eq", tout << "not all vars are int and small\n";);
continue; continue;
@ -768,7 +767,7 @@ namespace lp {
} }
}; };
// Constructor definition // Constructor definition
dioph_eq::dioph_eq(int_solver& lia): lia(lia) { dioph_eq::dioph_eq(int_solver& lia) {
m_imp = alloc(imp, lia, lia.lra); m_imp = alloc(imp, lia, lia.lra);
} }
dioph_eq::~dioph_eq() { dioph_eq::~dioph_eq() {

View file

@ -24,7 +24,6 @@ namespace lp {
class int_solver; class int_solver;
class dioph_eq { class dioph_eq {
class imp; class imp;
int_solver& lia;
imp* m_imp; imp* m_imp;
public: public:
dioph_eq(int_solver& lia); dioph_eq(int_solver& lia);