mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
changed fixedpoint output format for easier parsing in Boogie
This commit is contained in:
parent
58ffffe4d4
commit
f7d589fc49
|
@ -350,7 +350,9 @@ void dl_interface::display_certificate_non_const(std::ostream& out) {
|
|||
if(_d->status == StatusModel){
|
||||
ast_manager &m = m_ctx.get_manager();
|
||||
model_ref md = get_model();
|
||||
out << "(fixedpoint \n";
|
||||
model_smt2_pp(out, m, *md.get(), 0);
|
||||
out << ")\n";
|
||||
}
|
||||
else if(_d->status == StatusRefutation){
|
||||
out << "(derivation\n";
|
||||
|
|
Loading…
Reference in a new issue