mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
removed debug output
This commit is contained in:
parent
253cfeb0af
commit
9c16d16bc8
1 changed files with 1 additions and 3 deletions
|
@ -1154,10 +1154,8 @@ extern "C" {
|
|||
mpfm.is_denormal(val) ? mpfm.mk_min_exp(ebits) :
|
||||
mpfm.is_inf(val) ? mpfm.mk_top_exp(ebits) :
|
||||
mpfm.bias_exp(ebits, mpfm.exp(val));
|
||||
if (mpfm.is_normal(val) && !biased) {
|
||||
std::cout << "unbiassing" << std::endl;
|
||||
if (mpfm.is_normal(val) && !biased)
|
||||
exp = mpfm.exp(val);
|
||||
}
|
||||
|
||||
app * a = mk_c(c)->bvutil().mk_numeral(exp, ebits);
|
||||
mk_c(c)->save_ast_trail(a);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue