(dtype)
| 391 | ], |
| 392 | ) |
| 393 | def test_expression_comm(dtype): |
| 394 | xtype = dtype(0).real.dtype |
| 395 | mesh = create_unit_square(MPI.COMM_WORLD, 4, 4, dtype=xtype) |
| 396 | v = Constant(mesh, dtype(1)) |
| 397 | u = Function(functionspace(mesh, ("Lagrange", 1)), dtype=dtype) |
| 398 | Expression(v, u.function_space.element.interpolation_points, comm=MPI.COMM_WORLD) |
| 399 | Expression(v, u.function_space.element.interpolation_points, comm=MPI.COMM_SELF) |
| 400 | |
| 401 | |
| 402 | def compute_exterior_facet_entities(mesh, facets): |
nothing calls this directly
no test coverage detected