mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-24 20:00:33 +05:00
remove DirectionalInterval debug output
This commit is contained in:
parent
8760559690
commit
a42f5525a3
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user