1#include <alpaqa/export.h>
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);
17template std::vector<float> ALPAQA_EXPORT
19template std::vector<double> ALPAQA_EXPORT
21template std::vector<long double> ALPAQA_EXPORT
23#ifdef ALPAQA_WITH_QUAD_PRECISION
24template std::vector<__float128> ALPAQA_EXPORT
std::vector< F > read_row_std_vector(std::istream &is, char sep)
void read_row_impl(std::istream &is, Eigen::Ref< Eigen::VectorX< F > > v, char sep)