Skip to content

Commit 6bccf68

Browse files
committed
specify solver
1 parent 0c65bb4 commit 6bccf68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_delphi_utils_python/delphi_utils/weekday.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def _fit(X, scales, npnums, npdenoms):
9393
for scale in scales:
9494
try:
9595
prob = cp.Problem(cp.Minimize((-ll + lmbda * penalty) / scale))
96-
_ = prob.solve()
96+
_ = prob.solve(solver=cp.CLARABEL)
9797
return b.value
9898
except SolverError:
9999
# If the magnitude of the objective function is too large, an error is

0 commit comments

Comments
 (0)