Papers for

manufacturing schedulers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Two-machine scheduling made efficient despite machine downtime

An FPTAS for Two-Machine Open-Shop Scheduling with a Single Unavailability Interval

Abstract: We consider the two-machine open-shop scheduling problem in which one machine is unavailable during a fixed interval. We study the resumable setting: an operation interrupted by the unavailability interval may resume, without penalty, when the machine becomes available. The objective is to minimize the makespan. Although the problem is NP-hard and several approximation algorithms are known, whether it admits a fully polynomial-time approximation scheme (FPTAS) has remained open for two decades. We resolve this question affirmatively by giving the first FPTAS, thereby strengthening the previously known polynomial-time approximation scheme (PTAS). As an intermediate result, we develop a new pseudo-polynomial dynamic program with seven state dimensions, improving on the ten-dimensional formulation in the literature.

Thu 10 SeptDiscrete Mathematics
The gist
Scheduling jobs between two machines can get tricky when one machine is unavailable for a certain period. The problem gets harder when interrupted tasks can resume later without penalty. The authors found a new way to closely approximate the shortest total time to complete all jobs, solving a question that remained unanswered for 20 years. They improved on previous methods by simplifying the problem’s complexity, making the scheduling approach more efficient and practical.
Open 2609.11693v1

Genetic algorithm improves delivery route planning without fixed start point

Node-Shift-Encoding Genetic Algorithm with fuzzy-enhanced reference tour to solve the bi-objective service-oriented TSP

Abstract: The Travelling Salesman Problem (TSP) remains a key area of research in combinatorial optimization, with applications in logistics, manufacturing, and service delivery. This paper addresses a bi-objective service-oriented TSP in which the clients' ranks in the delivery path matter. Unlike conventional depot-based TSP formulations, the considered problem does not assume a distinguished depot or a fixed tour origin. To address this setting, we adapt the Miller--Tucker--Zemlin (MTZ)-based formulation and derive an original linearization of the resulting model, enabling its solution with off-the-shelf integer linear programming solvers. This adaptation avoids the rigid tour origin imposed by the conventional MTZ formulation, for which fixing the starting node does not affect the tour cost but can affect the objective in a customer-rank-sensitive TSP. To solve this problem, we present a Node-Shift-Encoding (NSE)-based Genetic Algorithm augmented with fuzzy reasoning to update the reference tour throughout the evolutionary process. Experimental evaluation on TSPLIB benchmarks demonstrates that the proposed method achieves improved performance compared with the classical NSE approach.

Thu 10 SeptComputational Engineering, Finance, and Science
The gist
This paper looks at a tricky problem of figuring out the best way to visit multiple service clients when the order matters and there’s no fixed starting location. The authors created a new approach to represent and solve this problem using a genetic algorithm that adapts over time with some fuzzy logic helping guide the process. They also modified existing math models to better fit situations where the first stop isn’t fixed, which is important when client order really matters. Testing on standard route planning examples shows their approach works better than older methods. This could help improve routes in delivery, manufacturing, or service work where order and client ranking are important.
Open 2609.11257v1

Hybrid neural solver improves combinatorial optimization efficiency

HyCO: A Hybrid Neural Solver for Combinatorial Optimization

Abstract: Sequential reinforcement learning (RL) solvers and global diffusion model (DM) solvers for neural combinatorial optimization exhibit complementary failure modes under an optimization-regret view. The former enjoys small marginal regret in the early construction stage, but suffers from horizon-wise compounding errors with super-linear regret growth; the latter avoids horizon compounding but incurs linear or sublinear regret w.r.t. the dimension of the remaining unsolved subspace. We propose Hybrid Neural Solver for Combinatorial Optimization (HyCO), a hybrid inference algorithm that constructs a solution prefix with an RL solver and adaptively switches to a conditional DM to complete the remaining decisions. To characterize why such hybridization helps, when to trigger the handover, and how to realize it in practice, we first develop a unified error-scaling theoretical framework and prove that, under explicit error-scaling assumptions, i) the hybrid structure achieves strictly lower expected regret than either backbone alone, and ii) there exists a unique optimal trigger step that minimizes the hybrid regret. We then design a lightweight adaptive trigger that combines policy entropy and RL-DM disagreement to detect trajectory-level signals of the regime shift as a practical proxy, since the optimal trigger step is defined at the expected-regret level and is not directly computable on individual trajectories. Experimental results on diverse benchmarks demonstrate that HyCO achieves consistent improvements over both backbones and support the empirical effectiveness of adaptive triggering.

Mon 7 SeptMachine LearningArtificial Intelligence
The gist
Combinatorial optimization problems involve finding the best choice among many possible options, which can be very hard for computers. The paper shows that two common AI techniques, reinforcement learning and diffusion models, have strengths and weaknesses at different stages of solving these problems. The authors propose a new method called HyCO that combines both approaches, starting with reinforcement learning and switching to diffusion models when appropriate. They prove this hybrid method performs better than using either technique alone and create a system to decide the best time to switch during solving. Experiments confirm that HyCO consistently improves the quality of solutions.
Open 2609.07990v1