codac 1.5.6
Loading...
Searching...
No Matches
codac2_Row.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 Row = Eigen::Matrix<double,1,-1>;
17
18 inline std::ostream& operator<<(std::ostream& os, const Row& x)
19 {
20 os << x.format(codac_row_fmt());
21 return os;
22 }
23}
std::ostream & operator<<(std::ostream &os, const BoolInterval &x)
Streams out a BoolInterval.
Definition codac2_BoolInterval.h:45