From 8cd342e14022bc9f84ef9f71e9d00caaabdf05cb Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 18 May 1999 13:00:42 +0000 Subject: [PATCH] . git-svn-id: https://svn.dealii.org/trunk@1339 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/Todo | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/deal.II/deal.II/Todo b/deal.II/deal.II/Todo index f4c078035d..ab0d8c916b 100644 --- a/deal.II/deal.II/Todo +++ b/deal.II/deal.II/Todo @@ -179,3 +179,15 @@ Unify lots of code of the two Cuthill-McKee dof renumbering functions Maybe single out the epsgrid from DataOut and the write_gnuplot from Triangulation to a single class like the DataOut class which does only write grids, without any data. + + +Look at this code from error_estimator.cc: + vector > > tmp (n_components, + neighbor_psi); + fe_face_values_neighbor.get_function_grads (solution, tmp); + neighbor_psi.swap (tmp[selected_component]); + I believe it is wrong in that it assumes that the outermost index + in tmp runs over the components, but get_function_grads returns it + the other way round, so it should only work if + n_components==n_q_points. there are several such places, fix them. + -- 2.39.5