From: bangerth Date: Fri, 18 Feb 2011 16:56:49 +0000 (+0000) Subject: Remove debug output. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e04ede71d227c64fb96904df053e0f94998b74b;p=dealii-svn.git Remove debug output. git-svn-id: https://svn.dealii.org/trunk@23393 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-46/step-46.cc b/deal.II/examples/step-46/step-46.cc index bb4bfc6ee5..1434dd2d78 100644 --- a/deal.II/examples/step-46/step-46.cc +++ b/deal.II/examples/step-46/step-46.cc @@ -110,7 +110,7 @@ BoundaryValues::value (const Point &p, if (component == 1) return std::sin(numbers::PI*p[0]); - + return 0; } @@ -205,11 +205,6 @@ void StokesProblem::setup_dofs () component_mask); } - for (unsigned int i=0; i::assemble_system () QGauss stokes_quadrature(stokes_degree+2); hp::QCollection q_collection; q_collection.push_back (stokes_quadrature); - + hp::FEValues hp_fe_values (fe_collection, q_collection, update_values | update_quadrature_points | @@ -277,7 +272,7 @@ void StokesProblem::assemble_system () hp_fe_values.reinit (cell); const FEValues &fe_values = hp_fe_values.get_present_fe_values(); - + local_matrix = 0; local_rhs = 0; @@ -392,10 +387,10 @@ void StokesProblem::run () for (unsigned int f=0; f::faces_per_cell; ++f) if (cell->face(f)->center()[dim-1] == 1) cell->face(f)->set_all_boundary_indicators(1); - + triangulation.refine_global (3-dim); - for (unsigned int refinement_cycle = 0; refinement_cycle<6; + for (unsigned int refinement_cycle = 0; refinement_cycle<1; ++refinement_cycle) { std::cout << "Refinement cycle " << refinement_cycle << std::endl;