3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00
z3/src/model/model_smt2_pp.h
Nikolaj Bjorner d0e20e44ff booyah
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2020-07-04 15:56:30 -07:00

27 lines
489 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
model_smt2_pp.h
Abstract:
Pretty printer for models using SMT2 format.
Author:
Leonardo de Moura (leonardo)
Revision History:
--*/
#pragma once
#include "ast/ast_printer.h"
#include "model/model_core.h"
void model_smt2_pp(std::ostream & out, ast_printer_context & ctx, model_core const & m, unsigned indent);
void model_smt2_pp(std::ostream & out, ast_manager & m, model_core const & md, unsigned indent);