preCICE
v3.2.0
Loading...
Searching...
No Matches
src
utils
EigenIO.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <Eigen/Core>
4
5
namespace
precice::utils::eigenio
{
6
7
inline
Eigen::IOFormat
wkt
()
8
{
9
return
Eigen::IOFormat(
10
Eigen::StreamPrecision,
11
Eigen::DontAlignCols,
12
" "
,
// Coeff separator
13
","
// Row separator
14
);
15
}
16
17
inline
Eigen::IOFormat
debug
()
18
{
19
return
wkt
();
20
}
21
22
}
// namespace precice::utils::eigenio
precice::utils::eigenio
Definition
EigenIO.hpp:5
precice::utils::eigenio::wkt
Eigen::IOFormat wkt()
Definition
EigenIO.hpp:7
precice::utils::eigenio::debug
Eigen::IOFormat debug()
Definition
EigenIO.hpp:17