From: Wolfgang Bangerth Date: Thu, 25 Mar 2010 20:12:28 +0000 (+0000) Subject: Change Function::vector_gradient_list. X-Git-Tag: v8.0.0~6270 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5990235752ecbf7fdef9f0e7c2b3ca727a2108be;p=dealii.git Change Function::vector_gradient_list. git-svn-id: https://svn.dealii.org/trunk@20894 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/function.cc b/deal.II/base/source/function.cc index e0c981ee3f..d8b029ed38 100644 --- a/deal.II/base/source/function.cc +++ b/deal.II/base/source/function.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -145,9 +145,8 @@ void Function::vector_gradient_list (const std::vector > { Assert (gradients[i].size() == n_components, ExcDimensionMismatch(gradients[i].size(), n_components)); - for (unsigned int component=0; componentbase
    +
  1. Changed: The Function::vector_gradient_list function was previously + implemented by calling Function::gradient on each point and each component. + It has been changed to now call Function::vector_gradient on each point + only, and derived classes should implement this function accordingly. +
    + (WB 2010/02/10) +

  2. +
  3. Fixed: The file data_out_base.cc could not be compiled when Tecplot was available. This should now be fixed.