(x, y)
| 473 | (a, b, c) = (1.23, -4.79, 0.6) |
| 474 | |
| 475 | def quad(x, y): |
| 476 | return a*(x-0.5)**2 + b*(y-0.5)**2 + c*x*y |
| 477 | |
| 478 | def gradient_quad(x, y): |
| 479 | return (2*a*(x-0.5) + c*y, 2*b*(y-0.5) + c*x) |
no outgoing calls
no test coverage detected
searching dependent graphs…