From f947e05e3b10d3504258936f006bb3fd5be8aa33 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 9 May 2019 23:11:15 -0400 Subject: [PATCH] step-32: fix an incorrect filtering criterion. --- examples/step-32/doc/intro.dox | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -- 2.39.5