mirror of
https://github.com/NGSolve/netgen.git
synced 2025-02-04 00:50:37 +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
|
DirectionalInterval operator< (double val) const
|
||||||
{
|
{
|
||||||
cout << "create interval with < " << ", val = " << val << endl;
|
|
||||||
cout << "me = " << this->minval << " - " << this->maxval << endl;
|
|
||||||
DirectionalInterval i2 = *this;
|
DirectionalInterval i2 = *this;
|
||||||
i2.maxval = val;
|
i2.maxval = val;
|
||||||
|
|
||||||
cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl;
|
|
||||||
return i2;
|
return i2;
|
||||||
}
|
}
|
||||||
|
|
||||||
DirectionalInterval operator> (double val) const
|
DirectionalInterval operator> (double val) const
|
||||||
{
|
{
|
||||||
cout << "create interval with > " << ", val = " << val << endl;
|
|
||||||
cout << "me = " << this->minval << " - " << this->maxval << endl;
|
|
||||||
|
|
||||||
DirectionalInterval i2 = *this;
|
DirectionalInterval i2 = *this;
|
||||||
i2.minval = val;
|
i2.minval = val;
|
||||||
cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl;
|
|
||||||
|
|
||||||
return i2;
|
return i2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user