From 17a3e6ef37e897fb82e38a90a6072b60e9ece80b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 17 Sep 2010 18:43:01 +0000 Subject: [PATCH] Indent stuff. git-svn-id: https://svn.dealii.org/trunk@22021 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-12/step-12.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 -- 2.39.5