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