3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fixed unhandled case warning in test/qe_arith.cpp

This commit is contained in:
Christoph M. Wintersteiger 2016-10-25 14:34:00 +01:00
parent 8c5c564d6c
commit c7fddf80c2

View file

@ -375,6 +375,9 @@ static void add_random_ineq(
case opt::t_le:
fml = a.mk_le(t1, t2);
break;
case opt::t_mod:
NOT_IMPLEMENTED_YET();
break;
}
fmls.push_back(fml);
mbo.add_constraint(vars, rational(coeff), rel);