Pith. sign in

REVIEW 3 major objections 5 minor 73 references

DGA$_2$D: Directed Graph-Guided Automated Algorithm Design with Large Language Models

T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper claims graph-guided evolution of both operator code and operator connections cuts average optimality gaps by up to 10.96 percentage points on 12 NP-hard optimization problems.

desk verdict Strong empirical framework for LLM-driven algorithm design, but the headline gains in Section 4.2.2 are mis-reported and the true gap versus the strongest baseline is smaller than claimed. read the letter →

arxiv 2608.00700 v1 pith:7TTM3WAX submitted 2026-08-01 cs.AI cs.NE

classification cs.AIcs.NE
keywords automatedheuristicdesignlargelanguagemodelscombinatorialoptimizationdirectedgraphsearchspacecreditassignmentprogramevolutionNP-hardproblemsalgorithmgeneration
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

This paper claims that automated algorithm design works better when the search space is a directed graph whose nodes are functional operators and whose directed walks are complete algorithms, rather than a fixed solver template with tunable modules. The proposed DGA2D framework lets a large language model edit operator code, rewire operator connections, and choose code implementations, while a first-order path-dependent credit mechanism assigns each sampled algorithm's performance to individual code transitions. Across 12 NP-hard combinatorial optimization problems spanning scheduling, routing, packing, and graph optimization, the method reports reducing the average normalized gap by up to 10.96 percentage points relative to the strongest LLM-driven heuristic-design baselines. If correct, this matters because it suggests whole-algorithm design, not just module tuning, is achievable with current LLMs while keeping the search tractable enough to improve many problem classes.

What carries the argument

The machinery is a directed graph $D_t = (O_t, E_t)$ where each node $O_i$ is a functional operator carrying a pool $\mathcal{C}^{(t)}_i$ of code implementations, together with a first-order transition-credit estimator $Q_t(e)$ for transitions $e = (c_{t,j,i-1}, c_{t,j,i})$. Candidate algorithms are constructed by sampling a bounded directed walk from $O_{\mathrm{in}}$ to $O_{\mathrm{out}}$ and then sampling one implementation per operator from a softmax over transition credits. After evaluating $N$ candidates, the standardized terminal reward $\tilde{R}_{t,j}$ updates every activated transition via $Q_{t+1}(e) = (1-\alpha)Q_t(e) + \alpha \tilde{R}_{t,j}$, and aggregated credits drive dual-level evolution: delete, add, or replace the lowest-credit implementation of the lowest-credit operator, and replace the lowest-credit edge with a compatible new edge proposed by the LLM. The appendix proves that under a first-order sufficiency assumption on expected terminal rewards, first-order context minimizes finite-sample estimation risk among cell-mean estimators, and that the number of structural pipelines grows at the spectral radius of the input-output-relevant strongly connected components.

What would settle it

Record every activated implementation transition together with the two preceding implementations and its standardized terminal reward; fit $\mathbb{E}[Y \mid c_{i-1}, c_i]$ versus $\mathbb{E}[Y \mid c_{i-2}, c_{i-1}, c_i]$ on one half of the transitions and compare held-out predictive error. If the second-order context predicts significantly better, the first-order sufficiency assumption is false and the theoretical basis of the credit-assignment mechanism collapses; the empirical benchmark claims could also be tested by independent reruns on fresh instance splits.

Watch

Extended reading notes

Core claim

The central discovery is that jointly evolving operator implementations and operator connectivity is not only feasible but systematically better than tuning heuristics inside a fixed template, provided the algorithm space is represented as a directed graph with per-operator implementation pools. A pipeline is a bounded directed walk from an input sentinel to an output sentinel; cycles are allowed, so an operator motif can appear repeatedly as iterative refinement. Performance is observed only on complete candidate algorithms, so DGA2D distributes each standardized terminal reward back to first-order implementation transitions, pairs $(c_{i-1}, c_i)$, and uses the accumulated transition credits to sample implementations, to add or delete low-credit operator implementations, and to replace low-credit graph edges. The reported experiments show consistent wins over four LLM-based heuristic-design baselines across all 12 domains, with the largest average normalized-gap reduction of 10.96 percentage points under one of the two LLM backbones.

