From: David Wells Date: Fri, 10 May 2019 03:11:15 +0000 (-0400) Subject: step-32: fix an incorrect filtering criterion. X-Git-Tag: v9.1.0-rc1~80^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f947e05e3b10d3504258936f006bb3fd5be8aa33;p=dealii.git step-32: fix an incorrect filtering criterion. --- diff --git a/examples/step-32/doc/intro.dox b/examples/step-32/doc/intro.dox index 1a7e36c8ac..d03c8a27b9 100644 --- a/examples/step-32/doc/intro.dox +++ b/examples/step-32/doc/intro.dox @@ -792,9 +792,8 @@ and per-cell data. Suffice it to mention that we need the following: - An iterator range for those cells on which we are supposed to work. This is provided by the FilteredIterator class which acts just like every other cell iterator in deal.II with the exception that it skips all cells that do not - satisfy a particular predicate (i.e. a criterion that evaluates to true or - false). In our case, the predicate is whether a cell has the correct - subdomain id. + satisfy a particular predicate (i.e., a criterion that evaluates to true or + false). In our case, the predicate is whether a cell is locally owned. - A function that does the work on each cell for each of the tasks identified above, i.e., functions that assemble the local contributions to Stokes matrix