From: kanschat Date: Wed, 30 May 2007 16:37:53 +0000 (+0000) Subject: do not do second derivatives... takes too long X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f50509df8aae91a37bc345835fdd720245f9678;p=dealii-svn.git do not do second derivatives... takes too long git-svn-id: https://svn.dealii.org/trunk@14733 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/benchmarks/dof_handler_timing.cc b/tests/benchmarks/dof_handler_timing.cc index d3838b4b9f..e099c5fdb7 100644 --- a/tests/benchmarks/dof_handler_timing.cc +++ b/tests/benchmarks/dof_handler_timing.cc @@ -90,9 +90,9 @@ void check_values (const DoFHandler& dof) fevalues(dof, update_values | update_gradients | update_q_points | update_JxW_values); deallog << "values|gradients|qpoints|JxW" << std::endl; - fevalues(dof, update_values | update_gradients | update_second_derivatives - | update_q_points | update_JxW_values); - deallog << "values|gradients|2nds|qpoints|JxW" << std::endl; +// fevalues(dof, update_values | update_gradients | update_second_derivatives +// | update_q_points | update_JxW_values); +// deallog << "values|gradients|2nds|qpoints|JxW" << std::endl; }