Skip to content

Commit

Permalink
Add period
Browse files Browse the repository at this point in the history
  • Loading branch information
mmghannam committed Nov 17, 2023
1 parent 24907e4 commit b72f321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyscipopt/relax.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ cdef SCIP_RETCODE PyRelaxExec (SCIP* scip, SCIP_RELAX* relax, SCIP_Real* lowerbo
relaxdata = SCIPrelaxGetData(relax)
PyRelax = <Relax>relaxdata
result_dict = PyRelax.relaxexec()
assert isinstance(result_dict, dict), "relaxexec() must return a dictionary"
assert isinstance(result_dict, dict), "relaxexec() must return a dictionary."
lowerbound[0] = result_dict.get("lowerbound", <SCIP_Real>lowerbound[0])
result[0] = result_dict.get("result", <SCIP_RESULT>result[0])
return SCIP_OKAY

0 comments on commit b72f321

Please sign in to comment.