16 #include <deal.II/lac/vector.templates.h> 18 DEAL_II_NAMESPACE_OPEN
20 #include "vector.inst" 39 #define TEMPL_COPY_CONSTRUCTOR(S1,S2) \ 40 template Vector<S1>::Vector (const Vector<S2> &); \ 41 template Vector<S1>& Vector<S1>::operator=<S2> (const Vector<S2> &) 43 TEMPL_COPY_CONSTRUCTOR(
double,
float);
44 TEMPL_COPY_CONSTRUCTOR(
float,
double);
46 TEMPL_COPY_CONSTRUCTOR(std::complex<double>,std::complex<float>);
47 TEMPL_COPY_CONSTRUCTOR(std::complex<float>,std::complex<double>);
49 #undef TEMPL_COPY_CONSTRUCTOR 52 #define TEMPL_OP_EQ(S1,S2) \ 53 template void Vector<S1>::scale (const Vector<S2>&); \ 54 template void Vector<S1>::equ (const S1, const Vector<S2>&) 56 TEMPL_OP_EQ(
double,
float);
57 TEMPL_OP_EQ(
float,
double);
60 TEMPL_OP_EQ(std::complex<double>,std::complex<float>);
61 TEMPL_OP_EQ(std::complex<float>,std::complex<double>);
75 DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcMessage(std::string arg1)
numbers::NumberTraits< Number >::real_type real_type
#define Assert(cond, exc)
real_type lp_norm(const real_type p) const