From 6507ea704ac8a4ca5a4063fb87e24441e3bb191f Mon Sep 17 00:00:00 2001 From: own2pwn <7850039+own2pwn@users.noreply.github.com> Date: Sat, 30 Oct 2021 12:09:53 +0300 Subject: [PATCH] Math is hard code style is a must --- sqp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqp.py b/sqp.py index f4c9584..c4e012b 100644 --- a/sqp.py +++ b/sqp.py @@ -54,5 +54,5 @@ def SQP(x0, l0): x0 = np.array([3, 3]) l0 = 3 x, l = SQP(x0, l0) -print("min f", f(x)) -print("min x", x) +print('min f', f(x)) +print('min x', x)