(x)
| 1105 | return values |
| 1106 | |
| 1107 | def modified_grad(x): |
| 1108 | grad = grad_ref_func(x) |
| 1109 | return -0.2 * grad[1], 0.1 * grad[0] |
| 1110 | |
| 1111 | tdim = mesh.topology.dim |
| 1112 | cells = locate_entities(mesh, tdim, left_locator) |
nothing calls this directly
no test coverage detected