Load-bearing premise

The load-bearing premise is first-order sufficiency: the expected terminal reward of a code transition depends only on the immediate predecessor implementation and the current implementation, not on longer history; if that fails, higher-order contexts carry useful information and the theoretical case for first-order credit assignment weakens.

Editorial extensions

If this is right

  • LLM-based automated heuristic design can move from module-level tuning to system-level evolution, and on the 12 tested NP-hard domains the average normalized gap drops by 9.67 percentage points under one backbone and 10.96 under the other.
  • Cyclic directed-graph structure is useful: the DG representation beats fixed, linear, and DAG variants on CVRP, FJSP, MIS, and 3D-CLP, meaning repeated operator motifs can express iterative refinement.
  • First-order path-dependent credit is the best context granularity among those tested, outperforming zero-order, second-order, and full-path credit, which suggests that overly long histories add noise rather than signal.
  • The gains are not tied to a single LLM: DGA2D ranks first under both main backbones and across all eight backbones tested on flexible job-shop scheduling.
  • The framework also produces competitive algorithms on continuous tasks such as ODE integration, feedback control, and root-finding, so the design principle may transfer beyond discrete combinatorial benchmarks.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The first-order credit update is essentially temporal-difference-style reward estimation over program fragments; one could import exploration bonuses, upper-confidence bounds, or off-policy corrections into the same update, which the paper does not explore.
  • Because the representation separates operator structure from operator implementation, a credit table learned on one domain might warm-start evolution on a related domain; the paper evaluates each domain from scratch.
  • The poor performance of full-path credit is reported, not explained; a plausible reading is finite-sample variance, and a regularized higher-order estimator could test whether longer histories carry any true signal beyond first-order transitions.
  • The paper itself acknowledges remaining limitations: computational cost of some generated algorithms, sensitivity to the initial operator pool, and potential cross-module inconsistencies, which delimit rather than overturn the reported benchmark gains.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes DGA2D, a framework for LLM-driven automated heuristic design in which the space of complete solver programs is represented as a directed graph: nodes are functional operators, each with a pool of code implementations, and directed walks constitute algorithmic pipelines. An LLM proposes new implementations and edge edits, while a first-order path-dependent credit assignment mechanism, based on standardized terminal rewards of complete pipelines, guides implementation sampling and dual-level evolution of pools and graph topology. The authors claim consistent superiority over four prior LLM-based AHD baselines across 12 NP-hard combinatorial optimization problems under two LLM backbones, reporting average normalized-gap reductions of up to 10.96 percentage points, and they present ablations, convergence analyses, resource accounting, and extensions to continuous numerical tasks. The appendices contain formal statistical and spectral analysis of the credit assignment and graph representation.

Significance. If the claims hold after correction, the work is significant: it moves LLM-based automated heuristic design from isolated module tuning toward system-level algorithm architecture search, and it provides a concrete mechanism (directed-graph search space plus first-order transition credit) that appears broadly effective across very different problem domains. The paper is strong in breadth: 12 COP domains, two LLM backbones, ten independent runs, multiple ablations, wall-clock and token accounting, out-of-distribution tests, and extensions to ODE solving, control, and root finding. The formal appendices are careful and self-scoped, and the qualitative result that DGA2D is best on essentially every reported domain-backbone combination is consistent across Tables 1 and 8. However, the headline quantitative claims in the abstract and Section 4.2.2 do not survive direct recomputation from Table 1, and there are further table-to-text conflicts in the extended results. The central empirical direction appears defensible, but the reported magnitudes must be corrected and reconciled before the claims can be accepted as stated.

