Exact formulations for rectangular-warehouse single-picker routing with scattered storage in single-block and two-block layouts
Pith reviewed 2026-05-07 07:55 UTC · model grok-4.3
The pith
Two new MILP formulations simplify exact single-picker routing in rectangular warehouses by using structural properties of optimal tours.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
We propose two mixed-integer linear programming formulations that exploit structural properties of optimal tours to simplify connectivity modelling and remove redundant edge configurations: a Configuration Connectivity model tailored to single-block layouts and an Edge Connectivity model that extends to two-block layouts. In extensive computational experiments on large randomly generated benchmark sets for single-block and two-block rectangular layouts, we compare these formulations against established MILP and network-flow baselines for SPRP and SPRP-SS and report computational gains tied to the structural restrictions.
What carries the argument
Exploitation of structural properties of optimal tours in MILP formulations to simplify connectivity modeling and eliminate redundant edge configurations for single-block and two-block warehouse routing.
If this is right
- Exact optimal routes become available for both SPRP and SPRP-SS in the tested layouts.
- The models run faster than prior exact baselines on large random instances.
- Routing subproblems can be embedded directly inside warehouse design or planning optimizations.
- Compact solver-based exact models become practical for industrial use where dynamic programming integration is cumbersome.
Where Pith is reading between the lines
- These models could replace heuristic routing inside real-time warehouse management systems if solve times continue to scale.
- The same structural restrictions on tours might extend to three-block or other common rectangular layouts.
- Using the formulations inside layout-optimization loops could produce warehouse designs that minimize total travel distance under scattered storage.
Load-bearing premise
Structural properties of optimal tours in single-block and two-block rectangular warehouses allow connectivity modeling to be simplified without missing any truly optimal routes.
What would settle it
Solve a collection of small instances with the new models and with a known exact method such as dynamic programming; the new models produce a route whose length differs from the known optimum on any instance.
Figures
read the original abstract
Order picking travel dominates much of warehouse effort, and exact routing is especially valuable when storage is scattered so pick locations are not fixed in advance. We address the single picker routing problem (SPRP) and its scattered-storage variant (SPRP-SS) in single-block and two-block rectangular warehouses. We propose two mixed-integer linear programming formulations that exploit structural properties of optimal tours to simplify connectivity modelling and remove redundant edge configurations: a Configuration Connectivity model tailored to single-block layouts and an Edge Connectivity model that extends to two-block layouts. In extensive computational experiments on large randomly generated benchmark sets for single-block and two-block rectangular layouts, we compare these formulations against established MILP and network-flow baselines for SPRP and SPRP-SS and report computational gains tied to the structural restrictions. The results support using compact, solver-based exact routing models in industrial settings where dynamic programming is cumbersome to integrate, particularly for SPRP-SS and for routing subproblems embedded in larger planning or warehouse-design optimizations.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes two mixed-integer linear programming formulations for the single-picker routing problem (SPRP) and its scattered-storage variant (SPRP-SS) in single-block and two-block rectangular warehouse layouts. The formulations exploit structural properties of optimal tours to simplify connectivity modeling and remove redundant edge configurations: a Configuration Connectivity model for single-block layouts and an Edge Connectivity model for two-block layouts. Extensive experiments on large random benchmark sets compare these against established MILP and network-flow baselines, reporting computational gains tied to the structural restrictions.
Significance. If the structural properties of optimal tours are exhaustively derived and the models remain exact, the work supplies compact, solver-friendly exact formulations that are easier to embed in larger warehouse-design or planning optimizations than dynamic programming approaches. This is particularly useful for SPRP-SS instances where pick locations vary, and the reported gains on random instances suggest practical value in industrial settings.
major comments (3)
- [3.2] §3.2 (Configuration Connectivity model): The structural properties used to eliminate redundant edge configurations and simplify connectivity are motivated by case analysis of tours, but the manuscript provides no formal proof (e.g., via improvement argument or exhaustive enumeration of all possible optimal tour topologies) that every optimal solution satisfies them. If a counterexample optimal tour violates one of the assumed structures, the reduced model would be incomplete and could return suboptimal or infeasible solutions for SPRP-SS.
- [4.1] §4.1–4.3 (Edge Connectivity model): The extension of the single-block properties to two-block layouts, including the handling of cross-aisle and cross-block edges, is presented without a theorem or proof establishing that the retained edge set still contains at least one optimal tour for every instance. This is load-bearing for the exactness claim when the model is applied to SPRP-SS.
- [5.3] §5.3 (computational results): The tables report average run times and gaps but omit the fraction of instances solved to proven optimality within the time limit and the distribution of gaps on unsolved instances. Without these, it is impossible to determine whether the observed speed-ups come at the cost of missing optima on a non-negligible subset of the benchmark set.
minor comments (2)
- [2] Figure 1 (warehouse layouts): The single-block and two-block graphs are shown schematically but lack explicit labeling of the vertex and edge sets used in the mathematical formulation; adding these labels would improve readability of the subsequent models.
- [2.2] §2.2 (problem statement): The definition of the scattered-storage variant (SPRP-SS) could explicitly state whether multiple copies of the same SKU are allowed on the same aisle or only across aisles, as this affects the interpretation of the pick-location variables.
Simulated Author's Rebuttal
Thank you for the constructive feedback on our manuscript. We address each of the major comments below and outline the revisions we will make to strengthen the paper.
read point-by-point responses
-
Referee: §3.2 (Configuration Connectivity model): The structural properties used to eliminate redundant edge configurations and simplify connectivity are motivated by case analysis of tours, but the manuscript provides no formal proof (e.g., via improvement argument or exhaustive enumeration of all possible optimal tour topologies) that every optimal solution satisfies them. If a counterexample optimal tour violates one of the assumed structures, the reduced model would be incomplete and could return suboptimal or infeasible solutions for SPRP-SS.
Authors: We thank the referee for highlighting this important point regarding the rigor of our claims. The structural properties in the Configuration Connectivity model are derived from an exhaustive case analysis of possible tour topologies in single-block layouts, ensuring that any optimal tour can be represented within the reduced edge set. However, to address the concern directly, in the revised manuscript we will include a formal theorem and proof. The proof will use an improvement argument: we show that if a tour violates one of the properties (e.g., by using a redundant edge configuration), it can be modified by replacing segments with shorter or equal alternatives that satisfy the property, without increasing the total travel distance. This guarantees that the model captures at least one optimal solution for every SPRP-SS instance. We believe this addition will resolve the potential incompleteness issue. revision: yes
-
Referee: §4.1–4.3 (Edge Connectivity model): The extension of the single-block properties to two-block layouts, including the handling of cross-aisle and cross-block edges, is presented without a theorem or proof establishing that the retained edge set still contains at least one optimal tour for every instance. This is load-bearing for the exactness claim when the model is applied to SPRP-SS.
Authors: We agree that extending the properties to two-block layouts requires careful justification. The Edge Connectivity model builds on the single-block case by additionally considering the possible crossings between blocks and aisles. In the revision, we will add a dedicated theorem proving that the retained edges include an optimal tour. The proof will involve case analysis of how optimal tours traverse the two blocks, showing that any deviation from the assumed connectivity can be improved by adjusting the cross-block paths. This will confirm the exactness for SPRP-SS in two-block layouts. revision: yes
-
Referee: §5.3 (computational results): The tables report average run times and gaps but omit the fraction of instances solved to proven optimality within the time limit and the distribution of gaps on unsolved instances. Without these, it is impossible to determine whether the observed speed-ups come at the cost of missing optima on a non-negligible subset of the benchmark set.
Authors: This is a valid criticism of our experimental reporting. To provide a more complete picture, we will revise the tables in Section 5.3 to include the number and percentage of instances solved to proven optimality within the time limit for each method and instance class. Additionally, for the unsolved instances, we will report the distribution of optimality gaps, including the average gap, maximum gap, and the number of instances with gaps below certain thresholds (e.g., 1%, 5%). These additions will demonstrate that our formulations achieve speed-ups while maintaining high solution quality across the benchmark set. revision: yes
Circularity Check
No circularity: independent MILP formulations from structural tour analysis
full rationale
The paper derives two new MILP formulations (Configuration Connectivity for single-block, Edge Connectivity for two-block) by exploiting structural properties of optimal tours to simplify connectivity constraints and eliminate redundant edges. The abstract and description present these properties as derived from analysis of the warehouse graph, with the resulting models positioned as exact and validated via computational experiments on large random benchmark instances against established MILP and network-flow baselines. No equations reduce claims to fitted parameters by construction, no load-bearing self-citations appear, and no ansatz or renaming of known results is invoked. The derivation chain remains self-contained and externally falsifiable through the reported benchmarks, yielding an independent modeling contribution.
Axiom & Free-Parameter Ledger
axioms (2)
- domain assumption Warehouse layouts are rectangular with single-block or two-block configurations.
- domain assumption Optimal tours exhibit structural properties that allow simplification of connectivity modeling without loss of optimality.
Reference graph
Works this paper leans on
-
[1]
50 years of warehousing research—an operations research perspective
Boysen, N., De Koster, R., 2025. 50 years of warehousing research—an operations research perspective. European Journal of Operational Re- search 320, 449–464
work page 2025
-
[2]
Warehousing in the e-commerce era: A survey
Boysen, N., De Koster, R., Weidinger, F., 2019. Warehousing in the e-commerce era: A survey. European Journal of Operational Research 277, 396–411
work page 2019
-
[3]
A model for warehouse order picking
Daniels, R.L., Rummel, J.L., Schantz, R., 1998. A model for warehouse order picking. European Journal of Operational Research 105, 1–17
work page 1998
-
[4]
Design and control of warehouse order picking: A literature review
De Koster, R., Le-Duc, T., Roodbergen, K.J., 2007. Design and control of warehouse order picking: A literature review. European journal of operational research 182, 481–501. 39
work page 2007
-
[5]
Double traversals in optimal picker routes for warehouses with multiple blocks
Dunn, G., Charkhgard, H., Eshragh, A., Stojanovski, E., 2025a. Double traversals in optimal picker routes for warehouses with multiple blocks. Operations Research Letters , 107397
-
[6]
Dunn, G., Stojanovski, E., Lamichhane, B., Charkhgard, H., Eshragh, A., 2025b. Deterministic structure of vertical configurations in minimal picker tours for rectangular warehouses. Manuscript under review
-
[7]
Goeke, D., Schneider, M., 2021. Modeling single-picker routing prob- lems in classical and modern warehouses: Informs journal on computing meritorious paper awardee. INFORMS Journal on Computing 33, 436– 451
work page 2021
-
[8]
Research on warehouse operation: A comprehensive review
Gu, J., Goetschalckx, M., McGinnis, L.F., 2007. Research on warehouse operation: A comprehensive review. European journal of operational research 177, 1–21
work page 2007
-
[9]
Gurobi optimizer reference manual
Gurobi Optimization, LLC, 2024. Gurobi optimizer reference manual. URL:https://www.gurobi.com/documentation/
work page 2024
-
[10]
Distance approximations for routing manual pickers in a warehouse
Hall, R.W., 1993. Distance approximations for routing manual pickers in a warehouse. IIE transactions 25, 76–87
work page 1993
-
[11]
A note on the linearity of ratliff and rosen- thal’s algorithm for optimal picker routing
Heßler, K., Irnich, S., 2022. A note on the linearity of ratliff and rosen- thal’s algorithm for optimal picker routing. Operations Research Letters 50, 155–159
work page 2022
-
[12]
Exact solution of the single-picker routing problem with scattered storage
Heßler, K., Irnich, S., 2024. Exact solution of the single-picker routing problem with scattered storage. INFORMS Journal on Computing 36, 1417–1435
work page 2024
-
[13]
Irnich, S., Lüke, L., 2025. The Single Picker Routing Problem with Scat- tered Storage in Parallel-Aisle Warehouse with Multiple Blocks. Tech- nical Report. Johannes Gutenberg-Universität Mainz
work page 2025
-
[14]
A linear-size model for the single picker routing problem with scattered storage
Lüke, L., Hessenius, A., Irnich, S., 2025. A linear-size model for the single picker routing problem with scattered storage. European Journal of Operational Research
work page 2025
-
[15]
Lüke, L., Heßler, K., Irnich, S., 2024. The single picker routing problem with scattered storage: modeling and evaluation of routing and storage policies. OR Spectrum 46, 909–951. 40
work page 2024
-
[16]
Exact algorithms for the order picking problem
Pansart, L., Catusse, N., Cambazard, H., 2018. Exact algorithms for the order picking problem. Computers & Operations Research 100, 117–127
work page 2018
-
[17]
An evaluation of order picking routeing policies
Petersen, C.G., 1997. An evaluation of order picking routeing policies. International Journal of Operations & Production Management
work page 1997
-
[18]
Prunet, T., Absi, N., Cattaruzza, D., 2025. A note on the complexity of the picker routing problem in multi-block warehouses and related problems. Annals of Operations Research 347, 1595–1605
work page 2025
-
[19]
Order-picking in a rectangular warehouse: a solvable case of the traveling salesman problem
Ratliff, H.D., Rosenthal, A.S., 1983. Order-picking in a rectangular warehouse: a solvable case of the traveling salesman problem. Opera- tions research 31, 507–521
work page 1983
-
[20]
Routing order pickers in a ware- house with a middle aisle
Roodbergen, K.J., De Koster, R., 2001. Routing order pickers in a ware- house with a middle aisle. European Journal of Operational Research 133, 32–43
work page 2001
-
[21]
Warehouse design and control: Framework and literature review
Rouwenhorst, B., Reuter, B., Stockrahm, V., vanHoutum, G.J., Mantel, R., Zijm, W.H., 2000. Warehouse design and control: Framework and literature review. European journal of operational research 122, 515– 533
work page 2000
-
[22]
Saylam, S., Çelik, M., Süral, H., 2024. Arc routing based compact formulations for picker routing in single and two block parallel aisle warehouses. European Journal of Operational Research 313, 225–240
work page 2024
-
[23]
Tompkins, J.A., White, J.A., Bozer, Y.A., Tanchoco, J.M.A., 2010. Facilities planning. John Wiley & Sons
work page 2010
-
[24]
Optimally solving the joint order batching and picker routing problem
Valle, C.A., Beasley, J.E., Da Cunha, A.S., 2017. Optimally solving the joint order batching and picker routing problem. European journal of operational research 262, 817–834
work page 2017
-
[25]
Picker routing in rectangular mixed shelves ware- houses
Weidinger, F., 2018. Picker routing in rectangular mixed shelves ware- houses. Computers & Operations Research 95, 139–150
work page 2018
-
[26]
Picker routing in the mixed-shelves warehouses of e-commerce retailers
Weidinger, F., Boysen, N., Schneider, M., 2019. Picker routing in the mixed-shelves warehouses of e-commerce retailers. European Journal of Operational Research 274, 501–515. 41
work page 2019
-
[27]
Wildt, C., Weidinger, F., Boysen, N., 2025. Picker routing in scattered storage warehouses: an evaluation of solution methods based on tsp transformations. OR Spectrum 47, 35–66. Appendix A. Goeke–Schneider formulation (GS) This appendix records the complete GS formulation (as used as a baseline for CC in the thesis sources), kept complete for reference. ...
work page 2025
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.