From 8f50509df8aae91a37bc345835fdd720245f9678 Mon Sep 17 00:00:00 2001 From: kanschat Date: Wed, 30 May 2007 16:37:53 +0000 Subject: [PATCH] do not do second derivatives... takes too long git-svn-id: https://svn.dealii.org/trunk@14733 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/benchmarks/dof_handler_timing.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.39.5