Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
phschiele committed Mar 7, 2024
1 parent be6374a commit e5f4acf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions scripts/timing_rosenbrock.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
author: Fabian Schaipp
"""

import timeit

import numpy as np
Expand Down
4 changes: 2 additions & 2 deletions src/ncopt/sqpgs/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Implements the SQP-GS algorithm from
Frank E. Curtis and Michael L. Overton, A sequential quadratic programming
Frank E. Curtis and Michael L. Overton, A sequential quadratic programming
algorithm for nonconvex, nonsmooth constrained optimization,
SIAM Journal on Optimization 2012 22:2, 474-500, https://doi.org/10.1137/090780201.
Expand All @@ -17,8 +17,8 @@
import cvxopt as cx
import numpy as np

from ncopt.utils import get_logger
from ncopt.sqpgs.defaults import DEFAULT_ARG, DEFAULT_OPTION
from ncopt.utils import get_logger


class SQPGS:
Expand Down

0 comments on commit e5f4acf

Please sign in to comment.