mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
Added facilities for dumping smt_params for debugging purposes
This commit is contained in:
parent
fad1dffbf0
commit
8bde7b8a4c
24 changed files with 300 additions and 2 deletions
|
@ -28,3 +28,14 @@ void dyn_ack_params::updt_params(params_ref const & _p) {
|
|||
m_dack_gc = p.dack_gc();
|
||||
m_dack_gc_inv_decay = p.dack_gc_inv_decay();
|
||||
}
|
||||
|
||||
#define DISPLAY_PARAM(X) out << #X"=" << X << std::endl;
|
||||
|
||||
void dyn_ack_params::display(std::ostream & out) const {
|
||||
DISPLAY_PARAM(m_dack);
|
||||
DISPLAY_PARAM(m_dack_eq);
|
||||
DISPLAY_PARAM(m_dack_factor);
|
||||
DISPLAY_PARAM(m_dack_threshold);
|
||||
DISPLAY_PARAM(m_dack_gc);
|
||||
DISPLAY_PARAM(m_dack_gc_inv_decay);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue