SlideShare uma empresa Scribd logo
1 de 58
Baixar para ler offline
Vehicle Routing and
Scheduling
Martin Savelsbergh
The Logistics Institute
Georgia Institute of Technology
Vehicle Routing and
Scheduling
Part I:
Basic Models and Algorithms
Introduction
Freight routing
routing of shipments
Service routing
dispatching of repair technicians
Passenger routing
transportation of elderly
Freight Routing (LTL)
pickup and delivery to and from end-of-line
terminal
shuttle from end-of-line terminal to regional
distribution center
transportation between distribution centers
rail
sleeper teams
single driver
LTL Linehaul Network
EOLs
DCs
Customers
Origin-Destination Route
Origin
EOL
DC
Destination
Linehaul
scheduling
Pickup and
delivery
Shuttle
scheduling
Routing and Scheduling
Routing and scheduling does not follow a
single “one-size-fits-all” formula. Routing
and scheduling software must usually be
customized to reflect the operating
environment and the customer needs and
characteristics
Models
Traveling Salesman Problem (TSP)
Vehicle Routing Problem (VRP)
Vehicle Routing Problem with Time
Windows (VRPTW)
Pickup and Delivery Problem with Time
Windows (PDPTW)
Traveling Salesman Problem
In the TSP the objective is to find the shortest
tour through a set of cities, visiting each city
exactly once and returning to the starting city.
Type of decisions:
routing
Traveling Salesman Problem
Vehicle Routing Problem
In the VRP a number of vehicles located at a
central depot has to serve a set of
geographically dispersed customers. Each
vehicle has a given capacity and each customer
has a given demand. The objective is to
minimize the total distance traveled.
Type of decisions:
assigning
routing
Vehicle Routing Problem
Vehicle Routing Problem
with Time Windows
In the VRPTW a number of vehicles is located at
a central depot and has to serve a set of
geographically dispersed customers. Each
vehicle has a given capacity. Each customer
has a given demand and has to be served within
a given time window.
Type of decisions:
assigning
routing
scheduling
Vehicle Routing Problem
with Time Windows
Pickup and Delivery Problem
with Time Windows
In the PDPTW a number of vehicles has to serve a
number of transportation requests. Each vehicle
has a given capacity. Each transportation request
specifies the size of the load to be transported,
the location where it is to be picked up plus a
pickup time window, and the location where it is
to be delivered plus a delivery time window.
Type of decisions:
assigning
routing
scheduling
Pickup and Delivery Problem
with Time Windows
Delivery
Pickup
Pickup and Delivery Problem
with Time Windows
Delivery
Pickup
Routing and Scheduling
Objectives
minimize vehicles
minimize miles
minimize labor
satisfy service requirements
maximize orders
maximize volume delivered per mile
Routing and Scheduling
Practical considerations
Single vs. multiple depots
Vehicle capacity
homogenous vs. hetrogenous
volume vs. weight
Driver availability
Fixed vs. variable start times
DoT regulations (10/1, 15/1, 70/8)
Routing and Scheduling
Practical considerations (cont.)
Delivery windows
hard vs. soft
single vs. multiple
periodic schedules
Service requirements
Maximum ride time
Maximum wait time
Routing and Scheduling
Practical considerations (cont.)
Fixed and variable delivery times
Fixed vs. variable regions/route
Recent Variants
Dynamic routing and scheduling problems
More and more important due to availability
of GPS and wireless communication
Information available to design a set of
routes and schedules is revealed dynamically
to the decision maker
Order information (e.g., pickups)
Vehicle status information (e.g., delays)
Exception handling (e.g., vehicle breakdown)
Recent Variants
Stochastic routing and scheduling
problems
Size of demand
Travel times
Algorithms
Construction algorithms
Improvement algorithms
Set covering based algorithms
Construction Heuristics
Savings heuristic
Insertion heuristics
Savings
Initial
i j
Intermediate Final
Savings s(i,j) = c(i,0) + c(0,j) – c(i,j)
Savings Heuristic (Parallel)
Step 1. Compute savings s(i,j) for all
pairs of customers. Sort savings.
Create out-and-back routes for all
customers.
Step 2. Starting from the top of the
savings list, determine whether there exist
two routes, one containing (i,0) and the
other containing (0,j). If so, merge the
routes if the combined demand is less
than the vehicle capacity.
Savings Heuristics (Sequential)
Step 1. Compute savings s(i,j) for all
pairs of customers. Sort savings. Create
out-and-back routes for all customers.
Step 2. Consider route (0,i,…,j,0) and
determine the best savings s(k,i) and s(j,l)
with routes containing (k,0) and (0,l).
Implement the best of the two. If no
more savings exist for this route move to
the next.
Savings Heuristic -
Enhancement
Route shape parameter
s(i,j) = c(i,0) + c(0,j) - λ c(i,j)
The larger λ, the more emphasis is placed
on the distance between customers being
connected
Insertion
Initial
i
j
k
Intermediate Final
Insertion Heuristics
Start with a set of
unrouted stops
Select an unrouted stop
Are there any
unrouted stops?
Insert selected stop in
current set of routes
Yes
Done
No
Nearest addition
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is minimized.
Insertion:
Let {i,j} be either one of the two edges
involving j in T, and replace it by {i,k} and
{k,j} to obtain a new tour including k.
Nearest Insertion
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is minimized.
Insertion:
Let {i,j} be the edge of T which minimizes
c(i,k) + c(k,j) - c(i,j), and replace it by {i,k}
and {k,j} to obtain a new tour including k.
Farthest Insertion
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is maximized.
Insertion:
Let {i,j} be the edge of T which minimizes
c(i,k) + c(k,j) - c(i,j), and replace it by {i,k}
and {k,j} to obtain a new tour including k.
Cheapest Insertion
Selection:
If partial tour T does not include all cities,
find for each k not on T the edge {i,j} of T
which minimizes c(T,k) = c(i,k) + c(k,j) -
c(i,j). Select city k for which c(T,k) is
minimized.
Insertion:
Let {i,j} be the edge of T for which c(T,k) is
minimized, and replace it by {i,k} and {k,j} to
obtain a new tour including k.
Worst case results
Nearest addition: 2
Nearest insertion: 2
Cheapest insertion: 2
Farthest insertion:
> 2.43 (Euclidean)
> 6.5 (Triangle inequality)
Implementation
Priority Queue
insert(value, key)
getTop(value, key)
setTop(value, key)
k-d Tree
deletePt(point)
nearest(point)
Implementation
Tree->deletePt(StartPt)
NNOut[StartPt] := Tree->nearest(StartPt)
PQ->insert(Dist(StartPt, NNOut(StartPt)), StartPt)
loop n-1 time
loop
PQ->getTop(ThisDist, x)
y := NNOut[x]
If y not in tour, then break
NNOut[x] = Tree->nearest(x)
PQ->setTop(Dist(x, NNOut[x]), x)
Add point y to tour; x is nearest neighbor in tour
Tree->deletePt(y)
NNOut[y] = Tree->nearest(y)
PQ->insert(Dist(y, NNOut[y]), y)
Delayed update
Find nearest point
Update
Improvement Algorithms
Start with a
feasible solution x
x
y
z
Is there an
improving neighbor
y in N(x)?
Define neighborhood N(x).
Replace x by y
Yes
N(x)
x is locally optimal
No
2-change
O(n2) possibilities
3-change
O(n3) possibilities
1-Relocate
O(n2) possibilities
2-Relocate
O(n2) possibilities
Swap
O(n2) possibilities
GENI
Vehicle Routing and
Scheduling
Vehicle Routing and
Scheduling
1-relocate
B-cyclic k-transfer
Set covering based
algorithms
Assignment decisions are often the most
important
Assignment decisions are often the most
difficult
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Set partitioning formulation
c1 c2 c3 c4 …
Cust 1 1 1 0 1 … = 1
Cust 2 1 0 1 0 … = 1
Cust 3 0 1 1 0 … = 1
…
Cust n 0 1 0 0 … = 1
y/n y/n y/n y/n …
Set covering based
algorithms
Advantage
very flexible
heuristics for route generation
complicating constraints in route generation
Disadvantage
small to medium size instances

