<ol>
+ <li> Fixed: The Tensor class was not explicitly instantiated. This did
+ not matter in almost all contexts because its members are all defined
+ as @p inline in the header file. The only cases where it matters if one
+ (or the compiler) were to take the address of one of the static member
+ variables.
+ <br>
+ (Wolfgang Bangerth, 2016/06/03)
+ </li>
+
<li> New: Return value std::vector<unsigned int> vertex_mapping for the
DoFTools::make_vertex_patches() function, including the optional inversion
of the vertex mapping.
## ---------------------------------------------------------------------
##
-## Copyright (C) 2012 - 2015 by the deal.II authors
+## Copyright (C) 2012 - 2016 by the deal.II authors
##
## This file is part of the deal.II library.
##
tensor_product_polynomials_bubbles.cc
tensor_product_polynomials_const.cc
thread_management.cc
+ tensor.cc
timer.cc
time_stepping.cc
utilities.cc
function_time.inst.in
mpi.inst.in
polynomials_rannacher_turek.inst.in
+ tensor.inst.in
tensor_function.inst.in
time_stepping.inst.in
)
--- /dev/null
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 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/base/tensor.h>
+
+DEAL_II_NAMESPACE_OPEN
+
+
+#include "tensor.inst"
+
+
+DEAL_II_NAMESPACE_CLOSE
--- /dev/null
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 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 (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>;
+}