From d83d096f196402f47c31acb18043ad78d9a2e984 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 25 Mar 2010 20:12:28 +0000 Subject: [PATCH] Change Function::vector_gradient_list. git-svn-id: https://svn.dealii.org/trunk@20894 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/function.cc | 7 +++---- deal.II/doc/news/changes.h | 8 ++++++++ 2 files changed, 11 insertions(+), 4 deletions(-) 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.
    -- 2.39.5