mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Merge branch 'master' of https://github.com/Z3Prover/z3
This commit is contained in:
commit
d0c5b86a2a
|
@ -1505,6 +1505,9 @@ class PythonInstallComponent(Component):
|
|||
os.path.join(self.pythonPkgDir, 'z3', '__pycache__', '*.pyc'),
|
||||
in_prefix=self.in_prefix_install
|
||||
)
|
||||
MakeRuleCmd.remove_installed_files(out,
|
||||
os.path.join(self.pythonPkgDir, 'z3', 'lib',
|
||||
self.libz3Component.dll_file()))
|
||||
|
||||
def mk_makefile(self, out):
|
||||
return
|
||||
|
|
|
@ -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…
Reference in a new issue