3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 00:32:16 +00:00

ported VCC trace streams

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-12-02 09:08:47 -08:00
parent 80405dbd62
commit 288a96610f
21 changed files with 149 additions and 160 deletions

View file

@ -29,11 +29,9 @@ namespace smt {
class mam {
protected:
context & m_context;
std::ostream * m_trace_stream;
public:
mam(context & ctx, std::ostream *trace):
m_context(ctx),
m_trace_stream(trace) {
mam(context & ctx):
m_context(ctx) {
}
virtual ~mam() {
@ -68,7 +66,7 @@ namespace smt {
#endif
};
mam * mk_mam(context & ctx, std::ostream *trace);
mam * mk_mam(context & ctx);
};
#endif /* _MAM_H_ */