3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00
z3/src/model/model_v2_pp.h
Nuno Lopes 73a24ca0a9 remove '#include <iostream>' from headers and from unneeded places
It's harmful to have iostream everywhere as it injects functions in the compiled files
2022-06-17 14:10:19 +01:00

24 lines
351 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
model_v2_pp.h
Abstract:
V2 Pretty printer for models. (backward compatibility)
Author:
Leonardo de Moura (leonardo)
Revision History:
--*/
#pragma once
#include<ostream>
class model_core;
void model_v2_pp(std::ostream & out, model_core const & m, bool partial = false);