pith. sign in

arxiv: 2604.14026 · v1 · submitted 2026-04-15 · 💻 cs.RO

Scale-Invariant Sampling in Multi-Arm Bandit Motion Planning for Object Extraction

Pith reviewed 2026-05-10 13:02 UTC · model grok-4.3

classification 💻 cs.RO
keywords scale-invariant samplingobject extractionmotion planningdisassemblyMAB-RRTnarrow passagesPCA directionssampling strategies
0
0 comments X

The pith

Scale-invariant sampling boosts object extraction success rates by an order of magnitude in most tested scenarios.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper establishes that a scale-invariant sampling strategy can overcome the collision bottleneck in sampling-based planners for tight object extraction tasks such as removing bolts or pins from narrow spaces. It does so by running a grow-shrink search to locate high-entropy scales in configuration space and then applying principal components analysis to extract useful motion directions from those scales. The resulting sampler is placed inside a multi-arm bandit RRT planner and compared against uniform, obstacle-based, narrow-passage, mate-vector, physics-based, and disassembly BFS baselines on eight 3D scenarios. The experiments show success rates rise by roughly a factor of ten on seven of the eight cases, making general-purpose extraction feasible where conventional sampling fails almost every time.

Core claim

A scale-invariant sampling strategy that first uses a grow-shrink search to identify high-entropy scales and then applies PCA to select principal directions for extraction motions, when embedded in an MAB-RRT planner, raises success rates by one order of magnitude over uniform sampling, obstacle-based sampling, narrow-passage sampling, mate vectors, physics-based planning, and disassembly breadth-first search on seven of eight challenging 3D object extraction scenarios involving bolts, gears, rods, pins, and sockets.

What carries the argument

scale-invariant sampling that combines grow-shrink search for high-entropy scales with PCA for direction selection inside an MAB-RRT planner

If this is right

  • Disassembly tasks with millimeter-scale clearances become solvable by general planners without custom per-object tuning.
  • Sampling effort concentrates on scales that actually produce collision-free extraction trajectories rather than wasting samples on irrelevant resolutions.
  • Multi-arm bandit RRT planners gain a practical way to handle narrow passages that defeat uniform and local sampling heuristics.
  • The same scale-finding step can be reused across different object geometries such as bolts, gears, rods, and sockets.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The grow-shrink plus PCA pattern may transfer to other narrow-passage problems such as assembly sequencing or navigation through cluttered environments.
  • Entropy-driven scale selection could reduce dependence on physics simulation inside disassembly planners by focusing samples before contact is modeled.
  • Extending the search to dynamic or higher-dimensional configuration spaces might reveal whether the identified scales remain stable under added degrees of freedom.

Load-bearing premise

The grow-shrink search reliably identifies high-entropy scales that generalize across scenarios and the PCA directions correspond to useful object extraction motions without additional tuning.

What would settle it

Running the same eight scenarios with the grow-shrink and PCA components disabled and finding no meaningful difference in success rates from the listed baseline strategies would falsify the central claim.

Figures

Figures reproduced from arXiv: 2604.14026 by Andreas Orthey, Marc Toussaint, Servet B. Bayraktar.

