3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-05 22:06:03 +00:00

fixing ci issues

fixing if condition
This commit is contained in:
nilsbecker 2019-02-25 19:10:47 +01:00
parent 960708e99e
commit 17adecff68
8 changed files with 16 additions and 16 deletions

View file

@ -1277,7 +1277,7 @@ public:
if (m_arith_params.m_arith_enum_const_mod && k.is_pos() && k < rational(8)) {
unsigned _k = k.get_unsigned();
literal_buffer lits;
ptr_vector<expr> exprs;
expr_ref_vector exprs(m);
for (unsigned j = 0; j < _k; ++j) {
literal mod_j = th.mk_eq(mod, a.mk_int(j), false);
lits.push_back(mod_j);