Phani, apparently no one used this function for a parallel::distributed::Triangulation before. The problem is that we don't know about DoFs on artficial cells. The pull request https://github.com/dealii/dealii/pull/5604 fixes this issue by extracting DoFs belonging to locally owned cells. Essentially, you only have to guard the cell loops in extract_hanging_node_dofs by
if (cell->is_locally_owned()) Best, Daniel -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
