Go to the source code of this file.
- Date
- 2024
- Author
- Simon Rohou
- Copyright
- Copyright 2023 Codac Team
- License: GNU Lesser General Public License (LGPL)
◆ IntervalVector
Alias for a dynamic-size column vector of intervals.
Represents a column vector with a dynamic number of rows, where each element is an Interval object.
This type alias is based on Eigen's matrix template and corresponds to Eigen::Matrix<Interval,-1,1>
.
◆ operator<<()
std::ostream & codac2::operator<< |
( |
std::ostream & | os, |
|
|
const IntervalVector & | x ) |
|
inline |
Stream output operator for IntervalVector
objects.
- Parameters
-
os | The output stream to write to. |
x | The interval vector whose contents are to be printed. |
- Returns
- A reference to the modified output stream.
35 {
36 if(x.is_empty())
37 return os << "[ empty vector ]";
38
39 else
40 {
42 return os;
43 }
44 }
Eigen::IOFormat codac_vector_fmt()
Provides an Eigen IOFormat for formatting column vectors.
Definition codac2_matrices.h:218