From: Guido Kanschat Date: Fri, 18 Sep 2009 23:19:38 +0000 (+0000) Subject: add comment on becoming thread safe X-Git-Tag: v8.0.0~7099 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cecf73a8544b3b87c81fb9800727fd38e9bd818c;p=dealii.git add comment on becoming thread safe git-svn-id: https://svn.dealii.org/trunk@19476 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/polynomials_raviart_thomas.cc b/deal.II/base/source/polynomials_raviart_thomas.cc index 17cba34667..b831d9969e 100644 --- a/deal.II/base/source/polynomials_raviart_thomas.cc +++ b/deal.II/base/source/polynomials_raviart_thomas.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2004, 2005, 2006, 2007, 2008 by the deal.II authors +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -18,6 +18,8 @@ #include //TODO[WB]: This class is not thread-safe: it uses mutable member variables that contain temporary state. this is not what one would want when one uses a finite element object in a number of different contexts on different threads: finite element objects should be stateless +//TODO:[GK] This can be achieved by writing a function in Polynomial space which does the rotated fill performed below and writes the data into the right data structures. The same function would be used +//by Nedelec polynomials. DEAL_II_NAMESPACE_OPEN