+++ /dev/null
-// ---------------------------------------------------------------------
-//
-// Copyright (C) 2016 - 2019 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.md at
-// the top level directory of deal.II.
-//
-// ---------------------------------------------------------------------
-
-#include <deal.II/base/config.h>
-
-// Required for instantiation of template functions
-#include <deal.II/base/tensor.h>
-
-#include <deal.II/differentiation/ad/adolc_product_types.h>
-#include <deal.II/differentiation/ad/sacado_number_types.h>
-#include <deal.II/differentiation/ad/sacado_product_types.h>
-
-DEAL_II_NAMESPACE_OPEN
-
-#include "tensor.inst"
-
-DEAL_II_NAMESPACE_CLOSE
+++ /dev/null
-// ---------------------------------------------------------------------
-//
-// Copyright (C) 2016 - 2018 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.md at
-// the top level directory of deal.II.
-//
-// ---------------------------------------------------------------------
-
-
-for (rank : RANKS; deal_II_dimension : DIMENSIONS; number : REAL_SCALARS)
- {
- template class Tensor<rank, deal_II_dimension, number>;
- }
-
-
-for (deal_II_dimension : DIMENSIONS; number : REAL_SCALARS)
- {
- template class Tensor<0, deal_II_dimension, number>;
- }
-
-
-for (rank : RANKS; deal_II_dimension : DIMENSIONS; number : COMPLEX_SCALARS)
- {
- template class Tensor<rank, deal_II_dimension, number>;
- }
-
-
-for (deal_II_dimension : DIMENSIONS; number : COMPLEX_SCALARS)
- {
- template class Tensor<0, deal_II_dimension, number>;
- }
-
-
-for (rank : RANKS; deal_II_dimension : DIMENSIONS;
- number : DIFFERENTIABLE_ADOLC_REAL_SCALARS)
- {
- template class Tensor<rank, deal_II_dimension, number>;
- }
-
-
-for (deal_II_dimension : DIMENSIONS; number : DIFFERENTIABLE_ADOLC_REAL_SCALARS)
- {
- template class Tensor<0, deal_II_dimension, number>;
- }
-
-for (rank : RANKS; deal_II_dimension : DIMENSIONS;
- number : DIFFERENTIABLE_TRILINOS_SACADO_REAL_SCALARS)
- {
- template class Tensor<rank, deal_II_dimension, number>;
- }
-
-for (deal_II_dimension : DIMENSIONS;
- number : DIFFERENTIABLE_TRILINOS_SACADO_REAL_SCALARS)
- {
- template class Tensor<0, deal_II_dimension, number>;
- }