From: wolf Date: Tue, 16 May 2000 09:06:40 +0000 (+0000) Subject: templatized vector args. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7a17f7b219e13589d95936318dab9428aa61b44;p=dealii-svn.git templatized vector args. git-svn-id: https://svn.dealii.org/trunk@2862 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2000/c-3-0.html b/deal.II/doc/news/2000/c-3-0.html index aa81e189ee..9585c4e294 100644 --- a/deal.II/doc/news/2000/c-3-0.html +++ b/deal.II/doc/news/2000/c-3-0.html @@ -40,7 +40,7 @@

  • - There is now a function invert + New: There is now a function invert (Tensor<2,dim>) that returns the inverse of a tensor of rank 2.
    @@ -277,6 +277,24 @@
    (WB 2000/05/15)

    + +
  • + New: many functions are now templatized on the data type of the + vector they take or return. They thus now support + Vector<float>, but also + BlockVector<...>. An + incomplete and growing list of functions that were treated in + this way is: + DoFAccess::get_dof_values, + DoFAccess::set_dof_values, + DoFAccess::get_interpolated_dof_values, + DoFAccess::set_dof_values_by_interpolation, + FEValues::get_function_values, + FEValues::get_function_grads, + FEValues::get_function_2nd_derivatives. +
    + (WB 2000/05/16) +