//NbLocations 10 //NbProducts 5 //K: NbBoxesTrolley 1 //B: CapaBox 6 //A box can accept mixed orders(0: no, 1: yes) 0 //Products //Idx Location Volume 1 1 10 2 2 12 3 ... 4 ... ... //Orders //NbOrders 5 //Idx M NbProdInOrder ProdIdx1 Qty1 ProdIdx2 Qty2 ... 1 1 2 1 3 5 2 2 1 3 4 10 6 7 12 1 3 ... 4 ... ... //Graph (Products are vertices indexed from 1 to NbProducts) //NbVerticesIntersections 9 //DepartingDepot 0 //ArrivalDepot 20 //Arcs //Start End Distance 0 1 10 0 2 10 1 3 10 1 4 30 ... //LocStart LocEnd ShortestPath 0 1 10 0 2 10 0 3 17 ... 1 0 10 1 2 10 1 3 10 1 4 30 1 5 ... //Location coordinates LocationName //Loc x y 0 12.2 5.2 "depot" 1 3.4 5.3 "aisle 2 bloc 1 rank 27" ...