--- /dev/null
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2017 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+#include <deal.II/matrix_free/evaluation_selector.h>
+
+DEAL_II_NAMESPACE_OPEN
+
+#include "evaluation_selector.inst"
+
+DEAL_II_NAMESPACE_CLOSE
--- /dev/null
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2017 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+for (deal_II_dimension : DIMENSIONS; components : SPACE_DIMENSIONS; scalar_type : REAL_SCALARS)
+{
+ template
+ void
+ SelectEvaluator<deal_II_dimension, -1, 0, components, scalar_type>::integrate
+ (const internal::MatrixFreeFunctions::ShapeInfo<VectorizedArray<scalar_type> > &shape_info,
+ VectorizedArray<scalar_type> *[], VectorizedArray<scalar_type> *[],
+ VectorizedArray<scalar_type> *[][deal_II_dimension], VectorizedArray<scalar_type> *,
+ const bool, const bool);
+
+ template
+ void
+ SelectEvaluator<deal_II_dimension, -1, 0, components, scalar_type>::evaluate
+ (const internal::MatrixFreeFunctions::ShapeInfo<VectorizedArray<scalar_type> > &shape_info,
+ VectorizedArray<scalar_type> *[], VectorizedArray<scalar_type> *[],
+ VectorizedArray<scalar_type> *[][deal_II_dimension],
+ VectorizedArray<scalar_type> *[][(deal_II_dimension*(deal_II_dimension+1))/2],
+ VectorizedArray<scalar_type> *, const bool, const bool, const bool);
+}