(x, tol=1e-7)
| 77 | msh.topology.create_entities(1) |
| 78 | |
| 79 | def left_corner_edge(x, tol=1e-7): |
| 80 | return isclose(x[0], 0) & (x[1] < 1 / 4 + tol) |
| 81 | |
| 82 | edges = locate_entities_boundary(msh, 1, left_corner_edge) |
| 83 | if MPI.COMM_WORLD.size == 1: |
nothing calls this directly
no outgoing calls
no test coverage detected