mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Merge branch 'master' of https://github.com/Z3Prover/z3
This commit is contained in:
commit
d0c5b86a2a
3 changed files with 7 additions and 1 deletions
|
@ -224,12 +224,12 @@ struct pb2bv_rewriter::imp {
|
|||
public:
|
||||
|
||||
card2bv_rewriter(imp& i, ast_manager& m):
|
||||
m_sort(*this),
|
||||
m(m),
|
||||
m_imp(i),
|
||||
au(m),
|
||||
pb(m),
|
||||
bv(m),
|
||||
m_sort(*this),
|
||||
m_trail(m),
|
||||
m_args(m)
|
||||
{}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue