Or-tools not printing results when changing an example
I am trying to put my hands on the example from the page. The example I am trying to reproduce is this one. Code below: """Capacited Vehicles Routing Problem (CVRP).""" from ortools.constraint_solver import routing_enums_pb2 from ortools.constraint_solver import pywrapcp def create_data_model(): """Stores the data for the problem.""" data = {} data[‘distance_matrix’] = [ [ 0, 548,… Read More Or-tools not printing results when changing an example