@@ -427,6 +427,44 @@ bintest(
427427 named_data = {"prize_collecting_tsp_sat_py3" : ":prize_collecting_tsp_sat_py3" },
428428)
429429
430+ py_binary (
431+ name = "prize_collecting_tsp_py3" ,
432+ srcs = ["prize_collecting_tsp.py" ],
433+ main = "prize_collecting_tsp.py" ,
434+ deps = [
435+ "//ortools/constraint_solver/python:constraint_solver" ,
436+ "//ortools/routing:enums_py_pb2" ,
437+ "//ortools/routing:parameters_py_pb2" ,
438+ "//ortools/routing/python:routing" ,
439+ ],
440+ )
441+
442+ bintest (
443+ name = "prize_collecting_tsp_py_test" ,
444+ size = "medium" ,
445+ srcs = [":prize_collecting_tsp_py_test.bintest" ],
446+ named_data = {"prize_collecting_tsp_py3" : ":prize_collecting_tsp_py3" },
447+ )
448+
449+ py_binary (
450+ name = "prize_collecting_vrp_py3" ,
451+ srcs = ["prize_collecting_vrp.py" ],
452+ main = "prize_collecting_vrp.py" ,
453+ deps = [
454+ "//ortools/constraint_solver/python:constraint_solver" ,
455+ "//ortools/routing:enums_py_pb2" ,
456+ "//ortools/routing:parameters_py_pb2" ,
457+ "//ortools/routing/python:routing" ,
458+ ],
459+ )
460+
461+ bintest (
462+ name = "prize_collecting_vrp_py_test" ,
463+ size = "medium" ,
464+ srcs = [":prize_collecting_vrp_py_test.bintest" ],
465+ named_data = {"prize_collecting_vrp_py3" : ":prize_collecting_vrp_py3" },
466+ )
467+
430468py_binary (
431469 name = "prize_collecting_vrp_sat_py3" ,
432470 srcs = ["prize_collecting_vrp_sat.py" ],
0 commit comments