codac 1.5.6
Loading...
Searching...
No Matches
codac2_IntervalMatrix.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include "codac2_matrices.h"
13#include "codac2_Vector.h"
14
15namespace codac2
16{
17 using IntervalMatrix = Eigen::Matrix<Interval,-1,-1>;
18
19 inline std::ostream& operator<<(std::ostream& os, const IntervalMatrix& x)
20 {
21 if(x.is_empty())
22 return os << "[ empty " << x.rows() << "x" << x.cols() << " mat ]";
23
24 else
25 {
26 os << x.format(codac_matrix_fmt());
27 return os;
28 }
29 }
30}
Interval class, for representing closed and connected subsets of .
Definition codac2_Interval.h:62
std::ostream & operator<<(std::ostream &os, const BoolInterval &x)
Streams out a BoolInterval.
Definition codac2_BoolInterval.h:45