preCICE
v3.1.2
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
{
6
namespace
utils {
7
namespace
eigenio {
8
9
inline
Eigen::IOFormat
wkt
()
10
{
11
return
Eigen::IOFormat(
12
Eigen::StreamPrecision,
13
Eigen::DontAlignCols,
14
" "
,
// Coeff separator
15
","
// Row separator
16
);
17
}
18
19
inline
Eigen::IOFormat
debug
()
20
{
21
return
wkt
();
22
}
23
24
}
// namespace eigenio
25
}
// namespace utils
26
}
// namespace precice
precice::utils::eigenio::wkt
Eigen::IOFormat wkt()
Definition
EigenIO.hpp:9
precice::utils::eigenio::debug
Eigen::IOFormat debug()
Definition
EigenIO.hpp:19
precice
Main namespace of the precice library.
Definition
Acceleration.cpp:5