Mais conteúdo relacionado

Mais procurados

Distribution network desing
Distribution network desingDistribution network desing
Distribution network desingSohag Hasan
 
Logistics transportation
Logistics transportationLogistics transportation
Logistics transportationRavi K Singh
 
Transportation in supply chain
Transportation in supply chainTransportation in supply chain
Transportation in supply chainMoine Iqbal
 
Logistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsLogistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsFahad Ali
 
Role of transportation in supply chain mgmt
Role of transportation in supply chain mgmtRole of transportation in supply chain mgmt
Role of transportation in supply chain mgmttulasi
 
The role of e business in supply chain management
The role of e business in supply chain managementThe role of e business in supply chain management
The role of e business in supply chain managementJohns Joseph
 
Transport marketing
Transport marketingTransport marketing
Transport marketingdeepu2000
 
A project on supply chain management
A project on supply chain managementA project on supply chain management
A project on supply chain managementgirish gupta
 
Logistics Management
Logistics ManagementLogistics Management
Logistics ManagementArmaan Salik
 
Strategic Fleet and Transport Management
Strategic Fleet and Transport Management Strategic Fleet and Transport Management
Strategic Fleet and Transport Management Charles Cotter, PhD
 
Global supply chain management
Global supply chain managementGlobal supply chain management
Global supply chain managementRaj Shravanthi
 
