codac 1.5.6
Loading...
Searching...
No Matches
codac2_Matrix.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include "codac2_matrices.h"
13
14namespace codac2
15{
16 using Matrix = Eigen::Matrix<double,-1,-1>;
17
18 inline std::ostream& operator<<(std::ostream& os, const Matrix& x)
19 {
20 os << x.format(codac_matrix_fmt());
21 return os;
22 }
23}
std::ostream & operator<<(std::ostream &os, const BoolInterval &x)
Streams out a BoolInterval.
Definition codac2_BoolInterval.h:45