mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
fixes for #7402
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
328616b8b2
commit
c7af97364a
|
@ -401,9 +401,24 @@ namespace opt {
|
|||
void context::set_model(model_ref& m) {
|
||||
m_model = m;
|
||||
opt_params optp(m_params);
|
||||
if (optp.dump_models() && m) {
|
||||
symbol prefix = optp.solution_prefix();
|
||||
bool model2console = optp.dump_models();
|
||||
bool model2file = prefix != symbol::null && prefix != symbol("");
|
||||
|
||||
if ((model2console || model2file) && m) {
|
||||
model_ref md = m->copy();
|
||||
fix_model(md);
|
||||
if (model2file) {
|
||||
std::ostringstream buffer;
|
||||
buffer << prefix << (m_model_counter++) << ".smt2";
|
||||
std::ofstream out(buffer.str());
|
||||
if (out) {
|
||||
out << *md;
|
||||
out.close();
|
||||
}
|
||||
}
|
||||
if (model2console)
|
||||
std::cout << *md;
|
||||
}
|
||||
if (m_on_model_eh && m) {
|
||||
model_ref md = m->copy();
|
||||
|
@ -1168,20 +1183,6 @@ namespace opt {
|
|||
void context::model_updated(model* md) {
|
||||
model_ref mdl = md;
|
||||
set_model(mdl);
|
||||
#if 0
|
||||
opt_params optp(m_params);
|
||||
symbol prefix = optp.solution_prefix();
|
||||
if (prefix == symbol::null || prefix == symbol("")) return;
|
||||
model_ref mdl = md->copy();
|
||||
fix_model(mdl);
|
||||
std::ostringstream buffer;
|
||||
buffer << prefix << (m_model_counter++) << ".smt2";
|
||||
std::ofstream out(buffer.str());
|
||||
if (out) {
|
||||
out << *mdl;
|
||||
out.close();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
rational context::adjust(unsigned id, rational const& v) {
|
||||
|
|
Loading…
Reference in a new issue