From 9d2d9161d9fbcd36323e46a3b5471f1f723188d9 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 25 Jan 2010 15:06:59 +0000 Subject: [PATCH] remove debug output git-svn-id: https://svn.dealii.org/trunk@20444 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-39/step-39.cc | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index ca908a2997..98f87b5099 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -424,8 +424,6 @@ Step39::assemble_matrix() MeshWorker::IntegrationInfoBox info_box(dof_handler); info_box.initialize(integrator, fe, mapping); MeshWorker::integration_loop(dof_handler.begin_active(), dof_handler.end(), info_box, integrator); - -// matrix.print_formatted(std::cout, 2, false, 5, "*"); } @@ -446,19 +444,6 @@ Step39::assemble_mg_matrix() MeshWorker::IntegrationInfoBox info_box(mg_dof_handler); info_box.initialize(integrator, fe, mapping); MeshWorker::integration_loop(mg_dof_handler.begin(), mg_dof_handler.end(), info_box, integrator); - -// for (unsigned int l=0;l::solve() MGSmootherRelaxation, RELAXATION, Vector > mg_smoother(mem); RELAXATION::AdditionalData smoother_data(1.); -// RELAXATION::AdditionalData smoother_data(fe.dofs_per_cell, 1.); mg_smoother.initialize(mg_matrix, smoother_data); // Do two smoothing steps per level @@ -576,7 +560,6 @@ Step39::estimate() integrator.initialize_gauss_quadrature(n_gauss_points, n_gauss_points+1, n_gauss_points); UpdateFlags update_flags = update_values | update_gradients; integrator.add_update_flags(update_flags | update_hessians, true, true, true, true); -// integrator.add_update_flags(update_hessians, true, false, false, false); integrator.add_update_flags(update_quadrature_points, false, true, false, false); NamedData* > out_data; -- 2.39.5