alpaqa 1.0.0a9
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<float>>, char);
8template void ALPAQA_EXPORT //
9read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<double>>, char);
10template void ALPAQA_EXPORT //
11read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<long double>>, char);
12#ifdef ALPAQA_WITH_QUAD_PRECISION
13template void ALPAQA_EXPORT //
14read_row_impl(std::istream &, Eigen::Ref<Eigen::VectorX<__float128>>, char);
15#endif
16
17template std::vector<float> ALPAQA_EXPORT //
18read_row_std_vector(std::istream &, char);
19template std::vector<double> ALPAQA_EXPORT //
20read_row_std_vector(std::istream &, char);
21template std::vector<long double> ALPAQA_EXPORT //
22read_row_std_vector(std::istream &, char);
23#ifdef ALPAQA_WITH_QUAD_PRECISION
24template std::vector<__float128> ALPAQA_EXPORT //
25read_row_std_vector(std::istream &, char);
26#endif
27
28} // namespace alpaqa::csv
std::vector< F > read_row_std_vector(std::istream &is, char sep)
Definition: csv.tpp:123
void read_row_impl(std::istream &is, Eigen::Ref< Eigen::VectorX< F > > v, char sep)
Definition: csv.tpp:114