From bfbc5f07117148fcc0cc64c258f8840e1963b99c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 31 Jan 2011 03:40:41 +0000 Subject: [PATCH] Follow the usual naming convection: use "boundary" instead of "bdry". git-svn-id: https://svn.dealii.org/trunk@23275 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-39/step-39.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index fad4b62eb8..ce4beb773c 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -3,7 +3,7 @@ /* $Id$ */ /* */ -/* Copyright (C) 2010 by the deal.II authors */ +/* Copyright (C) 2010, 2011 by the deal.II authors */ /* */ /* This file is subject to QPL and may not be distributed */ /* without copyright and license information. Please refer */ @@ -111,7 +111,7 @@ class MatrixIntegrator : public Subscriptor public: static void cell(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); - static void bdry(MeshWorker::DoFInfo& dinfo, + static void boundary(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); static void face(MeshWorker::DoFInfo& dinfo1, MeshWorker::DoFInfo& dinfo2, @@ -147,7 +147,7 @@ void MatrixIntegrator::cell( template -void MatrixIntegrator::bdry( +void MatrixIntegrator::boundary( MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info) { @@ -185,7 +185,7 @@ class RHSIntegrator : public Subscriptor { public: static void cell(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); - static void bdry(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); + static void boundary(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); static void face(MeshWorker::DoFInfo& dinfo1, MeshWorker::DoFInfo& dinfo2, typename MeshWorker::IntegrationInfo& info1, @@ -199,7 +199,7 @@ void RHSIntegrator::cell(MeshWorker::DoFInfo&, typename MeshWorker::In template -void RHSIntegrator::bdry(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info) +void RHSIntegrator::boundary(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info) { const FEValuesBase& fe = info.fe_values(); Vector& local_vector = dinfo.vector(0).block(0); @@ -236,7 +236,7 @@ class Estimator : public Subscriptor { public: static void cell(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); - static void bdry(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); + static void boundary(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info); static void face(MeshWorker::DoFInfo& dinfo1, MeshWorker::DoFInfo& dinfo2, typename MeshWorker::IntegrationInfo& info1, @@ -269,7 +269,7 @@ void Estimator::cell(MeshWorker::DoFInfo& dinfo, typename MeshWorker:: // element solution and the correct // boundary condition. template -void Estimator::bdry(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info) +void Estimator::boundary(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationInfo& info) { const FEValuesBase& fe = info.fe_values(); @@ -583,7 +583,7 @@ Step39::assemble_matrix() dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &MatrixIntegrator::cell, - &MatrixIntegrator::bdry, + &MatrixIntegrator::boundary, &MatrixIntegrator::face, assembler); } @@ -626,7 +626,7 @@ Step39::assemble_mg_matrix() mg_dof_handler.begin(), mg_dof_handler.end(), dof_info, info_box, &MatrixIntegrator::cell, - &MatrixIntegrator::bdry, + &MatrixIntegrator::boundary, &MatrixIntegrator::face, assembler); } @@ -668,7 +668,7 @@ Step39::assemble_right_hand_side() dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &RHSIntegrator::cell, - &RHSIntegrator::bdry, + &RHSIntegrator::boundary, &RHSIntegrator::face, assembler); @@ -861,7 +861,7 @@ Step39::estimate() dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &Estimator::cell, - &Estimator::bdry, + &Estimator::boundary, &Estimator::face, assembler); return estimates.block(0).l2_norm(); -- 2.39.5