major comments (3)
  1. [§4.2.2 and Table 1] The headline improvement numbers are inconsistent with Table 1. Under DeepSeek-V4-Flash, DGA2D's four gaps in Table 1 average to (5.24+9.94+10.40+0.51)/4 = 6.52%, not the stated 6.02%. The strongest LLM baseline is MEoH at (19.17+26.37+16.48+0.73)/4 = 15.69%, so the actual improvement is 15.69−6.52 = 9.17 percentage points, not 9.67. Under GPT-5.6 Sol, the strongest baseline by Table 1 is MCTS-AHD at (18.50+23.32+15.16+1.05)/4 = 14.51%, not ReEvo at 15.56%; the improvement is 14.51−4.60 = 9.91 percentage points, not 10.96. Thus the claim that the 10.96 pp reduction is against the strongest baseline is false as written, and the DeepSeek claim relies on an incorrect DGA2D average. The authors should recompute all averages, correct the abstract and Section 4.2.2, and state explicitly which baseline is used for each comparison.
  2. [Appendix F.1 and Table 8] The extended results contain a further numerical inconsistency for GPT-5.6 Sol. The text states that DGA2D's average gap of 2.14% is compared with 9.77% for the strongest baseline, yielding a 7.63 pp improvement. From Table 8, the per-method baseline averages are EoH (6.75+24.36+0.25+9.07+9.68+16.53+6.59+6.01)/8 = 9.91%, MCTS-AHD 13.91%, MEoH 12.29%, and ReEvo 11.71%; no baseline average equals 9.77%. If EoH is the strongest baseline, the improvement is 9.91−2.14 = 7.77 pp, not 7.63. The authors need to reconcile the stated baseline average with the values in Table 8 or explain which subset of benchmarks was used.
  3. [Table 9 vs. Table 1] Table 9 reports an FJSP gap of 22.20% for MCTS-AHD under DeepSeek-V4-Flash, whereas Table 1 reports 24.59±5.25% for the same configuration, backbone, and benchmark. This is not a rounding difference. The claimed reduction range of 55.2%–60.1% for DGA2D relative to MCTS-AHD depends on the Table 9 value for its lower bound; using Table 1 would give a range of roughly 59.6%–60.1%. The authors should determine which table is correct and ensure that all backbone-sensitivity statistics are computed from the same underlying runs.
minor comments (5)
  1. [Abstract and §1] The abstract and the introduction repeat the 10.96 percentage-point improvement and the 'strongest baseline' framing; these statements should be revised after the Table 1 recomputation so that the abstract does not overstate the headline result.
  2. [§3.3, Eq. (1)] The pipeline notation uses L_{t,j} in Eq. (1) before the length bound and validity constraints are introduced; defining L_{t,j} and L_max before Eq. (1) would improve readability.
  3. [Appendix D.2] The theoretical support for first-order credit assignment explicitly relies on the first-order sufficiency assumption in Eq. (127), and the appendix itself notes that this assumption may fail. The main text should acknowledge this dependence when citing the statistical analysis, since the empirical ablation in Table 3 is the actual evidence for first-order credit in practice.
  4. [Appendix E.1] The text states that an anonymized repository is submitted with the supplementary material, but no link or access instructions appear in the manuscript. Given the table-to-text discrepancies noted above, providing the code, raw result files, and evaluation scripts is essential for verification.
  5. [Appendix F.1, final paragraph] The sentence 'DGA2D ranks first in all 16 combinations of the eight additional benchmarks and two LLM backbones' should say 'all 16 domain-backbone combinations' to avoid ambiguity about what is being counted.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the central empirical comparison is against external baselines, and the theoretical optimality result is explicitly conditional on a stated assumption.

full rationale

I walked the derivation chain from the directed-graph representation (Section 3.3) through credit assignment (Section 3.4) to the benchmark evaluation (Section 4.2). The main quantitative claim — that DGA2D reduces the average normalized gap relative to LLM-based AHD baselines — is supported by Table 1 and Table 8, which compare against externally published methods (EoH, MCTS-AHD, MEoH, ReEvo) on held-out test splits; the paper states that the evolution and test sets are mutually exclusive. The ablations in Tables 2–4 are experimental comparisons of design variants, not derivations from the method's own outputs. The only theorem bearing on the design choice, Theorem 2 in Appendix D.2, explicitly assumes first-order sufficiency in Eq. (127) and then derives a finite-sample risk comparison conditional on that assumption; the paper itself disclaims universal optimality, so the assumption is not disguised as a conclusion. There are no load-bearing self-citations, no imported uniqueness theorems, and no fitted quantity renamed as a prediction. The headline improvement numbers in Section 4.2.2 do not exactly match recomputation from Table 1, which is an internal-consistency and correctness concern rather than a circularity, so it does not raise the circularity score.

