M = Mesh('mesh.xml')
Q = FunctionSpace(M, "CG", 3)
F = Function(Q)
what is the difference between Q.dofmap().local_range() and F.vector().local_range()
Obviously only relevant in parallel, but are there any circumstances where they could be different?