I would like to get the (for an interior edge) two adjacent cells of a given facet. I found adjacent_cells() but it asks for an orientation of the form const std::vector facet_orientation* where I cannot find what this should be for an object.
from dolfin import *
mesh = UnitSquareMesh(4, 4)
for cell in cells(mesh):
for i, facet in enumerate(facets(cell)):
print facet.index()
print facet.adjacent_cells(??)