Graph Threading with Turn Costs
Erik D. Demaine, Yael Kirkpatrick, Rebecca Lin
TL;DR
This work reframes graph threading as a turn-cost optimization problem, motivated by frictional forces that scale with turn angles. It establishes NP-hardness for general graphs and for max degree $4$, sharply contrasting with the previous polynomial-time results for minimum-length threading. The authors give polynomial-time algorithms for maximum degree $3$ cases (Perfect and Double Threading) and explore rich special cases, including Exactly-Double Threading (equivalent to TSP) and grid-graph threading with tight approximation guarantees. They also present a practical grid-threading strategy and a $2r$-approximation for bounded turn costs, offering a spectrum of tractable and intractable regimes with clear performance tradeoffs. These results illuminate how turn costs shape algorithmic feasibility and provide concrete tools for designing deployable structures with friction-aware threading.
Abstract
How should we thread a single string through a set of tubes so that pulling the string taut self-assembles the tubes into a desired graph? While prior work [ITCS 2024] solves this problem with the goal of minimizing the length of string, we study here the objective of minimizing the total turn cost. The frictional force required to pull the string through the tubes grows exponentially with the total absolute turn angles (by the Capstan equation), so this metric often dominates the friction in real-world applications such as deployable structures. We show that minimum-turn threading is NP-hard, even for graphs of maximum degree 4, and even when restricted to some special cases of threading. On the other hand, we show that these special cases can in fact be solved efficiently for graphs of maximum degree 4, thereby fully characterizing their dependence on maximum degree. We further provide polynomial-time exact and approximation algorithms for variants of turn-cost threading: restricting to threading each edge exactly twice, and on rectangular grid graphs.
