Search⌘ K

Operations Research Tools

Explore how to use Google OR-Tools to solve the Traveling Salesperson Problem by creating data models, calculating distance matrices, and applying routing algorithms. Understand key concepts like RoutingIndexManager and cost evaluation to optimize travel routes effectively.

We'll cover the following...

Google OR-Tools is a suite of tools and services designed to help businesses optimize their operations. It includes tools for optimization, simulation, forecasting, and machine learning. We’ll use this package to solve TSP!

The create_data_model function

As usual, we start by importing the required ...