From 7791a4c03add1c1bf6069efb5236072c5adbef2f Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 10 Jan 2020 13:25:48 -0500 Subject: [PATCH] Remove tensor.cc --- source/base/CMakeLists.txt | 2 -- source/base/tensor.cc | 29 ------------------ source/base/tensor.inst.in | 63 -------------------------------------- 3 files changed, 94 deletions(-) delete mode 100644 source/base/tensor.cc delete mode 100644 source/base/tensor.inst.in diff --git a/source/base/CMakeLists.txt b/source/base/CMakeLists.txt index fbf5754950..2bc37ce8b4 100644 --- a/source/base/CMakeLists.txt +++ b/source/base/CMakeLists.txt @@ -85,7 +85,6 @@ SET(_unity_include_src tensor_product_polynomials_bubbles.cc tensor_product_polynomials_const.cc thread_management.cc - tensor.cc timer.cc time_stepping.cc utilities.cc @@ -128,7 +127,6 @@ SET(_inst partitioner.cuda.inst.in polynomials_rannacher_turek.inst.in symmetric_tensor.inst.in - tensor.inst.in tensor_function.inst.in tensor_function_parser.inst.in time_stepping.inst.in diff --git a/source/base/tensor.cc b/source/base/tensor.cc deleted file mode 100644 index 7ed01375a8..0000000000 --- a/source/base/tensor.cc +++ /dev/null @@ -1,29 +0,0 @@ -// --------------------------------------------------------------------- -// -// 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 - -// Required for instantiation of template functions -#include - -#include -#include -#include - -DEAL_II_NAMESPACE_OPEN - -#include "tensor.inst" - -DEAL_II_NAMESPACE_CLOSE diff --git a/source/base/tensor.inst.in b/source/base/tensor.inst.in deleted file mode 100644 index 02c1f9d06a..0000000000 --- a/source/base/tensor.inst.in +++ /dev/null @@ -1,63 +0,0 @@ -// --------------------------------------------------------------------- -// -// 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; - } - - -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; - } - - -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; - } - - -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; - } - -for (deal_II_dimension : DIMENSIONS; - number : DIFFERENTIABLE_TRILINOS_SACADO_REAL_SCALARS) - { - template class Tensor<0, deal_II_dimension, number>; - } -- 2.39.5