3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-05-21 10:27:32 -04:00
parent 127af83c53
commit 386c511f54
8 changed files with 182 additions and 56 deletions

View file

@ -342,15 +342,13 @@ namespace opt {
void maxsmt::updt_params(params_ref& p) {
m_params.append(p);
if (m_msolver) {
if (m_msolver)
m_msolver->updt_params(p);
}
}
void maxsmt::collect_statistics(statistics& st) const {
if (m_msolver) {
if (m_msolver)
m_msolver->collect_statistics(st);
}
}
solver& maxsmt::s() {