preCICE v3.2.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
EigenIO.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <Eigen/Core>
4
6
7inline Eigen::IOFormat wkt()
8{
9 return Eigen::IOFormat(
10 Eigen::StreamPrecision,
11 Eigen::DontAlignCols,
12 " ", // Coeff separator
13 "," // Row separator
14 );
15}
16
17inline Eigen::IOFormat debug()
18{
19 return wkt();
20}
21
22} // namespace precice::utils::eigenio
Eigen::IOFormat wkt()
Definition EigenIO.hpp:7
Eigen::IOFormat debug()
Definition EigenIO.hpp:17