From 371a71a783fc84f2c4b07852db71ee9ab589af0e Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 7 Feb 2019 14:00:08 +0100 Subject: [PATCH] Replace 'scalar' by 'integer' --- include/deal.II/lac/chunk_sparsity_pattern.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/deal.II/lac/chunk_sparsity_pattern.h b/include/deal.II/lac/chunk_sparsity_pattern.h index cc0d6969c6..e958ecd89a 100644 --- a/include/deal.II/lac/chunk_sparsity_pattern.h +++ b/include/deal.II/lac/chunk_sparsity_pattern.h @@ -443,11 +443,11 @@ public: * these iterators) must be a container itself that provides functions * begin and end designating a range of iterators that * describe the contents of one line. Dereferencing these inner iterators - * must either yield a pair of a scalar as column index and a + * must either yield a pair of an integer as column index and a * value of arbitrary type (such a type would be used if we wanted to - * describe a sparse matrix with one such object), or simply a scalar (if we + * describe a sparse matrix with one such object), or simply an integer (if we * only wanted to describe a sparsity pattern). The function is able to - * determine itself whether a scalar or a pair is what we get after + * determine itself whether an integer or a pair is what we get after * dereferencing the inner iterators, through some template magic. * * While the order of the outer iterators denotes the different rows of the @@ -470,7 +470,7 @@ public: * Note that this example works since the iterators dereferenced yield * containers with functions begin and end (namely * std::vectors), and the inner iterators dereferenced yield - * scalars as column indices. Note that we could have replaced + * integers as column indices. Note that we could have replaced * each of the two std::vector occurrences by std::list, * and the inner one by std::set as well. * @@ -492,7 +492,7 @@ public: * @endcode * * This example works because dereferencing iterators of the inner type - * yields a pair of scalars and a value, the first of which we + * yields a pair of integers and a value, the first of which we * take as column index. As previously, the outer std::vector could * be replaced by std::list, and the inner * std::map could be replaced by -- 2.39.5