codac 2.0.0
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{
24 using Row = Eigen::Matrix<double,1,-1>;
25
33 inline std::ostream& operator<<(std::ostream& os, const Row& x)
34 {
35 os << x.format(codac_row_fmt());
36 return os;
37 }
38}
std::ostream & operator<<(std::ostream &os, const BoolInterval &x)
Streams out a BoolInterval.
Definition codac2_BoolInterval.h:64
Eigen::Matrix< double, 1,-1 > Row
Alias for a dynamically-sized row vector of doubles.
Definition codac2_Row.h:24
Eigen::IOFormat codac_row_fmt()
Provides an Eigen IOFormat for formatting row vectors.
Definition codac2_matrices.h:205