(x)
| 109 | |
| 110 | # Reference Solution |
| 111 | def ref_eval(x): |
| 112 | return np.cos(2 * np.pi * x[0]) * np.cos(2 * np.pi * x[1]) |
| 113 | |
| 114 | u_ref = Function(V, dtype=real_dtype) |
| 115 | u_ref.interpolate(ref_eval) |
nothing calls this directly
no outgoing calls
no test coverage detected