From c243ef4fd56370d182574e3ae7ce1519d73a3317 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 18 Apr 2015 11:58:48 -0400 Subject: [PATCH] Use the prefix "n_", not "num_". --- include/deal.II/lac/block_vector.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/deal.II/lac/block_vector.h b/include/deal.II/lac/block_vector.h index 4d176b67b2..cb083a7356 100644 --- a/include/deal.II/lac/block_vector.h +++ b/include/deal.II/lac/block_vector.h @@ -89,14 +89,14 @@ public: /** * Constructor. There are three ways to use this constructor. First, without * any arguments, it generates an object with no blocks. Given one argument, - * it initializes num_blocks blocks, but these blocks have size + * it initializes n_blocks blocks, but these blocks have size * zero. The third variant finally initializes all blocks to the same size * block_size. * * Confer the other constructor further down if you intend to use blocks of * different sizes. */ - explicit BlockVector (const unsigned int num_blocks = 0, + explicit BlockVector (const unsigned int n_blocks = 0, const size_type block_size = 0); /** @@ -213,8 +213,8 @@ public: operator= (const TrilinosWrappers::BlockVector &V); #endif /** - * Reinitialize the BlockVector to contain num_blocks blocks of - * size block_size each. + * Reinitialize the BlockVector to contain n_blocks blocks of size + * block_size each. * * If the second argument is left at its default value, then the block * vector allocates the specified number of blocks but leaves them at zero @@ -224,7 +224,7 @@ public: * * If fast==false, the vector is filled with zeros. */ - void reinit (const unsigned int num_blocks, + void reinit (const unsigned int n_blocks, const size_type block_size = 0, const bool fast = false); -- 2.39.5