16 #include <deal.II/lac/vector.templates.h>
21 # include "vector.inst"
23 # ifndef DEAL_II_WITH_COMPLEX_VALUES
32 operator=<
int>(const ::Vector<int> &);
48 # define TEMPL_COPY_CONSTRUCTOR(S1, S2) \
49 template Vector<S1>::Vector(const Vector<S2> &); \
50 template Vector<S1> &Vector<S1>::operator=<S2>(const Vector<S2> &)
55 # ifdef DEAL_II_WITH_COMPLEX_VALUES
60 # undef TEMPL_COPY_CONSTRUCTOR
63 # define TEMPL_OP_EQ(S1, S2) \
64 template void Vector<S1>::scale(const Vector<S2> &); \
65 template void Vector<S1>::equ(const S1, const Vector<S2> &)
67 TEMPL_OP_EQ(
double,
float);
68 TEMPL_OP_EQ(
float,
double);
71 # ifdef DEAL_II_WITH_COMPLEX_VALUES
72 TEMPL_OP_EQ(std::complex<double>, std::complex<float>);
73 TEMPL_OP_EQ(std::complex<float>, std::complex<double>);