Assumptions & free parameters 7 free parameters · 6 assumptions · 1 invented entities

The central empirical claim rests on a set of hand-chosen hyperparameters (especially K, which is tuned per problem) and on domain assumptions about first-order sufficiency, noise structure, and reference values. The theoretical appendices provide supporting analyses but do not independently establish the method's advantage without these assumptions.

free parameters (7)
  • Operator pool capacity K = Not fixed: sensitivity tested at 4, 8, 15, 20; best differs per problem (FJSP 15, CVRP/MIS/3D-CLP 20)
    The maximum number of functional operators in the pool is a user-chosen hyperparameter that materially changes performance (Table 4); no single default is used in the main experiments.
  • Sampling temperature tau = 0.7
    Set for initialization and implementation sampling; affects exploration-exploitation tradeoff but is not adapted per problem.
  • Credit update rate alpha = 0.1
    Learning rate for transition-credit exponential moving average (Eq. 7); controls bias-variance tradeoff of credit estimates.
  • Maximum implementation-pool size M = 10
    Bounds the number of candidate code implementations per operator; affects search space and diversity.
  • Pipelines per generation N = 4
    Candidate algorithms sampled per generation; larger N would cost more LLM and evaluation budget.
  • Shared instances per generation k = 3
    Number of evolution instances used to score each candidate; small k may make scores noisy.
  • Maximum pipeline length L_max = 10
    Upper bound on operator count in a pipeline; restricts expressivity of sampled algorithms.
assumptions (6)
  • domain assumption First-order sufficiency: E[Y_s | H_s] = mu(X^(1)_s), the expected terminal credit depends only on the immediate predecessor and current implementation (Appendix D.2, Eq. 127).
    Used to prove Theorem 2 that first-order credit minimizes estimation risk among compared orders; if false, higher-order contexts carry information and the empirical advantage of first-order is not guaranteed.
  • domain assumption Martingale-difference noise model for terminal credits in the transition-credit update (Appendix D.4, Eqs. 207-209 and 221).
    Theorems 4 and 5 derive convergence and tracking bounds under this idealized noise model; the authors acknowledge generation-level standardization may induce dependence, so the bounds are conditional.
  • standard math Perron-Frobenius theorem and standard nonnegative matrix theory (Appendix D.3).
    Theorem 3 and Corollary 2 use the spectral radius of strongly connected components to characterize pipeline growth.
  • standard math Probability chain rule and softmax policy gradient identities (Appendix D.1).
    Theorem 1 and Corollary 1 are standard REINFORCE-style derivations.
  • domain assumption Benchmark reference values (BKS or EP+FF for 3D-CLP) are valid performance anchors.
    Normalized gaps are computed against these references; for 3D-CLP the reference is a simple heuristic, so negative gaps are possible and improvements are not absolute optimality gaps.
  • domain assumption The LLM can generate interface-compatible operator code that passes AST, signature, runtime, and smoke validation (Appendix C.4).
    Evolution depends on valid code generation; the framework includes validation gates, but if the LLM cannot produce valid operators the search degenerates.
invented entities (1)
  • First-order transition credit Q_t(e)
    purpose: Internal ledger value estimating the expected standardized terminal reward of a code transition for the implementation-selection policy.
    It is an algorithmic bookkeeping quantity with no falsifiable handle outside the paper; its effectiveness is judged only through the framework's end-to-end performance.

how reviews work

0 comments
Cite this review

Pith. "Pith review of DGA$_2$D: Directed Graph-Guided Automated Algorithm Design with Large Language Models." pith.science (2026). https://pith.science/paper/7TTM3WAX

@misc{pith2026260800700,
  author       = {Pith},
  title        = {Pith review of: DGA$_2$D: Directed Graph-Guided Automated Algorithm Design with Large Language Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/7TTM3WAX}},
  note         = {Machine review of arXiv:2608.00700}
}
abstract

