From: bangerth Date: Fri, 17 Sep 2010 18:43:01 +0000 (+0000) Subject: Indent stuff. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f249deb2e3ef6ac38d19e58ecfe7c0e8d46c594f;p=dealii-svn.git Indent stuff. git-svn-id: https://svn.dealii.org/trunk@22021 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index 01a3c1a8ec..210c6f8e64 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -178,7 +178,7 @@ class Step12 // system_matrix. SparsityPattern sparsity_pattern; SparseMatrix system_matrix; - + Vector solution; Vector right_hand_side; @@ -201,7 +201,7 @@ class Step12 // below. typedef MeshWorker::DoFInfo DoFInfo; typedef MeshWorker::IntegrationInfo CellInfo; - + // The following three functions // are then the ones that get called // inside the generic loop over all @@ -264,7 +264,7 @@ void Step12::setup_system () // building the pattern, this object is // copied to sparsity_pattern // and can be discarded. - + // To build the sparsity pattern for DG // discretizations, we can call the // function analogue to @@ -311,7 +311,7 @@ void Step12::assemble_system () // the global sparse matrix and the // right hand side vector. MeshWorker::IntegrationInfoBox info_box; - + // First, we initialize the // quadrature formulae and the // update flags in the worker base @@ -326,9 +326,9 @@ void Step12::assemble_system () // over this value three times. const unsigned int n_gauss_points = dof_handler.get_fe().degree+1; info_box.initialize_gauss_quadrature(n_gauss_points, - n_gauss_points, - n_gauss_points); - + n_gauss_points, + n_gauss_points); + // These are the types of values we // need for integrating our // system. They are added to the @@ -364,7 +364,7 @@ void Step12::assemble_system () MeshWorker::Assembler::SystemSimple, Vector > assembler; assembler.initialize(system_matrix, right_hand_side); - + // Finally, the integration loop // over all active cells // (determined by the first