Skip to content

Commit

Permalink
Fix problem constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Dec 11, 2023
1 parent 4cabea3 commit 12f7e50
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion github_ffa/problems/ghffa01.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def get_problem(alpha: float):
lb=None,
ub=None,
name=f"GHFFA01_{alpha=}",
optimal_cost=0.5 / (1 + alpha**2),
)


Expand Down
1 change: 0 additions & 1 deletion github_ffa/problems/ghffa02.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def get_problem(alpha: float):
lb=None,
ub=None,
name=f"GHFFA02_{alpha=}",
optimal_cost=0.5 / alpha**2,
)


Expand Down
1 change: 0 additions & 1 deletion github_ffa/problems/ghffa03.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def get_problem(n: int):
lb=None,
ub=None,
name=f"GHFFA03_{n=}",
optimal_cost=0.0,
)


Expand Down

0 comments on commit 12f7e50

Please sign in to comment.