// ---------------------------------------------------------------------
//
-// Copyright (C) 1998 - 2013 by the deal.II authors
+// Copyright (C) 1998 - 2014 by the deal.II authors
//
// This file is part of the deal.II library.
//
}
-for (deal_II_dimension : DIMENSIONS)
+for (VEC : SERIAL_VECTORS ; deal_II_dimension : DIMENSIONS)
{
namespace VectorTools \{
template
void interpolate_to_different_mesh
(const DoFHandler<deal_II_dimension> &,
- const Vector<float> &,
+ const VEC &,
const DoFHandler<deal_II_dimension> &,
- Vector<float> &);
+ VEC &);
template
void interpolate_to_different_mesh
(const DoFHandler<deal_II_dimension> &,
- const Vector<float> &,
+ const VEC &,
const DoFHandler<deal_II_dimension> &,
const ConstraintMatrix &,
- Vector<float> &);
+ VEC &);
template
void interpolate_to_different_mesh
(const InterGridMap<DoFHandler<deal_II_dimension> > &,
- const Vector<float> &,
+ const VEC &,
const ConstraintMatrix &,
- Vector<float> &);
-
- template
- void interpolate_to_different_mesh
- (const DoFHandler<deal_II_dimension> &,
- const Vector<double> &,
- const DoFHandler<deal_II_dimension> &,
- Vector<double> &);
-
- template
- void interpolate_to_different_mesh
- (const DoFHandler<deal_II_dimension> &,
- const Vector<double> &,
- const DoFHandler<deal_II_dimension> &,
- const ConstraintMatrix &,
- Vector<double> &);
-
- template
- void interpolate_to_different_mesh
- (const InterGridMap<DoFHandler<deal_II_dimension> > &,
- const Vector<double> &,
- const ConstraintMatrix &,
- Vector<double> &);
-
+ VEC &);
\}
}