From: wolf Date: Fri, 13 Aug 1999 07:36:12 +0000 (+0000) Subject: Comment out the HUGE_VAL problem. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01ff8c8932ef444e61ee6ff45e1cf8ef9c7283cd;p=dealii-svn.git Comment out the HUGE_VAL problem. git-svn-id: https://svn.dealii.org/trunk@1692 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/vectors.cc b/deal.II/deal.II/source/numerics/vectors.cc index 48b5773602..2c356c627b 100644 --- a/deal.II/deal.II/source/numerics/vectors.cc +++ b/deal.II/deal.II/source/numerics/vectors.cc @@ -604,7 +604,9 @@ VectorTools::interpolate_boundary_values (const DoFHandler &dof, const pair index = fe.face_system_to_component_index(i); const double s = dof_values[i](index.first); - if (s != HUGE_VAL) +// properly fix this place to work without retreat to HUGE_VAL +// to fix: GK +// if (s != HUGE_VAL) boundary_values[face_dofs[i]] = s; } }