From 1d2810c614bec8304fde99500f9247261d64152a Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 20 Jun 2005 20:42:20 +0000 Subject: [PATCH] Leave a number of TODOs. git-svn-id: https://svn.dealii.org/trunk@10895 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_tools.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deal.II/deal.II/source/fe/fe_tools.cc b/deal.II/deal.II/source/fe/fe_tools.cc index 08ea2dfb17..71718f6d06 100644 --- a/deal.II/deal.II/source/fe/fe_tools.cc +++ b/deal.II/deal.II/source/fe/fe_tools.cc @@ -593,6 +593,9 @@ void FETools::compute_projection_matrices(const FiniteElement& fe, FullMatrix* matrices) { +//TODO[GK]: clean up this function and make it work + Assert (false, ExcNotImplemented()); + const unsigned int nc = GeometryInfo::children_per_cell; const unsigned int n = fe.dofs_per_cell; const unsigned int nd = fe.n_components(); @@ -610,6 +613,7 @@ FETools::compute_projection_matrices(const FiniteElement& fe, * other refined, together with * DoFHandler and finite elements. */ +//TODO[GK]: This should be changed just like the function above, i.e. not use a DoFHandler at all (and use the Triangulation alone), and to use only a single triangulation. this would make it significantly more efficient Triangulation tr_coarse; Triangulation tr_fine; GridGenerator::hyper_cube (tr_coarse, 0, 1); -- 2.39.5