The rapid development of Large Language Models (LLMs) has opened new avenues for Automated Heuristic Design (AHD) for solving NP-hard combinatorial optimization problems (COPs). However, existing LLM-driven AHD methods are largely confined to rigid solver templates, relegating the search process to isolated module tuning. Transitioning to fully autonomous, system-level algorithm design is essential but fraught with low reliability of generated operators, extremely large search spaces, and ineffective credit assignment. To overcome these drawbacks, this paper proposes a Directed Graph-Guided Automated Algorithm Design framework, termed DGA$_2$D. It structures the open-ended program space as a directed graph, where each node represents a functional operator that can be instantiated using one of multiple candidate code implementations, while directed walks constitute complete algorithmic pipelines. A first-order path-dependent credit assignment mechanism is introduced to evaluate code variations strictly based on their topological context. Extensive experiments across 12 distinct COPs, ranging from complex scheduling to routing, demonstrate the consistent empirical advantages of DGA$_2$D. It reduces the average normalized gap by up to 10.96 percentage points compared to state-of-the-art LLM baselines.

Figures

Figures reproduced from arXiv: 2608.00700 by the authors.

Figure 1
Figure 1. Evolution of Automated Heuristic Design (AHD). [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of the DGA2D framework. (a) LLM-driven initialization of problem configuration and operator pool. (b) Candidate algorithm construction by sampling operator structures and implementations. (c) Hierarchical credit assignment based on candidate algorithm performance. (d) Dual-level evolution of operator implementations and algorithmic pipelines guided by aggregated credits. Then, the direction-aware normalized… view at source ↗
Figure 3
Figure 3. illustrates the convergence trajectories of DGA2D compared to the LLM-based AHD frameworks. First, it can be seen that DGA2D exhibits a pattern of frequent, multi-step descents, ultimately converging to the smallest normalized gap over all instances. Second, the continued improvements observed over a long search horizon suggest that increased structural flexibility contributes to escaping local optima and identifyin… view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Stage-wise convergence of DGA2D on CVRP, showing the best-so-far optimality gap across the early, middle, and late evolutionary stages [PITH_FULL_IMAGE:figures/full_fig_p041_4.png]
Figure 5
Figure 5. Figure 5: Convergence of the best-so-far optimality gap on FJSP with respect to output tokens (left) and the number of LLM [PITH_FULL_IMAGE:figures/full_fig_p042_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

73 extracted references · 50 canonical work pages

  1. [1]

    Journal of the Operational Research Society , volume=

    Hyper-heuristics: A survey of the state of the art , author=. Journal of the Operational Research Society , volume=. 2013 , publisher=

  2. [2]

    Information Sciences , volume=

    Population-based algorithm portfolios with automated constituent algorithms selection , author=. Information Sciences , volume=. 2014 , publisher=

  3. [3]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Hydra: Automatically configuring algorithms for portfolio-based selection , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  4. [4]

    2005 IEEE congress on evolutionary computation , volume=

    Logistic regression for parameter tuning on an evolutionary algorithm , author=. 2005 IEEE congress on evolutionary computation , volume=. 2005 , organization=

  5. [5]

    Procedia Computer Science , volume=

    Automatic workflow scheduling tuning for distributed processing systems , author=. Procedia Computer Science , volume=. 2016 , publisher=

  6. [6]

    Handbook of metaheuristics , pages=

    A classification of hyper-heuristic approaches , author=. Handbook of metaheuristics , pages=. 2010 , publisher=

  7. [7]

    European Journal of Operational Research , volume=

    Recent advances in selection hyper-heuristics , author=. European Journal of Operational Research , volume=. 2020 , publisher=

  8. [8]

    2018 , publisher=

    Hyper-heuristics: theory and applications , author=. 2018 , publisher=

Show all 73 references
  1. [9]

    2026 , url =

    Fei Liu and Yiming Yao and Ping Guo and Zhiyuan Yang and Xi Lin and Zhe Zhao and Xialiang Tong and Kun Mao and Zhichao Lu and Zhenkun Wang and Mingxuan Yuan and Qingfu Zhang , title =. 2026 , url =. doi:10.1145/3787585 , timestamp =

  2. [10]

    Nature , volume=

    Mathematical discoveries from program search with large language models , author=. Nature , volume=. 2024 , publisher=

  3. [11]

    Proceedings of the 41st International Conference on Machine Learning , pages =

    Evolution of Heuristics: Towards Efficient Automatic Algorithm Design Using Large Language Model , author =. Proceedings of the 41st International Conference on Machine Learning , pages =. 2024 , editor =

  4. [12]

    Advances in neural information processing systems , volume=

    Reevo: Large language models as hyper-heuristics with reflective evolution , author=. Advances in neural information processing systems , volume=

  5. [13]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Hsevo: Elevating automatic heuristic design with diversity-driven harmony search and genetic algorithm using llms , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  6. [14]

    arXiv preprint arXiv:2604.24043 , year=

    A2DEPT: Large Language Model-Driven Automated Algorithm Design via Evolutionary Program Trees , author=. arXiv preprint arXiv:2604.24043 , year=

  7. [15]

    2025 , editor =

    Zheng, Zhi and Xie, Zhuoliang and Wang, Zhenkun and Hooi, Bryan , booktitle =. 2025 , editor =

  8. [16]

    arXiv preprint arXiv:2512.08609 , year=

    CogMCTS: A Novel Cognitive-Guided Monte Carlo Tree Search Framework for Iterative Heuristic Evolution with Large Language Models , author=. arXiv preprint arXiv:2512.08609 , year=

  9. [17]

    50 Years of Integer Programming 1958-2008: from the Early Years to the State-of-the-Art , pages=

    Reducibility among combinatorial problems , author=. 50 Years of Integer Programming 1958-2008: from the Early Years to the State-of-the-Art , pages=. 2009 , publisher=

  10. [18]

    Computing , volume=

    Job-shop scheduling with multi-purpose machines , author=. Computing , volume=. 1990 , publisher=

  11. [19]

    Operations research , volume=

    A survey of scheduling rules , author=. Operations research , volume=. 1977 , publisher=

  12. [20]

    Operations research , volume=

    Scheduling of vehicles from a central depot to a number of delivery points , author=. Operations research , volume=. 1964 , publisher=

  13. [21]

    Omega , volume=

    A heuristic algorithm for the m-machine, n-job flow-shop sequencing problem , author=. Omega , volume=. 1983 , publisher=

  14. [22]

    Bell System Technical Journal , volume=

    Computer solutions of the traveling salesman problem , author=. Bell System Technical Journal , volume=. 1965 , publisher=

  15. [23]

    Operations research , volume=

    An effective heuristic algorithm for the traveling-salesman problem , author=. Operations research , volume=. 1973 , publisher=

  16. [24]

    Artificial Neural Networks: An Introduction to ANN Theory and Practice , pages=

    Local search in combinatorial optimization , author=. Artificial Neural Networks: An Introduction to ANN Theory and Practice , pages=. 2005 , publisher=

  17. [25]

    science , volume=

    Optimization by simulated annealing , author=. science , volume=. 1983 , publisher=

  18. [26]

    IEEE transactions on systems, man, and cybernetics, part b (cybernetics) , volume=

    Ant system: optimization by a colony of cooperating agents , author=. IEEE transactions on systems, man, and cybernetics, part b (cybernetics) , volume=. 1996 , publisher=

  19. [27]

    ACM computing surveys (CSUR) , volume=

    Metaheuristics in combinatorial optimization: Overview and conceptual comparison , author=. ACM computing surveys (CSUR) , volume=. 2003 , publisher=

  20. [28]

    Journal of heuristics , volume=

    Testing heuristics: We have it all wrong , author=. Journal of heuristics , volume=. 1995 , publisher=

  21. [29]

    The Twelfth International Conference on Learning Representations , year=

    Large Language Models as Optimizers , author=. The Twelfth International Conference on Learning Representations , year=

  22. [30]

    2nd Workshop on Language and Robot Learning: Language as Grounding , year=

    Eureka: Human-Level Reward Design via Coding Large Language Models , author=. 2nd Workshop on Language and Robot Learning: Language as Grounding , year=

  23. [31]

    arXiv preprint arXiv:2311.15249 , year=

    Algorithm evolution using large language model , author=. arXiv preprint arXiv:2311.15249 , year=

  24. [32]

    Niki van Stein and Thomas B. LLaMEA:. 2025 , url =. doi:10.1109/TEVC.2024.3497793 , timestamp =

  25. [33]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Multi-objective evolution of heuristic using large language model , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  26. [34]

    ORSA Journal on computing , volume=

    Tabu search—part I , author=. ORSA Journal on computing , volume=. 1989 , publisher=

  27. [35]

    Handbook of metaheuristics , pages=

    Iterated local search: Framework and applications , author=. Handbook of metaheuristics , pages=. 2018 , publisher=

  28. [36]

    Advances in neural information processing systems , volume=

    Pomo: Policy optimization with multiple optima for reinforcement learning , author=. Advances in neural information processing systems , volume=

  29. [37]

    2026 , url=

    Xiangjie Xiao and Cong Zhang and Wen Song and Zhiguang Cao , booktitle=. 2026 , url=

  30. [38]

    The Thirteenth International Conference on Learning Representations , year=

    Scalable Discrete Diffusion Samplers: Combinatorial Optimization and Statistical Physics , author=. The Thirteenth International Conference on Learning Representations , year=

  31. [39]

    arXiv preprint arXiv:1708.05930 , year=

    Solving a new 3d bin packing problem with deep reinforcement learning method , author=. arXiv preprint arXiv:1708.05930 , year=

  32. [40]

    Advances in Neural Information Processing Systems , volume=

    Matrix encoding networks for neural combinatorial optimization , author=. Advances in Neural Information Processing Systems , volume=

  33. [41]

    The Twelfth International Conference on Learning Representations , year=

    ReSched: Rethinking Flexible Job Shop Scheduling from a Transformer-based Architecture with Simplified States , author=. The Twelfth International Conference on Learning Representations , year=

  34. [42]

    Advances in neural information processing systems , volume=

    Difusco: Graph-based diffusion solvers for combinatorial optimization , author=. Advances in neural information processing systems , volume=

  35. [43]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Learning to iteratively route vehicles via deep reinforcement learning , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  36. [44]

    Advances in Neural Information Processing Systems , volume=

    NeuroLKH: Combining deep learning model with Lin-Kernighan-Helsgaun heuristic for solving the traveling salesman problem , author=. Advances in Neural Information Processing Systems , volume=

  37. [45]

    Computers & Operations Research , volume=

    Hybrid genetic search for the CVRP: Open-source implementation and SWAP* neighborhood , author=. Computers & Operations Research , volume=

  38. [46]

    Advances in neural information processing systems , volume=

    DeepACO: Neural-enhanced ant systems for combinatorial optimization , author=. Advances in neural information processing systems , volume=

  39. [47]

    Mathematical Programming , pages=

    Machine learning augmented branch and bound for mixed integer linear programming , author=. Mathematical Programming , pages=. 2024 , publisher=

  40. [48]

    The Twelfth International Conference on Learning Representations , year=

    L2p-MIP: Learning to presolve for mixed integer programming , author=. The Twelfth International Conference on Learning Representations , year=

  41. [49]

    arXiv preprint arXiv:2302.05636 , year=

    A gnn-guided predict-and-search framework for mixed-integer linear programming , author=. arXiv preprint arXiv:2302.05636 , year=

  42. [50]

    International conference on machine learning , pages=

    Learning to cut by looking ahead: Cutting plane selection via imitation learning , author=. International conference on machine learning , pages=. 2022 , organization=

  43. [51]

    Advances in Neural Information Processing Systems , volume=

    Learning to schedule heuristics in branch and bound , author=. Advances in Neural Information Processing Systems , volume=

  44. [52]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Ac-band: A combinatorial bandit-based approach to algorithm configuration , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  45. [53]

    Computers & Industrial Engineering , volume=

    Hyper-heuristics: A survey and taxonomy , author=. Computers & Industrial Engineering , volume=. 2024 , publisher=

  46. [54]

    Proceedings of the 17th ACM/SIGEVO Conference on Foundations of Genetic Algorithms , pages=

    Using automated algorithm configuration for parameter control , author=. Proceedings of the 17th ACM/SIGEVO Conference on Foundations of Genetic Algorithms , pages=

  47. [55]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Configx: Modular configuration for evolutionary algorithms via multitask reinforcement learning , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  48. [56]

    Applied Soft Computing , volume=

    A selection hyper-heuristic algorithm with Q-learning mechanism , author=. Applied Soft Computing , volume=. 2023 , publisher=

  49. [57]

    Proceedings of the genetic and evolutionary computation conference , pages=

    Learning from offline and online experiences: A hybrid adaptive operator selection framework , author=. Proceedings of the genetic and evolutionary computation conference , pages=

  50. [58]

    Algorithms , volume=

    Automated Generation of Hybrid Metaheuristics Using Learning-to-Rank , author=. Algorithms , volume=. 2025 , publisher=

  51. [59]

    Proceedings of the Genetic and Evolutionary Computation Conference Companion , pages=

    Automated Generation of Trajectory-based Metaheuristics for Capacitated Vehicle Routing , author=. Proceedings of the Genetic and Evolutionary Computation Conference Companion , pages=

  52. [60]

    2024 , url =

    Yuxiao Huang and Wei Zhou and Yu Wang and Min Li and Liang Feng and Kay Chen Tan , title =. 2024 , url =. doi:10.1109/TEVC.2023.3323877 , timestamp =

  53. [61]

    Sustainable Scheduling of Distributed Flow Shop Group:

    Yuhang Wang and Yuyan Han and Yuting Wang and Quan. Sustainable Scheduling of Distributed Flow Shop Group:. 2024 , url =. doi:10.1109/TEVC.2023.3339558 , timestamp =

  54. [62]

    IEEE Transactions on Evolutionary Computation , year=

    A feedback learning-based memetic algorithm for energy-aware distributed flexible job-shop scheduling with transportation constraints , author=. IEEE Transactions on Evolutionary Computation , year=

  55. [63]

    IEEE transactions on evolutionary computation , volume=

    Knowledge learning for evolutionary computation , author=. IEEE transactions on evolutionary computation , volume=. 2023 , publisher=

  56. [64]

    IEEE Transactions on Evolutionary Computation , volume=

    Machine learning-assisted multiobjective evolutionary algorithm for routing and packing , author=. IEEE Transactions on Evolutionary Computation , volume=. 2024 , publisher=

  57. [65]

    IEEE Transactions on Evolutionary Computation , volume=

    Survey on genetic programming and machine learning techniques for heuristic design in job shop scheduling , author=. IEEE Transactions on Evolutionary Computation , volume=. 2023 , publisher=

  58. [66]

    The Twelfth International Conference on Learning Representations , year=

    Deep Reinforcement Learning Guided Improvement Heuristic for Job Shop Scheduling , author=. The Twelfth International Conference on Learning Representations , year=

  59. [67]

    arXiv preprint arXiv:2306.01276 , year=

    Symmetric replay training: Enhancing sample efficiency in deep reinforcement learning for combinatorial optimization , author=. arXiv preprint arXiv:2306.01276 , year=

  60. [68]

    IEEE Transactions on Neural Networks and Learning Systems , volume=

    Neural improvement heuristics for graph combinatorial optimization problems , author=. IEEE Transactions on Neural Networks and Learning Systems , volume=. 2023 , publisher=

  61. [69]

    Advances in Neural Information Processing Systems , volume=

    Fast t2t: Optimization consistency speeds up diffusion-based training-to-testing solving for combinatorial optimization , author=. Advances in Neural Information Processing Systems , volume=

  62. [70]

    CP-SAT , version =

    Laurent Perron and Frédéric Didier , organization =. CP-SAT , version =

  63. [71]

    , author=

    Towards a unified theory of state abstraction for MDPs. , author=. AI&M , volume=

  64. [72]

    European Journal of Operational Research , volume =

    Bengio, Yoshua and Lodi, Andrea and Prouvost, Antoine , title =. European Journal of Operational Research , volume =. 2021 , doi =

  65. [73]

    Wolpert and William G

    David H. Wolpert and William G. Macready , title =. 1997 , url =. doi:10.1109/4235.585893 , timestamp =

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.