Skip to content

Commit c31ec77

Browse files
committed
reduce pyvrp target_feasible
1 parent 0917091 commit c31ec77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrappers/pyvrp_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main(input_path, output_path, timeout=None):
3434
data = ProblemData.from_dict(json_data)
3535
m = Model.from_data(data)
3636
# Solve the problem
37-
penalty_params = PenaltyParams(target_feasible=0.8, max_penalty=1e12)
37+
penalty_params = PenaltyParams(target_feasible=0.7, max_penalty=1e16)
3838
solve_params = SolveParams(penalty=penalty_params)
3939
result = m.solve(stop=MaxRuntime(int(timeout)), params=solve_params)
4040

0 commit comments

Comments
 (0)