From a42f5525a3aeff9c0770cb8f5d54bea8e7e1bbf5 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Wed, 29 Sep 2021 08:58:30 +0200 Subject: [PATCH] remove DirectionalInterval debug output --- libsrc/occ/python_occ.hpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/libsrc/occ/python_occ.hpp b/libsrc/occ/python_occ.hpp index 526b1135..605875a0 100644 --- a/libsrc/occ/python_occ.hpp +++ b/libsrc/occ/python_occ.hpp @@ -12,24 +12,15 @@ public: DirectionalInterval operator< (double val) const { - cout << "create interval with < " << ", val = " << val << endl; - cout << "me = " << this->minval << " - " << this->maxval << endl; DirectionalInterval i2 = *this; i2.maxval = val; - - cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl; return i2; } DirectionalInterval operator> (double val) const { - cout << "create interval with > " << ", val = " << val << endl; - cout << "me = " << this->minval << " - " << this->maxval << endl; - DirectionalInterval i2 = *this; i2.minval = val; - cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl; - return i2; }