How to solve VRP with pickups, deliveries and time windows using Google OR tools in C#?
public void VRP(DataModel data)
{
try
{
// Create Routing Index Manager
RoutingIndexManager manager = new RoutingIndexManager(data.DistanceMatrix.GetLength(0), data.VehicleNumber, data.Depot);