summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2014-06-07 16:06:21 -0400
committerErik Schnetter <schnetter@gmail.com>2014-06-07 16:10:51 -0400
commit55e422dba087e24c86b5f311da801e012e78a965 (patch)
tree1101666c8d61a913833c44fad6ff8a2560ecb084
parent4c9561634d496e8b7d9c6b0580482b41ec13c611 (diff)
downloadvecmathlib-55e422dba087e24c86b5f311da801e012e78a965.zip
vecmathlib-55e422dba087e24c86b5f311da801e012e78a965.tar.gz
Remove debug output
-rw-r--r--mathfuncs_log.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/mathfuncs_log.h b/mathfuncs_log.h
index 80305f8..cd71eb3 100644
--- a/mathfuncs_log.h
+++ b/mathfuncs_log.h
@@ -6,7 +6,6 @@
#include "mathfuncs_base.h"
#include <cmath>
-#include <iostream>
@@ -20,9 +19,6 @@ namespace vecmathlib {
// Rescale
intvec_t ilogb_x = ilogb(x * RV(M_SQRT2));
x = ldexp(x, -ilogb_x);
- if (!(all(x >= RV(M_SQRT1_2) && x <= RV(M_SQRT2)))) {
- std::cout << "x=" << x << "\n";
- }
VML_ASSERT(all(x >= RV(M_SQRT1_2) && x <= RV(M_SQRT2)));
realvec_t y = (x - RV(1.0)) / (x + RV(1.0));
OpenPOWER on IntegriCloud