Segfault when reinitializing mesh connectivity

Issue #724 new
Tormod Landet created an issue

Following the discussion in pull request #291 the following minimal code was discovered that triggers a segfault (or an assert when that pull request is merged):

from dolfin import *
mesh = UnitSquareMesh(4, 4)
mesh.clean()
mesh.init(2, 1)

In serial the code works, in parallel it dereferences a null pointer / causes an assert in MeshEntity.entities()

Comments (1)

  1. Log in to comment