Removes empty model
Some checks failed
gitea-physics/pathfinder/pipeline/head There was a failure building this commit

This commit is contained in:
Deepak Mallubhotla 2021-08-23 19:51:33 -05:00
parent e37849295a
commit a9c37559f8
Signed by: deepak
GPG Key ID: 64BF53A3369104E7

View File

@ -1,9 +0,0 @@
import numpy # type: ignore
def circle_cost(x: float, y: float) -> float:
return 4 - x**2 - y**2
def circle_gradient(x: float, y: float) -> numpy.ndarray:
return numpy.array([-2 * x, -2 * y])