Papers › Locker-based Truck-Drone Routing with Integrated Considerations of Pickups,...

Locker-based Truck-Drone Routing with Integrated Considerations of Pickups, Deliveries, and No-Fly Zones

26 Jun 2026arXiv:2606.30680added by Syntology

Xuanyu Liu, Hui Hu, Jiao Zhao, Ziliang Wang, Zhengbing He

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Truck-drone delivery is an emerging last-mile logistics mode combining the long-haul capacity of trucks with the flexible service capability of drones. In locker-based operations, smart lockers serve not only as temporary parcel storage facilities but also as automated drone docking and service nodes. These automated nodes support drone takeoff, landing, parcel handover, and battery replacement, thereby significantly extending the service range and operational flexibility of drone-assisted delivery networks. However, practical locker-based delivery systems face complex real-world challenges, requiring the integrated coordination of not only parcel delivery, return pickup, battery-constrained and load-dependent drone flights, but also necessary detours around restricted airspace. To address this practical and multifaceted challenge, this paper introduces a locker-based truck-drone routing problem with integrated considerations of pickups, deliveries, and no-fly zones (LTDRP-PDNF), with the objective of minimizing the total operational cost of a fleet of drone-equipped trucks. We formulate the route construction process as a Markov Decision Process and develop a two-stage deep reinforcement learning-based neural heuristic. The first stage utilizes an attention-based encoder and a Bidirectional Gated Recurrent Unit decoder to solve the truck-only routing problem, formulated as a capacitated vehicle routing problem. The second stage combines a policy-transfer strategy with a hybrid dispatch assignment heuristic to construct fully coordinated truck and drone routes for LTDRP-PDNF. Experiments on instances of different scales demonstrate that the proposed method outperforms metaheuristic and neural heuristic baselines in most cases while maintaining exceptionally short computation times, offering an effective, scalable solution framework under practical operational constraints.

PaperPDFCode Syntology ran

In Syntology For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2606.30680")

Code

Syntology Ran 10 of 15 code samples harvested from 1 repository linked to this paper; 5 have no recorded run. Of those that ran: 1 ran · honoured contract; 4 ran · our draft was wrong; 5 ran with no contract checked.

By repository: found in paper text by Syntology: 15 samples from 1 repository, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

wouterkool/attention-learn-to-route found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 10 ran; 1 honoured the contract we drafted; 5 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · honoured contract
4ran · our draft was wrong
5ran
5unverified

Licence: 0 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from wouterkool/attention-learn-to-route. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

check_extension wouterkool/attention-learn-to-route/utils/data_utils.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 01df1926cf07ac89 · report
generate_op_data wouterkool/attention-learn-to-route/generate_data.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 82eaf1d494d4fc16 · report
generate_tsp_data wouterkool/attention-learn-to-route/generate_data.py found in paper text by Syntology ran · honoured contract fingerprinted MIT (permissive) · 50522f260eb670be · report
generate_vrp_data wouterkool/attention-learn-to-route/generate_data.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 3a929eede11222c2 · report
load_dataset wouterkool/attention-learn-to-route/utils/data_utils.py found in paper text by Syntology ran MIT (permissive) · 69062811f34d8ff6 · report
mask_bool2long wouterkool/attention-learn-to-route/utils/boolmask.py found in paper text by Syntology ran MIT (permissive) · 454003b7383dce9f · report
mask_long2bool wouterkool/attention-learn-to-route/utils/boolmask.py found in paper text by Syntology ran MIT (permissive) · 10638ccfaa13fb59 · report
mask_long_scatter wouterkool/attention-learn-to-route/utils/boolmask.py found in paper text by Syntology ran MIT (permissive) · 1a3bb2f0ebdf9a4e · report
move_to wouterkool/attention-learn-to-route/utils/functions.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 107d6628712f1a21 · report
torch_lexsort wouterkool/attention-learn-to-route/utils/lexsort.py found in paper text by Syntology ran MIT (permissive) · 3b9d3dc79956e29f · report
backtrack wouterkool/attention-learn-to-route/utils/beam_search.py found in paper text by Syntology unverified MIT (permissive) · 9d5b8d4a73d01c19 · report
get_beam_search_results wouterkool/attention-learn-to-route/utils/beam_search.py found in paper text by Syntology unverified MIT (permissive) · be9c547a8e748da5 · report
get_options wouterkool/attention-learn-to-route/options.py found in paper text by Syntology unverified MIT (permissive) · 0f6f8675d8280c4f · report
load_problem wouterkool/attention-learn-to-route/utils/functions.py found in paper text by Syntology unverified MIT (permissive) · 5deb1f5b2269293b · report
torch_load_cpu wouterkool/attention-learn-to-route/utils/functions.py found in paper text by Syntology unverified MIT (permissive) · 0538f709044ed305 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.30680, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections