Skip to content

Commit 5cac9b8

Browse files
fix build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent ca0e9a1 commit 5cac9b8

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

src/math/lp/column.h

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class column {
4545
u_dependency* m_lower_bound_witness = nullptr;
4646
u_dependency* m_upper_bound_witness = nullptr;
4747
bool m_associated_with_row = false;
48-
lpvar m_j; //the column index
4948
lar_term* m_term = nullptr;
5049
public:
5150
lar_term* term() const { return m_term; }

src/qe/qsat.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,6 @@ namespace qe {
10141014
case AST_APP: {
10151015
app* a = to_app(e);
10161016
expr_ref_vector args(m);
1017-
unsigned num_args = a->get_num_args();
10181017
bool all_visited = true;
10191018
for (expr* arg : *a) {
10201019
if (visited.find(arg, r)) {

src/sat/smt/q_solver.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ namespace q {
120120
}
121121

122122
sat::literal solver::instantiate(quantifier* _q, bool negate, std::function<expr* (quantifier*, unsigned)>& mk_var) {
123-
sat::literal sk;
124123
expr_ref tmp(m);
125124
quantifier_ref q(_q, m);
126125
expr_ref_vector vars(m);

src/smt/theory_seq.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,6 @@ bool theory_seq::solve_nc(unsigned idx) {
12701270
expr_ref c(m);
12711271
expr* a = nullptr, *b = nullptr;
12721272
VERIFY(m_util.str.is_contains(n.contains(), a, b));
1273-
literal pre, cnt, ctail, emp;
12741273
lbool is_gt = ctx.get_assignment(len_gt);
12751274
TRACE("seq", ctx.display_literal_smt2(tout << len_gt << " := " << is_gt << "\n", len_gt) << "\n";);
12761275

0 commit comments

Comments
 (0)