mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
Fix bug reported at http://stackoverflow.com/questions/15226944/segmentation-fault-in-z3
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
9a4331995e
commit
bdc675b1df
3 changed files with 18 additions and 4 deletions
|
@ -80,3 +80,8 @@ void model_v2_pp(std::ostream & out, model_core const & md, bool partial) {
|
|||
display_constants(out, md);
|
||||
display_functions(out, md, partial);
|
||||
}
|
||||
|
||||
// debugging support
|
||||
void pp(model_core const & md) {
|
||||
model_v2_pp(std::cout, md, false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue