From: David Wells Date: Sat, 18 Apr 2015 15:58:48 +0000 (-0400) Subject: Use the prefix "n_", not "num_". X-Git-Tag: v8.3.0-rc1~245^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c243ef4fd56370d182574e3ae7ce1519d73a3317;p=dealii.git Use the prefix "n_", not "num_". --- 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);