From: kanschat Date: Mon, 8 Aug 2011 10:31:16 +0000 (+0000) Subject: adjust doc and parameter name to reality X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5c0c83ed76c22724d566797e7841b4f9b16c03c;p=dealii-svn.git adjust doc and parameter name to reality git-svn-id: https://svn.dealii.org/trunk@24029 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/numerics/mesh_worker_assembler.h b/deal.II/include/deal.II/numerics/mesh_worker_assembler.h index 1722733bea..d591b3cf08 100644 --- a/deal.II/include/deal.II/numerics/mesh_worker_assembler.h +++ b/deal.II/include/deal.II/numerics/mesh_worker_assembler.h @@ -101,13 +101,17 @@ namespace MeshWorker void initialize(unsigned int n); /** * Initialize the local data - * in the - * DoFInfo - * object used later for - * assembling. + * in the DoFInfo object used + * later for assembling. + * + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, bool interior_face); + void initialize_info(DOFINFO& info, bool face); /** * Assemble the local values @@ -200,19 +204,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** * Assemble the local values @@ -264,24 +263,17 @@ namespace MeshWorker void initialize(const ConstraintMatrix& constraints); /** * Initialize the local data - * in the - * DoFInfo - * object used later for - * assembling. + * in the DoFInfo object used + * later for assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** * Assemble the local residuals @@ -352,19 +344,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** @@ -455,19 +442,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** * Assemble the matrix @@ -581,19 +563,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** * Assemble the matrix @@ -793,19 +770,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** @@ -937,19 +909,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, - bool interior_face) const; + void initialize_info(DOFINFO& info, bool face) const; /** @@ -1072,18 +1039,14 @@ namespace MeshWorker * object used later for * assembling. * - * The second parameter is - * used to distinguish - * between the data used on - * cells and boundary faces - * on the one hand and - * interior faces on the - * other. Interior faces may - * require additional data - * being initialized. + * The info object refers to + * a cell if + * !face, or + * else to an interior or + * boundary face. */ template - void initialize_info(DOFINFO& info, bool) const; + void initialize_info(DOFINFO& info, bool face) const; /** * Assemble the matrix @@ -1409,10 +1372,9 @@ namespace MeshWorker template template inline void - MatrixSimple::initialize_info(DOFINFO& info, - bool interior_face) const + MatrixSimple::initialize_info(DOFINFO& info, bool face) const { - info.initialize_matrices(1, interior_face); + info.initialize_matrices(1, face); } @@ -1508,10 +1470,9 @@ namespace MeshWorker template template inline void - MGMatrixSimple::initialize_info(DOFINFO& info, - bool interior_face) const + MGMatrixSimple::initialize_info(DOFINFO& info, bool face) const { - info.initialize_matrices(1, interior_face); + info.initialize_matrices(1, face); } @@ -1835,9 +1796,9 @@ namespace MeshWorker inline void MatrixLocalBlocksToGlobalBlocks::initialize_info( DOFINFO& info, - bool interior_face) const + bool face) const { - info.initialize_matrices(*matrices, interior_face); + info.initialize_matrices(*matrices, face); } @@ -1957,9 +1918,9 @@ namespace MeshWorker inline void MGMatrixLocalBlocksToGlobalBlocks::initialize_info( DOFINFO& info, - bool interior_face) const + bool face) const { - info.initialize_matrices(*matrices, interior_face); + info.initialize_matrices(*matrices, face); } @@ -2117,10 +2078,10 @@ namespace MeshWorker template inline void SystemSimple::initialize_info(DOFINFO& info, - bool interior_face) const + bool face) const { - MatrixSimple::initialize_info(info, interior_face); - ResidualSimple::initialize_info(info, interior_face); + MatrixSimple::initialize_info(info, face); + ResidualSimple::initialize_info(info, face); }