alpaqa 1.0.0a15
Nonconvex constrained optimization
Loading...
Searching...
No Matches
csv.cpp
Go to the documentation of this file.
1#include <alpaqa/export.h>
3
4namespace alpaqa::csv {
5
6template void ALPAQA_EXPORT //
7read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<Eigen::Index>>, char);
8template void ALPAQA_EXPORT //
9read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<float>>, char);
10template void ALPAQA_EXPORT //
11read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<double>>, char);
12template void ALPAQA_EXPORT //
13read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<long double>>, char);
14#ifdef ALPAQA_WITH_QUAD_PRECISION
15template void ALPAQA_EXPORT //
16read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<__float128>>, char);
17#endif
18
19template std::vector<Eigen::Index> ALPAQA_EXPORT //
20read_row_std_vector(std::istream &, char);
21template std::vector<float> ALPAQA_EXPORT //
22read_row_std_vector(std::istream &, char);
23template std::vector<double> ALPAQA_EXPORT //
24read_row_std_vector(std::istream &, char);
25template std::vector<long double> ALPAQA_EXPORT //
26read_row_std_vector(std::istream &, char);
27#ifdef ALPAQA_WITH_QUAD_PRECISION
28template std::vector<__float128> ALPAQA_EXPORT //
29read_row_std_vector(std::istream &, char);
30#endif
31
32} // namespace alpaqa::csv
std::vector< F > read_row_std_vector(std::istream &is, char sep)
Definition csv.tpp:163
void read_row_impl(std::istream &is, Eigen::Ref< Eigen::VectorX< F > > v, char sep)
Definition csv.tpp:152
constexpr const auto inf
Definition config.hpp:85