The following used to work for me:
mesh_obj = UnitSquareMesh( 5, 5 )
V = FunctionSpace( mesh_obj, "CG", 1 )
coo = V.dofmap().tabulate_all_coordinates(mesh_obj)
but now it does not and I get the following error message:
AttributeError: 'GenericDofMap' object has no attribute 'tabulate_all_coordiantes'
My institution recently upgraded to a new FEniCS (2016.1). What should I use instead of tabulate_all_coordiantes
?