From: tcclevenger Date: Wed, 29 Mar 2017 17:17:32 +0000 (-0400) Subject: fixed some typos/added settings explanation X-Git-Tag: v9.0.0-rc1~1769^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4067%2Fhead;p=dealii.git fixed some typos/added settings explanation --- diff --git a/include/deal.II/distributed/shared_tria.h b/include/deal.II/distributed/shared_tria.h index c1a53576b5..8306fbea91 100644 --- a/include/deal.II/distributed/shared_tria.h +++ b/include/deal.II/distributed/shared_tria.h @@ -74,6 +74,11 @@ namespace parallel /** * Configuration flags for distributed Triangulations to be set in the * constructor. Settings can be combined using bitwise OR. + * + * The constructor requires that exactly one of partition_metis, + * partition_zorder, and partition_custom_signal be set. + * If no setting is given to the constructor, it will set partition_metis + * by default. */ enum Settings { diff --git a/include/deal.II/grid/grid_tools.h b/include/deal.II/grid/grid_tools.h index 952d74a3bf..70029dd234 100644 --- a/include/deal.II/grid/grid_tools.h +++ b/include/deal.II/grid/grid_tools.h @@ -928,9 +928,9 @@ namespace GridTools Triangulation &triangulation); /** - * Partitions the cells of a multigrid heirarchy by assigning level subdomain ids - * using the "youngest child" rule, that is, each cell in the heirarchy is owned by - * the processor who owns its left most child in the forrest, and active cells + * Partitions the cells of a multigrid hierarchy by assigning level subdomain ids + * using the "youngest child" rule, that is, each cell in the hierarchy is owned by + * the processor who owns its left most child in the forest, and active cells * have the same subdomain id and level subdomain id. You can access the level subdomain * id of a cell by using cell-@>level_subdomain_id(). *