|
This week at a glance
|
|
64
Must-reads
|
77
New papers
|
5
Active fronts
|
This week's theme: Concept-structured search is outperforming brute code mutation across multiple optimization domains.
|
|
Top Priority Papers
10 must-read papers this week (ranked by significance, recency, and impact)
| |
PRIORITY 9.3/10 MUST-READ
M=10
P=10
I=10
AlphaEvolve extends FunSearch by evolving entire code files (rather than single functions) using a 'search/replace' diff format and Gemini 2.0, achieving SOTA results across matrix multiplication (beating Strassen), 50+ open math problems, and Google's production scheduling. The results are exceptionally strong and verified, including deployed improvements to Google's Borg scheduler (0.7% resource recovery) and TPU circuits. The critical takeaway is the move to diff-based full-file evolution and meta-prompt evolution (evolving the prompt instructions alongside the code), which allows the system to modify architecture and logic rather than just heuristics. This is a mandatory blueprint for the next iteration of our AlgoEvo and EvoCut projects.
| |
PRIORITY 9.0/10 MUST-READ
2026-01-22 | Stanford University, NVIDIA, UC San Diego, Together AI, Astera Institute | 2601.16175
M=9
P=10
I=10
TTT-Discover introduces a method to fine-tune an LLM (gpt-oss-120b) during inference on a single test problem using RL, replacing the frozen-model evolutionary search of AlphaEvolve. They employ a novel 'entropic objective' that optimizes for the single best solution (discovery) rather than expected return, combined with PUCT-based state reuse. The results are empirically rigorous, setting new SOTA on Erdős’ problem, GPU kernel optimization, and AtCoder contests, directly beating AlphaEvolve and ShinkaEvolve. The critical takeaway is that for hard discovery tasks, shifting the model's distribution via online updates is superior to context-based search; we should immediately test their entropic objective in our AlgoEvo pipeline.
| |
PRIORITY 8.9/10 MUST-READ
2025-11-28 | Microsoft, University of Washington, Carnegie Mellon University, University of Wisconsin-Madison, University of California, San Diego | 2511.23473
M=10
P=9
I=9
ThetaEvolve integrates test-time reinforcement learning (GRPO) directly into an AlphaEvolve-style loop, allowing a single 8B model to learn from its own successful mutations and achieve new SOTA bounds on Circle Packing and Autocorrelation inequalities. The results are rigorous, showing that RL applied to the dynamic environment (sampling from the evolving database) vastly outperforms RL on static prompts or pure inference search. The most stealable insight is the 'lazy penalty' mechanism—penalizing semantically equivalent code or stagnation—which forces the RL policy to learn genuine exploration strategies rather than memorization. This is a blueprint for the 'RL-infused evolution' milestone in our AlgoEvo roadmap.
| |
PRIORITY 8.8/10 MUST-READ
2026-02-02 | Microsoft, The Ohio State University | 2602.02919
M=9
P=10
I=9
DeltaEvolve replaces the standard full-code history in evolutionary search with 'semantic deltas'—structured text summaries capturing the 'from/to' logic of modifications and their hypotheses. Across 5 domains (including BBOB and Symbolic Regression), they demonstrate superior objective scores over AlphaEvolve while reducing token consumption by ~37%. The critical takeaway is the 'Progressive Disclosure' mechanism: treating history as a momentum vector (deltas) rather than a state archive (snapshots) allows us to fit a deeper evolutionary trajectory into the context window. We should immediately test their 'Delta Plan' prompt structure in AlgoEvo to improve sample efficiency and reduce costs.
| |
PRIORITY 8.8/10 MUST-READ
M=9
P=10
I=9
LoongFlow replaces the standard stochastic mutation operator in LLM evolutionary search with a 'Plan-Execute-Summarize' (PES) cognitive loop. Instead of random code changes, a Planner retrieves the 'intent' and 'summary' of the parent solution's lineage to generate a directed hypothesis, which is then executed and summarized for the next generation. The authors demonstrate a 60% reduction in evaluations and a 100% success rate on AlphaEvolve tasks where standard methods fail or stagnate. The critical takeaway is the 'Lineage-Based Context Retrieval' mechanism: explicitly passing the parent's plan and retrospective summary to the child allows for directed rather than random walks in the search space. We must implement this PES loop in AlgoEvo immediately to fix our sample efficiency issues.
| |
PRIORITY 8.8/10 MUST-READ
2025-10-13 | Nanyang Technological University, Singapore, Singapore Management University, Singapore, Nanjing University of Information Science and Technology, China | 2510.11121
M=9
P=10
I=9
Zhu et al. fine-tune a Qwen-14B model using Reinforcement Learning (DAPO) to generate C++ crossover operators for the state-of-the-art HGS solver. Unlike typical prompting papers, they demonstrate that a small, specialized model can improve upon expert-designed components in a highly optimized solver, achieving superior results on CVRPLIB (up to 1000 nodes) where GPT-4o fails. The most stealable insight is their AST-based anti-plagiarism reward, which penalizes the model for generating code structurally identical to the prompt examples, effectively forcing exploration and preventing mode collapse—a technique we should immediately adopt for our evolutionary search agents. This confirms we should pivot from pure prompting to RL-finetuning for our code-generation agents.
| |
PRIORITY 8.8/10 MUST-READ
2025-09-26 | Sakana AI, Vector Institute, University of British Columbia, Canada CIFAR AI Chair | 2505.22954
M=10
P=8
I=10
DGM implements a population-based evolutionary loop where agents modify their own Python source code (tools, memory, flow) to improve performance on coding benchmarks, rather than just optimizing prompts or parameters. Results are strong and verified: it boosts a base agent from 20% to 50% on SWE-bench Verified, matching handcrafted SoTA, with ablations proving the necessity of the population archive (open-endedness) over single-lineage hill climbing. Key Takeaway: The 'self-diagnosis' mechanism—feeding execution logs to a model to propose specific architectural code changes (e.g., implementing a 'str_replace' tool to fix granular editing errors)—is the exact mechanism we need to implement for evolving our heuristic searchers. This validates that LLM-driven code evolution is viable for complex logic improvement, not just toy tasks.
|
Research Front Landscape
5 active fronts | 77 new papers
| |
Co-Evolutionary LLM Architectures for Enhanced Heuristic and Algorithm Design
STABLE Density: 0.29 23 papers
Methodsllm_code_generation program_synthesis llm_evolutionary_search evolution_of_heuristics llm_as_heuristic
Inst:DeepMind 26% · Google 9% · Sakana AI 9% · University of California 9%
This research front explores advanced architectural innovations in LLM-guided algorithm design, moving beyond basic Evolution of Heuristics (EoH) and FunSearch paradigms. It focuses on sophisticated co-evolutionary strategies, multi-agent systems, and novel population representations to improve the discovery and performance of heuristics for complex combinatorial optimization problems. Key themes include evolving interdependent operators, dynamically adapting search strategies, and co-evolving problem instances or prompt templates alongside the algorithms themselves. Key contributions include E2OC, which uses MCTS to co-evolve interdependent operators, achieving up to +22% Hypervolume on FJSP/TSP. LLM4EO demonstrates online operator design for Flexible Job Shop Scheduling, yielding 3-4% RPD_BM improvement. ASRO introduces a game-theoretic framework for co-evolving solvers and adversarial instance generators, outperforming EoH by 0.5-30% on OBP, TSP, and CVRP. A-CEoH enhances prompts with algorithmic context, enabling smaller LLMs to generate superior A heuristics for UPMP and SPP. EvoLattice proposes a DAG-based population representation with alternative-level statistics, boosting performance on NAS-Bench-Zero by over 150%. Other notable work includes LLM-driven test function generation (EoTF), co-evolution of prompts and Fireworks Algorithm operators (achieving 100% on Aircraft Landing vs. 56% for ReEvo), the dual-expert LLM4DRD for dynamic scheduling, TIDE's nested evolution for decoupling structure and parameter tuning (reducing TSP gap by 7.35%), RoCo's multi-agent system with long-term reflection, and EoH-S, which evolves complementary heuristic sets* to reduce optimality gaps by 40-60% compared to single-heuristic approaches. This front is rapidly emerging and maturing, characterized by a shift towards more complex, integrated LLM-driven systems. The trajectory indicates a strong focus on improving the efficiency, robustness, and generalization capabilities of generated algorithms. Future work will likely integrate these diverse architectural advancements, such as combining nested evolutionary loops with graph-based population representations, and expanding to more challenging multi-objective, constrained, and real-world dynamic optimization problems.
| |
Enhanced LLM Evolutionary Search via Concept Learning and Co-Evolution
STABLE Density: 0.50 15 papers
Methodsllm_code_generation llm_as_heuristic program_synthesis funsearch evolution_of_heuristics
Inst:DeepMind 20% · Singapore 13% · Harvard University 7% · Stanford University 7%
This research front significantly advances LLM-guided evolutionary search for algorithm design, primarily building upon and enhancing the FunSearch framework. It explores various architectural and methodological improvements to boost the efficiency, robustness, and generalization of automatically discovered algorithms. Key themes include evolving specific components like acquisition functions (FunBO), Vision-Language Model adaptation strategies (EvoVLMA), and competitive programming scoring functions, as well as discovering tensor network structures (tnGPS) and deletion-correcting codes. Several papers introduce significant contributions. Contrastive Concept-Tree Search (CCTS) extracts hierarchical concepts from generated programs to guide search, showing consistent improvements over k-elite selection on combinatorial tasks. Robusta enhances FunSearch by using a Heuristic Analyzer and Suggester LLM to explain failures, achieving a 28x improvement in worst-case performance on traffic engineering. G-LNS co-evolves destroy and repair operators for Large Neighborhood Search, outperforming OR-Tools on large CVRP instances. EvoPH co-evolves prompts and heuristics using an island model and strategy sampling, dominating FunSearch on TSP and BPP. QUBE improves parent selection in FunSearch by using an uncertainty-inclusive quality metric based on offspring performance, leading to better results on Bin Packing and TSP. Zhu et al. demonstrate RL-finetuning of a Qwen-14B model to generate C++ crossover operators for HGS, outperforming GPT-4o and expert-designed components on CVRPLIB. This front is rapidly maturing, moving beyond basic LLM-as-code-generator paradigms to sophisticated, self-improving search architectures. The trajectory indicates a shift towards more robust, interpretable, and efficient algorithm discovery. Future work will likely focus on integrating more advanced LLM reasoning capabilities, developing better feedback mechanisms (e.g., automated generalization of adversarial instances), and scaling these methods to even more complex, real-world problems with higher computational demands. The emphasis on co-evolution, concept learning, and failure analysis suggests a move towards more "white-box" and adaptive evolutionary systems.
| |
LLM-Enhanced Evolutionary Search: Diversity, RL, and Structural Co-evolution
STABLE Density: 0.76 12 papers
Methodsprogram_synthesis llm_code_generation llm_evolutionary_search llm_as_heuristic evolution_of_heuristics
Inst:City University of. 42% · Southern University of. 25% · Southeast University 17% · Huawei Noah’s Ark. 8%
This research front focuses on advancing LLM-based evolutionary search for automated algorithm design, moving beyond initial frameworks like FunSearch and EoH. The unifying theme involves integrating sophisticated mechanisms to enhance population diversity, incorporate reinforcement learning (RL) for iterative LLM fine-tuning, and enable structural co-evolution of algorithm components. Key frameworks include MEoH for multi-objective search, EvoTune and CALM for RL-infused evolution, CAE and STRCMP for structural priors, and ReEvo for advanced reflective evolution. Significant contributions include MEoH's 'Dominance-Dissimilarity' mechanism, achieving up to 20x better gaps on Bin Packing and 16x faster TSP heuristics. EvoTune demonstrated up to 15% better optimality gaps on Bin Packing/Flow Shop with DPO and Forward KL regularization. CAE reduced TSP optimality gaps by 2-5% through bi-dimensional structural-functional co-evolution, while STRCMP fused GNNs with LLMs to significantly reduce convergence times on MILP/SAT. CALM achieved superior performance on Bin Packing and VRP by online LLM fine-tuning with relative improvement rewards, outperforming GPT-4o baselines. EoH's 'E2' prompt strategy enabled dual-track evolution of 'thoughts' and code, outperforming FunSearch with significantly fewer LLM queries. Empirically, Zhang et al. highlighted that simple (1+1)-EPS often matches complex methods, underscoring the need for robust baselines. This front is rapidly maturing, characterized by a shift from foundational LLM-evolutionary concepts to highly specialized and integrated approaches. The trajectory indicates a strong emphasis on improving sample efficiency, reducing computational costs, and enhancing the robustness and generalizability of discovered algorithms. Future work will likely converge on hybrid frameworks that combine the strengths of RL-based fine-tuning, structural co-evolution, and advanced diversity-maintaining mechanisms to tackle increasingly complex and real-world combinatorial optimization problems.
| |
Co-Evolutionary LLM Architectures for Enhanced Heuristic and Algorithm Design
STABLE Density: 0.49 11 papers
Methodsllm_code_generation program_synthesis evolution_of_heuristics llm_as_heuristic llm_evolutionary_search
Inst:City University of. 18% · Guangdong University of. 9% · Peking University 9% · Tsinghua University 9%
This research front explores advanced architectural innovations in LLM-guided algorithm design, moving beyond basic Evolution of Heuristics (EoH) and FunSearch paradigms. It focuses on sophisticated co-evolutionary strategies, multi-agent systems, and novel population representations to improve the discovery and performance of heuristics for complex combinatorial optimization problems. Key themes include evolving interdependent operators, dynamically adapting search strategies, and co-evolving problem instances or prompt templates alongside the algorithms themselves. Key contributions include E2OC, which uses MCTS to co-evolve interdependent operators, achieving up to +22% Hypervolume on FJSP/TSP. LLM4EO demonstrates online operator design for Flexible Job Shop Scheduling, yielding 3-4% RPD_BM improvement. ASRO introduces a game-theoretic framework for co-evolving solvers and adversarial instance generators, outperforming EoH by 0.5-30% on OBP, TSP, and CVRP. A-CEoH enhances prompts with algorithmic context, enabling smaller LLMs to generate superior A heuristics for UPMP and SPP. EvoLattice proposes a DAG-based population representation with alternative-level statistics, boosting performance on NAS-Bench-Zero by over 150%. Other notable work includes LLM-driven test function generation (EoTF), co-evolution of prompts and Fireworks Algorithm operators (achieving 100% on Aircraft Landing vs. 56% for ReEvo), the dual-expert LLM4DRD for dynamic scheduling, TIDE's nested evolution for decoupling structure and parameter tuning (reducing TSP gap by 7.35%), RoCo's multi-agent system with long-term reflection, and EoH-S, which evolves complementary heuristic sets* to reduce optimality gaps by 40-60% compared to single-heuristic approaches. This front is rapidly emerging and maturing, characterized by a shift towards more complex, integrated LLM-driven systems. The trajectory indicates a strong focus on improving the efficiency, robustness, and generalization capabilities of generated algorithms. Future work will likely integrate these diverse architectural advancements, such as combining nested evolutionary loops with graph-based population representations, and expanding to more challenging multi-objective, constrained, and real-world dynamic optimization problems.
| |
Advanced LLM-Driven Algorithm Evolution via Behavioral and Structural Guidance
STABLE Density: 0.47 6 papers
Methodsllm_code_generation llm_evolutionary_search llamea evolutionary_algorithm evolution_strategy
Inst:Leiden University 17% · University of Stirling 17% · DeepMind 17% · TU Berlin 17%
This front explores advanced techniques for LLM-driven algorithm discovery, moving beyond basic prompt engineering to incorporate sophisticated feedback mechanisms and architectural innovations. Key themes include leveraging semantics-aware selection (LLM-Meta-SR), analyzing behavioral spaces (LLaMEA), enabling decentralized code evolution (EvoGit), decoupling discovery from expensive evaluations using landscape-aware proxies (LLaMEA), integrating structural feedback from Explainable AI (LLaMEA-SAGE), and developing self-referential learning architectures (Evolution Transformer). These approaches aim to make the LLM-driven evolution process more efficient, robust, and interpretable across domains like symbolic regression and expensive continuous optimization. Specific contributions include Zhang et al.'s LLM-Meta-SR, which achieved +2.3% R2 on SRBench for symbolic regression by using semantics-aware crossover. Huang et al.'s EvoGit introduced a novel Git-based multi-agent framework for decentralized code evolution. Yin et al. demonstrated that LLaMEA, guided by GP-evolved symbolic proxies, can discover algorithms for photonics problems that outperform baselines like LSHADE with 50x fewer real evaluations. Lange et al.'s Evolution Transformer, employing Self-Referential Algorithm Distillation (SR-EAD), learned to perform evolutionary strategy updates and generalized to unseen Brax control tasks. Furthermore, two LLaMEA papers advanced the understanding and guidance of LLM evolution: one by analyzing behavioral spaces on BBOB (5D) to show the importance of 'simplify' mutations, and another (LLaMEA-SAGE) by using SHAP analysis of AST features to guide mutations, leading to faster convergence on MA-BBOB. This front is rapidly maturing, transitioning from demonstrating the feasibility of LLM-driven algorithm design to developing principled methods for its efficiency, robustness, and interpretability. The emphasis is shifting towards understanding why certain LLM-generated algorithms perform well and how to systematically guide their evolution. The next wave of research will likely focus on integrating multiple forms of feedback (semantic, behavioral, structural, landscape) within unified frameworks, scaling these methods to tackle higher-dimensional and more complex real-world problems, and developing more robust, open-ended self-improvement loops that can autonomously discover and refine algorithms over extended periods.
|
Cross-Front Bridge Papers
5 papers connecting multiple research fronts
| |
TRUE SYNTHESIS Front 7 → Front 1, Front 2
2026-01-22 · 2601.15738
LLM4DRD employs a dual-agent framework (Generator & Evaluator) to evolve priority dispatching rules for dynamic flexible assembly flow shops. The core contribution is the **Hybrid Evaluation** mechani...
| |
TRUE SYNTHESIS Front 7 → Front 1, Front 2
2026-02-01 · 2601.17899
E2OC introduces a hierarchical search framework where MCTS optimizes 'design thoughts' (textual strategies) rather than raw code, subsequently using these strategies to guide a coordinate-descent-styl...
| |
TRUE SYNTHESIS Front 5 → Front 1
2025-06-01 · 2506.02049
Huang et al. introduce EvoGit, a framework where LLM agents asynchronously evolve code by treating Git commits as the population and using 3-way merges (based on Lowest Common Ancestor) as crossover. ...
| |
TRUE SYNTHESIS Front 5 → Front 2, Front 1
2025-08-08 · 2505.18602
Zhang et al. develop a meta-evolutionary framework to evolve selection operators for symbolic regression, achieving state-of-the-art results on SRBench by outperforming expert-designed methods like ε-...
| |
TRUE SYNTHESIS Front 7 → Front 1, Front 6, Front 2, Front 5
2025-08-20 · 2508.03082
EoH-S reformulates Automated Heuristic Design (AHD) to evolve a complementary *set* of heuristics rather than a single robust one, proving the objective is submodular and solvable via a greedy strateg...
|
Framework Genealogy
Tracking research lineages and framework evolution
|
19 frameworks tracked · 19 root frameworks · 7 active (last 30 days)
Framework landscape (size = paper count, color = must-read ratio)
alphaevolve (16 papers, 16 must-read) • funsearch (15 papers, 10 must-read) • eoh (9 papers, 7 must-read) • reevo (4 papers, 2 must-read) • evolution_of_heuristics (4 papers, 4 must-read) • llamea (3 papers, 3 must-read) • proxywar (1 papers, 0 must-read) • cognitive_kernel_pro (1 papers, 1 must-read) • thetaevolve (1 papers, 1 must-read) • discrete_transformer (1 papers, 1 must-read)
■ Active + Must-read
■ Active
■ Inactive + Must-read
■ Inactive
|
|