Figure 1
Figure 1. Figure 1: Overview about scale-invariant sampling in MAB-RRT. As input, we use a start configuration xstart and a goal region Xgoal. We then search for a high-information entropy scale and initialize the multi-arm bandit with this scale. We then start a MAB￾RRT loop, where an arm is chose, the chosen sampler is used for one RRT update step, and the arm reward is updated. This loop continues until a termination condi… view at source ↗
Figure 2
Figure 2. Figure 2: Visualization of scale-invariant sampling in tunnel passages of different sizes (5 units, 10 units, and 15 units). Final burn-in radius is shown as , and path are shown depending on the type of active sampler: uniform, positive principal component, and negative principal component. Start is marked with , goal with . Valid samples are shown as uniform, positive principal component, negative principal compon… view at source ↗
Figure 3
Figure 3. Figure 3: Environment Comparison: Start vs. End states for selected environments. Each pair shows the initial (left) and final (right) configuration. radius r0 = 1.0, min radius rmin = 1e−6, max radius rmax = 25.0, batch size b = 64, growth factor g = exp (−0.7), shrink factor s = exp (0.9), max steps S = 50, and validity rates αmin = 0.1 and αmax = 0.5. For the Multi-arm bandit, we use a sliding window of Nsliding-… view at source ↗
Figure 4
Figure 4. Figure 4: Comparison of success rate using planners MAB-RRT (ours), RRT + Bridge Sampling [24], RRT + Gaussian Sampling [8], RRT + Obstacle Sam￾pling [2], MateVec-TRRT [17], BK-RRT [55,52], BFS [52], [PITH_FULL_IMAGE:figures/full_fig_p013_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Final sampling results across environments (radius set to 1e-6 vs. 25.0). Final radius from grow-shrink shown as , initial radius as . Tree edges shown as . Valid samples: uniform, positive principal component, negative principal component, scale-invariant sampler. Start marked with , goal with . To show the results, we plot the success rate from zero to one hundred per￾cent over time in log scale, as show… view at source ↗
Figure 6
Figure 6. Figure 6: T-Bolt Experiment: MAB dynamics during planning. (a) UCB scores adjust dynamically as the planner gathers reward information. (b) Rapid reward accumulation for cylinder arms indicates their effectiveness in generating valid samples within the narrow passage, while the uniform arm’s reward surges once free space is reached. Uniform, PCA positive, PCA negative. 4.2 Robustness of Scale-Invariant Sampling Anot… view at source ↗
read the original abstract

Object extraction tasks often occur in disassembly problems, where bolts, screws, or pins have to be removed from tight, narrow spaces. In such problems, the distance to the environment is often on the millimeter scale. Sampling-based planners can solve such problems and provide completeness guarantees. However, sampling becomes a bottleneck, since almost all motions will result in collisions with the environment. To overcome this problem, we propose a novel scale-invariant sampling strategy which explores the configuration space using a grow-shrink search to find useful, high-entropy sampling scales. Once a useful sampling scale has been found, our framework exploits this scale by using a principal components analysis (PCA) to find useful directions for object extraction. We embed this sampler into a multi-arm bandit rapidly-exploring random tree (MAB-RRT) planner and test it on eight challenging 3D object extraction scenarios, involving bolts, gears, rods, pins, and sockets. To evaluate our framework, we compare it with classical sampling strategies like uniform sampling, obstacle-based sampling, and narrow-passage sampling, and with modern strategies like mate vectors, physics-based planning, and disassembly breadth first search. Our experiments show that scale-invariant sampling improves success rate by one order of magnitude on 7 out of 8 scenarios. This demonstrates that scale-invariant sampling is an important concept for general purpose object extraction in disassembly tasks.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 2 minor

Summary. The manuscript introduces a scale-invariant sampling approach for sampling-based motion planning in tight object extraction scenarios. It employs a grow-shrink search to identify high-entropy scales in configuration space, followed by PCA to extract principal directions for biased sampling within an MAB-RRT planner. Through experiments on eight 3D scenarios involving bolts, gears, rods, pins, and sockets, the method is shown to outperform classical (uniform, obstacle-based, narrow-passage) and modern (mate vectors, physics-based, disassembly BFS) sampling strategies, achieving up to an order of magnitude higher success rates on seven of the eight test cases.

Significance. The proposed integration of grow-shrink scale search with PCA-based directional sampling in a multi-armed bandit RRT framework addresses a key challenge in narrow-passage motion planning for object extraction. If the reported gains are statistically robust and the method generalizes without extensive tuning, it could advance practical robotics applications in disassembly and maintenance tasks. The empirical comparison to multiple baselines is a strength, but the absence of detailed methodology for scale selection and statistical validation reduces the current significance.

major comments (3)
  1. [Experimental Results] Experimental Results section: The central claim of an order-of-magnitude success-rate improvement on 7 out of 8 scenarios is presented without reporting the number of independent trials, statistical significance tests (e.g., p-values), error bars, or raw success-rate values per scenario and baseline. This information is load-bearing for verifying the empirical contribution.
  2. [Method] Grow-shrink search description: No details are provided on the explored scale range, the precise entropy metric or threshold used to declare a scale 'high-entropy', the search termination criteria, or whether these hyperparameters remain fixed across all eight scenarios. This directly affects the reproducibility and generalization of the scale-invariant claim.
  3. [Method] PCA integration in MAB-RRT: The paper does not specify how many principal components are retained, the exact mechanism by which these directions bias the sampling distribution, or any validation that the top eigenvectors align with feasible extraction trajectories rather than irrelevant variance (e.g., rotation about an axis). This is necessary to substantiate that the PCA step produces useful directions without per-scenario retuning.
minor comments (2)
  1. [Abstract] Abstract: The term 'mate vectors' is used without definition or citation; a brief explanation or reference would improve clarity for readers unfamiliar with the baseline.
  2. [Throughout] Notation and terminology: Ensure consistent capitalization and phrasing for 'scale-invariant sampling' and 'MAB-RRT' throughout the text and figures.

Simulated Author's Rebuttal

3 responses · 0 unresolved

We appreciate the referee's comments, which highlight important aspects for improving the manuscript's clarity and rigor. Below we provide point-by-point responses to the major comments.

read point-by-point responses
  1. Referee: [Experimental Results] Experimental Results section: The central claim of an order-of-magnitude success-rate improvement on 7 out of 8 scenarios is presented without reporting the number of independent trials, statistical significance tests (e.g., p-values), error bars, or raw success-rate values per scenario and baseline. This information is load-bearing for verifying the empirical contribution.

    Authors: We agree that these details are necessary to fully support the empirical claims. We will revise the Experimental Results section to include the number of independent trials, error bars on the success rates, the raw success-rate values for each scenario and method, and results from statistical significance tests such as p-values from appropriate non-parametric tests. revision: yes

  2. Referee: [Method] Grow-shrink search description: No details are provided on the explored scale range, the precise entropy metric or threshold used to declare a scale 'high-entropy', the search termination criteria, or whether these hyperparameters remain fixed across all eight scenarios. This directly affects the reproducibility and generalization of the scale-invariant claim.

    Authors: We will augment the description of the grow-shrink search to include the explored scale range, the entropy metric and threshold for high-entropy scales, the search termination criteria, and note that these parameters were held constant across the eight scenarios. revision: yes

  3. Referee: [Method] PCA integration in MAB-RRT: The paper does not specify how many principal components are retained, the exact mechanism by which these directions bias the sampling distribution, or any validation that the top eigenvectors align with feasible extraction trajectories rather than irrelevant variance (e.g., rotation about an axis). This is necessary to substantiate that the PCA step produces useful directions without per-scenario retuning.

    Authors: We will clarify the PCA integration by specifying the number of principal components retained, detailing how the principal directions are used to bias the sampling distribution in the MAB-RRT, and providing evidence or discussion that these directions align with feasible extraction trajectories. revision: yes

Circularity Check

0 steps flagged

No circularity: empirical evaluation of algorithmic sampler against external baselines

full rationale

The paper describes an algorithmic pipeline (grow-shrink search for high-entropy scale followed by PCA for biased directions inside MAB-RRT) and reports success-rate improvements from direct experiments on eight scenarios versus independent baselines (uniform, obstacle-based, narrow-passage, mate-vector, physics-based, and BFS disassembly). No equations, predictions, or first-principles claims are presented that reduce by construction to fitted parameters, self-definitions, or self-citations internal to the work. The reported order-of-magnitude gains are measured outcomes, not tautological outputs of the method's own inputs.

Axiom & Free-Parameter Ledger

0 free parameters · 2 axioms · 0 invented entities

The approach assumes configuration-space sampling can be made scale-invariant through iterative search and that principal components capture extraction-relevant directions; no explicit free parameters or invented entities are named in the abstract.

axioms (2)
  • domain assumption Grow-shrink search will locate high-entropy sampling scales that improve exploration in narrow passages.
    Invoked to justify the core sampling strategy for object extraction tasks.
  • domain assumption PCA on samples at the chosen scale yields directions useful for extraction motions.
    Central to exploiting the found scale for planning.

pith-pipeline@v0.9.0 · 5551 in / 1350 out tokens · 49569 ms · 2026-05-10T13:02:21.270872+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

55 extracted references · 55 canonical work pages

  1. [1]

    The International Journal of Advanced Manufacturing Tech- nology36(11), 1221–1233 (2008)

    Aguinaga, I., Borro, D., Matey, L.: Parallel rrt-based path planning for selective disassembly planning. The International Journal of Advanced Manufacturing Tech- nology36(11), 1221–1233 (2008)

  2. [2]

    In: Agarwal, P.K., Kavraki, L.E., Ma- son, M.T

    Amato, N.M., Bayazit, O.B., Dale, L.K., Jones, C., Vallejo, D.: OBPRM: An obstacle-based PRM for 3D workspaces. In: Agarwal, P.K., Kavraki, L.E., Ma- son, M.T. (eds.) Robotics: The Algorithmic Perspective, pp. 155–168. CRC Press (1998)

  3. [3]

    Journal of Manufacturing Systems77, 483–524 (2024)

    Asif, M.E., Rastegarpanah, A., Stolkin, R.: Robotic disassembly for end-of-life products focusing on task and motion planning: A comprehensive survey. Journal of Manufacturing Systems77, 483–524 (2024)

  4. [4]

    Machine learning47(2), 235–256 (2002)

    Auer, P., Cesa-Bianchi, N., Fischer, P.: Finite-time analysis of the multiarmed bandit problem. Machine learning47(2), 235–256 (2002)

  5. [5]

    Springer Nature (2024)

    Axler, S.: Linear algebra done right. Springer Nature (2024)

  6. [6]

    IEEE Robotics and Automation Letters8(8), 4529–4536 (2023)

    Bayraktar, S.B., Orthey, A., Kingston, Z., Toussaint, M., Kavraki, L.E.: Solving rearrangement puzzles using path defragmentation in factored state spaces. IEEE Robotics and Automation Letters8(8), 4529–4536 (2023)

  7. [7]

    Bishop, C.M., Nasrabadi, N.M.: Pattern recognition and machine learning, vol. 4. Springer (2006)

  8. [8]

    In: IEEE International Conference on Robotics and Automation

    Boor, V., Overmars, M.H., Van Der Stappen, A.F.: The gaussian sampling strategy for probabilistic roadmap planners. In: IEEE International Conference on Robotics and Automation. vol. 2, pp. 1018–1023 (1999)

  9. [9]

    Foundations and Trends in Machine Learning5(1), 1–122 (2012)

    Bubeck, S., Cesa-Bianchi, N., et al.: Regret analysis of stochastic and nonstochastic multi-armed bandit problems. Foundations and Trends in Machine Learning5(1), 1–122 (2012)

  10. [10]

    In: Robotics: Science and Systems

    Burns, B., Brock, O.: Toward optimal configuration space sampling. In: Robotics: Science and Systems. vol. 1, pp. 105–112 (2005)

  11. [11]

    Robotica40(1), 136–153 (2022)

    Cai, P., Yue, X., Zhang, H.: Add-rrv for motion planning in complex environments. Robotica40(1), 136–153 (2022)

  12. [12]

    In: IEEE International Conference on Robotics and Automation

    Chamzas, C., Kingston, Z., Quintero-Peña, C., Shrivastava, A., Kavraki, L.E.: Learning sampling distributions using local 3d workspace decompositions for mo- tion planning in high dimensions. In: IEEE International Conference on Robotics and Automation. pp. 1283–1289 (2021)

  13. [13]

    In: Algorithmic Foundation of Robotics VIII

    Dalibard, S., Laumond, J.P.: Control of probabilistic diffusion in motion planning. In: Algorithmic Foundation of Robotics VIII. pp. 467–481. Springer (2009)

  14. [14]

    The International Journal of Robotics Research30(12), 1461–1476 (2011)

    Dalibard, S., Laumond, J.P.: Linear dimensionality reduction in random mo- tion planning. The International Journal of Robotics Research30(12), 1461–1476 (2011)

  15. [15]

    IEEE Access (2025)

    Das, A.R., Koskinopoulou, M.: Towards sustainable manufacturing: A review on innovations in robotic assembly and disassembly. IEEE Access (2025)

  16. [16]

    Dorussen, R.: Learning how to solve the buzz-wire game with a robot arm. Ph.D. thesis, Msc Thesis Report, Eindhoven University of Technology (2021)

  17. [17]

    In: IEEE International Conference on Robotics and Automation

    Ebinger, T., Kaden, S., Thomas, S., Andre, R., Amato, N., Thomas, U.: A general and flexible search framework for disassembly planning. In: IEEE International Conference on Robotics and Automation. pp. 3548–3555 (Sep 2018)

  18. [18]

    In: IEEE International Conference on Intelligent Robots and Systems

    Eppner,C., Brock, O.:Visual detection of opportunitiesto exploit contact ingrasp- ing using contextual multi-armed bandits. In: IEEE International Conference on Intelligent Robots and Systems. pp. 273–278 (2017) 18 Bayraktar et al

  19. [19]

    IEEE Robotics and Au- tomation Letters8(10), 6651–6658 (2023)

    Faroni, M., Berenson, D.: Motion planning as online learning: A multi-armed ban- dit approach to kinodynamic sampling-based planning. IEEE Robotics and Au- tomation Letters8(10), 6651–6658 (2023)

  20. [20]

    In: IEEE International Conference on Robotics and Au- tomation (ICRA)

    Faroni, M., Berenson, D.: Online adaptation of sampling-based motion planning with inaccurate models. In: IEEE International Conference on Robotics and Au- tomation (ICRA). pp. 2382–2388. IEEE (2024)

  21. [21]

    In: IEEE International Conference on Intelligent Robots and Systems

    Gammell, J.D., Srinivasa, S.S., Barfoot, T.D.: Informed rrt*: Optimal sampling- based path planning focused via direct sampling of an admissible ellipsoidal heuris- tic. In: IEEE International Conference on Intelligent Robots and Systems. pp. 2997–3004 (2014)

  22. [22]

    International Conference on Algorithmic Learning Theory (May 2008)

    Garivier, A., Moulines, É.: On upper-confidence bound policies for non-stationary bandit problems. International Conference on Algorithmic Learning Theory (May 2008)

  23. [23]

    https://libeigen.gitlab.io (2010)

    Guennebaud, G., Jacob, B., et al.: Eigen. https://libeigen.gitlab.io (2010)

  24. [24]

    In: IEEE International Conference on Robotics and Automation

    Hsu, D., Jiang, T., Reif, J., Sun, Z.: The bridge test for sampling narrow pas- sages with probabilistic roadmap planners. In: IEEE International Conference on Robotics and Automation. vol. 3, pp. 4420–4426 (2003)

  25. [25]

    IEEE Transactions on Automa- tion Science and Engineering (2025)

    Huang, L., Meng, L., Jing, X., Wang, J.: Selective densification for rapid motion planning in high dimensions with narrow passages. IEEE Transactions on Automa- tion Science and Engineering (2025)

  26. [26]

    In: IEEE International Conference on Robotics and Automation

    Ichter, B., Harrison, J., Pavone, M.: Learning sampling distributions for robot motion planning. In: IEEE International Conference on Robotics and Automation. pp. 7087–7094. IEEE (2018)

  27. [27]

    Cambridge university press (2003)

    Jaynes, E.T.: Probability theory: The logic of science. Cambridge university press (2003)

  28. [28]

    In: International encyclopedia of statis- tical science, pp

    Jolliffe, I.: Principal component analysis. In: International encyclopedia of statis- tical science, pp. 1094–1096. Springer (2011)

  29. [29]

    The international journal of robotics research30(7), 846–894 (2011)

    Karaman, S., Frazzoli, E.: Sampling-based algorithms for optimal motion planning. The international journal of robotics research30(7), 846–894 (2011)

  30. [30]

    In: IEEE Interna- tional Conference on Intelligent Robots and Systems (IROS)

    Koval, M.C., King, J.E., Pollard, N.S., Srinivasa, S.S.: Robust trajectory selection for rearrangement planning as a multi-armed bandit problem. In: IEEE Interna- tional Conference on Intelligent Robots and Systems (IROS). pp. 2678–2685 (2015)

  31. [31]

    In: IEEE International Conference on Robotics and Automation

    Kuffner, J.J., LaValle, S.M.: RRT-connect: An efficient approach to single-query path planning. In: IEEE International Conference on Robotics and Automation. vol. 2, pp. 995–1001 (2000)

  32. [32]

    IEEE Robotics and Au- tomation Letters7(1), 323–330 (2022)

    Lai, T., Ramos, F.: Rapidly-exploring random forest: Adaptively exploits local structure with generalised multi-trees motion planning. IEEE Robotics and Au- tomation Letters7(1), 323–330 (2022)

  33. [33]

    Springer (2022)

    Laili, Y., Wang, Y., Fang, Y., Pham, D.T.: Optimisation of robotic disassembly for remanufacturing. Springer (2022)

  34. [34]

    Cambridge university press (2006)

    LaValle, S.M.: Planning algorithms. Cambridge university press (2006)

  35. [35]

    In: IEEE International Conference on Robotics and Automation

    Lee, J., Kwon, O., Zhang, L., Yoon, S.e.: Sr-rrt: Selective retraction-based rrt plan- ner. In: IEEE International Conference on Robotics and Automation. pp. 2543– 2550 (2012)

  36. [36]

    IEEE Transactions on Automation Science and Engineering17(3), 1455– 1468 (2020)

    Li, R., Pham, D.T., Huang, J., Tan, Y., Qu, M., Wang, Y., Kerin, M., Jiang, K., Su, S., Ji, C., et al.: Unfastening of hexagonal headed screws by a collaborative robot. IEEE Transactions on Automation Science and Engineering17(3), 1455– 1468 (2020)

  37. [37]

    In: IEEE International Conference on Robotics and Automation

    Li, Y., Bekris, K.E.: Balancing state-space coverage in planning with dynamics. In: IEEE International Conference on Robotics and Automation. pp. 3246–3253 (2010) Scale-Invariant Sampling 19

  38. [38]

    IEEE Robotics & Au- tomation Magazine22(3), 96–102 (September 2015)

    Moll, M., Şucan, I.A., Kavraki, L.E.: Benchmarking motion planning algorithms: An extensible infrastructure for analysis and visualization. IEEE Robotics & Au- tomation Magazine22(3), 96–102 (September 2015)

  39. [39]

    IEEE Access 11, 45129–45139 (2023)

    Motoda, T., Petit, D., Nishi, T., Nagata, K., Wan, W., Harada, K.: Multi-step object extraction planning from clutter based on support relations. IEEE Access 11, 45129–45139 (2023)

  40. [40]

    Society for Industrial and Applied Mathematics, Philadelphia (1992)

    Niederreiter, H.: Random Number Generation and Quasi-Monte-Carlo Methods. Society for Industrial and Applied Mathematics, Philadelphia (1992)

  41. [41]

    Annual Review of Control, Robotics, and Autonomous Systems 7(1), 285–310 (2024)

    Orthey, A., Chamzas, C., Kavraki, L.E.: Sampling-based motion planning: A com- parative review. Annual Review of Control, Robotics, and Autonomous Systems 7(1), 285–310 (2024)

  42. [42]

    Hand- book of industrial robotics2, 1023–1036 (1998)

    Parker, L.E., Draper, J.V.: Robotics applications in maintenance and repair. Hand- book of industrial robotics2, 1023–1036 (1998)

  43. [43]

    arXiv preprint arXiv:2503.22427 (2025)

    Pathak, A., Muthusamy, R.: Collapse and collision aware grasping for cluttered shelf picking. arXiv preprint arXiv:2503.22427 (2025)

  44. [44]

    on lines and planes of closest fit to systems of points in space

    Pearson, K.: Liii. on lines and planes of closest fit to systems of points in space. The London, Edinburgh, and Dublin philosophical magazine and journal of science 2(11), 559–572 (1901)

  45. [45]

    Rickert, M., Sieverling, A., Brock, O.: Balancing exploration and exploitation in sampling-basedmotionplanning.IEEETransactionsonRobotics30(6),1305–1317 (2014)

  46. [46]

    Autonomous Robots35(1), 27–36 (2013)

    Rosell, J., Suárez, R., Pérez, A.: Path planning for grasping operations using an adaptive pca-based sampling method. Autonomous Robots35(1), 27–36 (2013)

  47. [47]

    The International Journal of Advanced Manufacturing Technology 124(9), 3171–3183 (2023)

    Serrano-Munoz, A., Arana-Arexolaleiba, N., Chrysostomou, D., Bøgh, S.: Learning and generalising object extraction skill for contact-rich disassembly tasks: an intro- ductory study. The International Journal of Advanced Manufacturing Technology 124(9), 3171–3183 (2023)

  48. [48]

    Foundations and Trends in Machine Learning12(1-2), 1–286 (2019)

    Slivkins, A., et al.: Introduction to multi-armed bandits. Foundations and Trends in Machine Learning12(1-2), 1–286 (2019)

  49. [49]

    IEEE Robotics & Automation Magazine19(4), 72–82 (December 2012)

    Şucan, I.A., Moll, M., Kavraki, L.E.: The Open Motion Planning Library. IEEE Robotics & Automation Magazine19(4), 72–82 (December 2012)

  50. [50]

    Journal of Computational Biology10(3-4), 617– 634 (2003)

    Teodoro, M.L., Phillips Jr, G.N., Kavraki, L.E.: Understanding protein flexibility through dimensionality reduction. Journal of Computational Biology10(3-4), 617– 634 (2003)

  51. [51]

    In: Conference on Robot Learning (2025)

    Tian, Y., Jacob, J., Huang, Y., Zhao, J., Gu, E.L., Ma, P., Zhang, A., Javid, F., Romero, B., Chitta, S., Sueda, S., Li, H., Matusik, W.: Fabrica: Dual-arm assembly of general multi-part objects via integrated planning and learning. In: Conference on Robot Learning (2025)

  52. [52]

    ACM Trans

    Tian, Y., Xu, J., Li, Y., Luo, J., Sueda, S., Li, H., Willis, K.D., Matusik, W.: As- semble them all: Physics-based planning for generalizable assembly by disassembly. ACM Trans. Graph.41(6) (2022)

  53. [53]

    In: IEEE International Conference on Intelligent Robots and Systems

    Yershova, A., Jaillet, L., Siméon, T., LaValle, S.M.: Dynamic-domain rrts: Efficient exploration by controlling the sampling domain. In: IEEE International Conference on Intelligent Robots and Systems. pp. 3856–3861 (2005)

  54. [54]

    Journal of Manufacturing Science and Engineering145(3), 031008 (2023)

    Zhang, X., Eltouny, K., Liang, X., Behdad, S.: Automatic screw detection and tool recommendation system for robotic disassembly. Journal of Manufacturing Science and Engineering145(3), 031008 (2023)

  55. [55]

    In: AAMAS (1)

    Zickler, S., Veloso, M.M.: Efficient physics-based planning: sampling search via non-deterministic tactics and skills. In: AAMAS (1). pp. 27–33 (2009)