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; }