#include <IntervalMatrix.h>
Public Member Functions | |
| bool | operator &= (const INTERVAL_MATRIX &x) |
| void | operator|= (const INTERVAL_MATRIX &x) |
| void | set_empty () |
| bool | empty () const |
| bool | contains (const MATRIX &x) const |
| bool | included (const INTERVAL_MATRIX &outer) const |
Friends | |
| INTERVAL_MATRIX | operator & (CONST INTERVAL_MATRIX &x, CONST INTERVAL_MATRIX &y) |
This class has been augmented with some frequently used features.
| bool INTERVAL_MATRIX::operator &= | ( | const INTERVAL_MATRIX & | x | ) |
Set this interval matrix to the intersection of itself with another interval matrix x.
| x | - the interval matrix to compute the intersection with. |
true if the intersection is non empty. | void INTERVAL_MATRIX::operator|= | ( | const INTERVAL_MATRIX & | x | ) |
Set this interval matrix to the hull of itself with another interval matrix x.
| x | - the interval matrix to compute the hull with. |
| void INTERVAL_MATRIX::set_empty | ( | ) | [inline] |
Set this interval vector to the empty set.
| bool INTERVAL_MATRIX::empty | ( | ) | const [inline] |
Return true iff the interval matrix is empty.
| bool INTERVAL_MATRIX::contains | ( | const MATRIX & | x | ) | const [inline] |
Return true iff this interval matrix contains x.
| bool INTERVAL_MATRIX::included | ( | const INTERVAL_MATRIX & | outer | ) | const [inline] |
Return true iff this interval matrix is included in outer.
| INTERVAL_MATRIX operator & | ( | CONST INTERVAL_MATRIX & | x, | |
| CONST INTERVAL_MATRIX & | y | |||
| ) | [friend] |
Return the intersection of x and y.
If the intersection is empty, INTERVAL_VECTOR:empty() will return true.
1.5.5