Skip to content

Commit

Permalink
Replace time limit with node limit in test_branch_probing_lp
Browse files Browse the repository at this point in the history
  • Loading branch information
sbolusani committed Oct 23, 2023
1 parent 0eda755 commit 21adadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_branch_probing_lp.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_branching():
m.setHeuristics(SCIP_PARAMSETTING.OFF)
m.setIntParam("presolving/maxrounds", 0)
#m.setLongintParam("lp/rootiterlim", 3)
m.setRealParam("limits/time", 60)
m.setLongintParam("limits/nodes", 1)

x0 = m.addVar(lb=-2, ub=4)
r1 = m.addVar()
Expand Down

0 comments on commit 21adadd

Please sign in to comment.