Transportation Infrastructure | Transport functionality | Principles and part...
Transportation Infrastructure | Transport functionality | Principles and part...Transportation Infrastructure | Transport functionality | Principles and part...
Transportation Infrastructure | Transport functionality | Principles and part...FaHaD .H. NooR
 
Scm In Retail by Uday mishra
Scm In  Retail by Uday mishraScm In  Retail by Uday mishra
Scm In Retail by Uday mishraUday mishra
 
Unit 1 Service Operations Management
Unit 1 Service Operations ManagementUnit 1 Service Operations Management
Unit 1 Service Operations ManagementGopinath Guru
 

Mais procurados (20)

Distribution network desing
Distribution network desingDistribution network desing
Distribution network desing
 
Logistics transportation
Logistics transportationLogistics transportation
Logistics transportation
 
Transportation in supply chain
Transportation in supply chainTransportation in supply chain
Transportation in supply chain
 
Logistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsLogistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & Products
 
Role of transportation in supply chain mgmt
Role of transportation in supply chain mgmtRole of transportation in supply chain mgmt
Role of transportation in supply chain mgmt
 
Transportation management
Transportation  managementTransportation  management
Transportation management
 
The role of e business in supply chain management
The role of e business in supply chain managementThe role of e business in supply chain management
The role of e business in supply chain management
 
Transport marketing
Transport marketingTransport marketing
Transport marketing
 
8. Retail Logistics
8. Retail Logistics8. Retail Logistics
8. Retail Logistics
 
Transportation management
Transportation managementTransportation management
Transportation management
 
A project on supply chain management
A project on supply chain managementA project on supply chain management
A project on supply chain management
 
CUSTOMER SERVICE IN LOGISTICS
CUSTOMER SERVICE IN LOGISTICSCUSTOMER SERVICE IN LOGISTICS
CUSTOMER SERVICE IN LOGISTICS
 
Design of supply chain networks
Design of supply chain networksDesign of supply chain networks
Design of supply chain networks
 
Logistics Management
Logistics ManagementLogistics Management
Logistics Management
 
Introduction to Logistics Functions
Introduction to Logistics FunctionsIntroduction to Logistics Functions
Introduction to Logistics Functions
 
Strategic Fleet and Transport Management
Strategic Fleet and Transport Management Strategic Fleet and Transport Management
Strategic Fleet and Transport Management
 
Global supply chain management
Global supply chain managementGlobal supply chain management
Global supply chain management
 
Transportation Infrastructure | Transport functionality | Principles and part...
Transportation Infrastructure | Transport functionality | Principles and part...Transportation Infrastructure | Transport functionality | Principles and part...
Transportation Infrastructure | Transport functionality | Principles and part...
 
Scm In Retail by Uday mishra
Scm In  Retail by Uday mishraScm In  Retail by Uday mishra
Scm In Retail by Uday mishra
 
Unit 1 Service Operations Management
Unit 1 Service Operations ManagementUnit 1 Service Operations Management
Unit 1 Service Operations Management
 

Semelhante a Supply chain logistics : vehicle routing and scheduling

A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationA Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationRajib Roy
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsAyan Sengupta
 
Reinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GReinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GPrasant Misra
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...csandit
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisSarang Bhutada
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceLIFE GreenYourMove
 
When and where are bus express services justified?
When and where are bus express services justified?When and where are bus express services justified?
When and where are bus express services justified?BRTCoE
 
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing ProblemMixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problemjfrchicanog
 
Webinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkWebinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkBRTCoE
 
Optimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsOptimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsVarun Gupta
 
Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...butest
 
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...GreenYourMove
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choiceMarcus Young
 
A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemCem Recai Çırak
 
Platforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPlatforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPeter Sels
 
Central moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionCentral moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionAlexander Decker
 
Sampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsSampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsMd Mahbubur Rahman
 

Semelhante a Supply chain logistics : vehicle routing and scheduling (20)

Optimizing last mile delivery
Optimizing last mile deliveryOptimizing last mile delivery
Optimizing last mile delivery
 
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationA Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble models
 
Reinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GReinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2G
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysis
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
 
When and where are bus express services justified?
When and where are bus express services justified?When and where are bus express services justified?
When and where are bus express services justified?
 
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing ProblemMixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
 
Webinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkWebinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit network
 
Optimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsOptimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic Conditions
 
Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...
 
Presentation escc 2016
Presentation escc 2016Presentation escc 2016
Presentation escc 2016
 
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choice
 
A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problem
 
Platforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPlatforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_Beamer
 
Central moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionCentral moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersection
 
Sampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsSampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective Missions
 
E017512630
E017512630E017512630
E017512630
 

Último

%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile EnvironmentVictorSzoltysek
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 

Último (20)

%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 

Supply chain logistics : vehicle routing and scheduling