dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #21409
[Bug 713081] Re: mesh-entities-broken
This was fixed when the shared_ptr interface of Mesh and Hierarchical
was settled.
--
You received this bug notification because you are a member of DOLFIN
Team, which is subscribed to DOLFIN.
https://bugs.launchpad.net/bugs/713081
Title:
mesh-entities-broken
Status in DOLFIN:
Fix Committed
Bug description:
The following code prints 3, 0 but should print 3, 3:
from dolfin import *
mesh = UnitSquare(2, 2)
cell = Cell(mesh, 0)
print cell.num_entities(0), len(cell.entities(0))
Perhaps a broken typemap for uint*?
Follow ups
References