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:
parent
80405dbd62
commit
288a96610f
21 changed files with 149 additions and 160 deletions
|
@ -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_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue