mirror of
https://github.com/Z3Prover/z3
synced 2025-04-18 14:49:01 +00:00
move everything out-of-line as common path doesn't log fix some race conditions on file ptr vs enable_logging vars
33 lines
462 B
C
33 lines
462 B
C
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
z3_logger.h
|
|
|
|
Abstract:
|
|
|
|
Goodies for log generation
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-09-22
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#include "util/symbol.h"
|
|
|
|
void R();
|
|
void P(void * obj);
|
|
void I(int64_t i);
|
|
void U(uint64_t u);
|
|
void D(double d);
|
|
void S(Z3_string str);
|
|
void Sy(Z3_symbol sym);
|
|
void Ap(unsigned sz);
|
|
void Au(unsigned sz);
|
|
void Ai(unsigned sz);
|
|
void Asy(unsigned sz);
|
|
void C(unsigned id);
|