From c8d400c30de6c7a412abee790e93c0df7d162715 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 10 Sep 2001 08:57:23 +0000 Subject: [PATCH] Delete debug output. Remove TODO as this seems unnecessary and intractible. git-svn-id: https://svn.dealii.org/trunk@4951 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/mapping_q1.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/deal.II/deal.II/source/fe/mapping_q1.cc b/deal.II/deal.II/source/fe/mapping_q1.cc index 1a0e665d11..5083744891 100644 --- a/deal.II/deal.II/source/fe/mapping_q1.cc +++ b/deal.II/deal.II/source/fe/mapping_q1.cc @@ -301,8 +301,6 @@ MappingQ1::update_once (const UpdateFlags in) const | update_normal_vectors)) out |= update_transformation_gradients; - // cerr << "Once: " << hex << out << dec << endl; - return out; } @@ -319,8 +317,6 @@ MappingQ1::update_each (const UpdateFlags in) const | update_boundary_forms | update_normal_vectors)); - // cerr << "Mapping-each " << hex << in << ' ' << out; - // The following is a little incorrect: // If not applied on a face, // update_boundary_forms does not @@ -330,8 +326,6 @@ MappingQ1::update_each (const UpdateFlags in) const // update_boundary_forms is simply // ignored for the interior of a // cell. -//TODO:[RH,GK] Consider giving this function information on whether we are on -// a face. if (out & (update_JxW_values |update_normal_vectors)) out |= update_boundary_forms; @@ -342,8 +336,6 @@ MappingQ1::update_each (const UpdateFlags in) const | update_normal_vectors)) out |= update_contravariant_transformation; - // cerr << " " << hex << out << dec << endl; - return out; } -- 2.39.5