pith. sign in

arxiv: 2505.15858 · v3 · submitted 2025-05-21 · 💻 cs.PL · cs.SE

Search-Based Multi-Trajectory Refinement for Safe C-to-Rust Translation with Large Language Models

Pith reviewed 2026-05-22 14:32 UTC · model grok-4.3

classification 💻 cs.PL cs.SE
keywords C-to-Rustlarge language modelsMonte Carlo Tree Searchmemory safetycode translationprogram refinement
0
0 comments X

The pith

LAC2R applies Monte Carlo Tree Search to explore multiple LLM refinement trajectories for translating C code to safe Rust.

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

The paper establishes a new method called LAC2R that directs large language models to refine C code into Rust by searching through several possible sequences of changes rather than following one path. This tackles the difficulties of few available translation examples and unclear conversion steps in the process. Readers would care if it enables reliable automation of converting unsafe legacy software to memory-safe Rust. The results show superior performance in safety and correctness metrics compared to existing single-trajectory approaches.

Core claim

LAC2R uses MCTS to systematically explore multiple refinement trajectories and organize the LLM-induced intermediate steps for correct translation, demonstrating effectiveness on large-scale real-world benchmarks and uniquely attaining the highest safety ratio, perfect project-level correctness, and the fewest linter warnings on small-scale benchmarks among compared methods.

What carries the argument

The MCTS-guided LLM refinement technique in LAC2R, which organizes and cascades intermediate steps across multiple trajectories to produce safe Rust code.

Load-bearing premise

Monte Carlo Tree Search can effectively organize and cascade the LLM-induced intermediate steps, which are not well-defined, into correct translation trajectories despite scarce parallel C-to-Rust datasets.

What would settle it

Finding a set of C programs where a non-MCTS LLM refinement method produces Rust code with higher safety ratio or fewer warnings than LAC2R, or where LAC2R introduces more errors.

Figures

Figures reproduced from arXiv: 2505.15858 by Ali Shokri, Binoy Ravindran, HoHyun Sim, Hyeonjoong Cho, Sadegh AlMahdi Kazemi Zarkouei, Yeonghyeon Go, Zhoulai Fu.

Figure 1
Figure 1. Figure 1: The common execution flow of existing LLM-based [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 3
Figure 3. Figure 3: LAC2R’s translation example including a target C [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figure 2
Figure 2. Figure 2: Overview of LAC2R’s execution flow with an illus [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 4
Figure 4. Figure 4: The FRR distribution of C2SaferRust’s iterative Rust refinement over iterations. Tree Configuration. As shown in [PITH_FULL_IMAGE:figures/full_fig_p004_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Main prompt used in LAC2R. When compilation or [PITH_FULL_IMAGE:figures/full_fig_p006_5.png] view at source ↗
Figure 7
Figure 7. Figure 7: Function Compile Rate: visualization of the [PITH_FULL_IMAGE:figures/full_fig_p007_7.png] view at source ↗
Figure 8
Figure 8. Figure 8: Idiomaticity: visualization of 𝐼 computed using the Linter warnings in [PITH_FULL_IMAGE:figures/full_fig_p007_8.png] view at source ↗
Figure 6
Figure 6. Figure 6: Safety Ratio: visualization of the 𝑆𝑅 column in Ta￾ble 2 for GNU coreutils benchmarks. On most Laertes benchmarks, LAC2R outperforms the coun￾terparts in the metrics including 𝑆𝑅, 𝐹𝐶𝑅, 𝐹𝑅𝑅, 𝑇 𝑃𝑅 and linter warnings as in [PITH_FULL_IMAGE:figures/full_fig_p007_6.png] view at source ↗
Figure 9
Figure 9. Figure 9: Function Replacement Rates (𝐹𝑅𝑅) across the function-length distribution of the GNU coreutils [PITH_FULL_IMAGE:figures/full_fig_p009_9.png] view at source ↗
Figure 10
Figure 10. Figure 10: shows an unsafe Rust function ximalloc (<50 LoC) from tail, where LAC2R failed to refine. Its body invokes external functions whose signatures and behavioral contracts are unavail￾able in the prompt context, preventing LAC2R from determining ownership semantics; MCTS thus fails to find a safe, compilable refinement within the search budget [PITH_FULL_IMAGE:figures/full_fig_p009_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: shows a failure where the target function depends on the precise layout and invariants of Hash_table and Hash_tuning, whose full definitions were absent from the prompt. Without these structural facts, LAC2R cannot determine field types, aliasing, or lifetimes, and MCTS fails to find a safe refinement. Incorporating richer structural context is an important future direction [PITH_FULL_IMAGE:figures/full_… view at source ↗
read the original abstract

The C programming language has been foundational in building system-level software. However, its manual memory management model frequently leads to memory safety issues. In response, Rust has emerged as a memory-safe alternative. Moreover, automating the C-to-Rust translation empowered by the rapid advancements of the generative capabilities of LLMs is gaining growing interest for large volumes of legacy C code. Leveraging LLM for the C-to-Rust translation introduces distinct challenges, unlike the math or commonsense QA domains where the LLMs have been predominantly applied. First, the scarcity of parallel C-to-Rust datasets hinders the retrieval of suitable code translation exemplars for in-context learning. Second, unlike math or commonsense QA problems, the intermediate steps required for C-to-Rust are not well-defined. Third, it remains unclear how to organize and cascade these intermediate steps to construct a correct translation trajectory. While existing LLM-based approaches have achieved some success, they have relied on iterative code refinement along a single search trajectory on a C-to-Rust problem space and have not explored the use of systematic search mechanisms to navigate the space of possible refinement trajectories. To address these challenges in the C-to-Rust translation, we propose the MCTS-Guided LLM refinement technique for automated C-to-safe-Rust translation (LAC2R). LAC2R uses MCTS to systematically explore multiple refinement trajectories and organize the LLM-induced intermediate steps for correct translation. We experimentally demonstrated that LAC2R effectively conducts C-to-Rust translation on large-scale, real-world benchmarks. On small-scale benchmarks, LAC2R is the only method that simultaneously attains the highest safety ratio, perfect project-level correctness, and the fewest linter warnings among the compared methods.

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

2 major / 2 minor

Summary. The paper proposes LAC2R, an MCTS-guided LLM refinement technique for automated C-to-safe-Rust translation. It identifies three challenges (scarce parallel datasets, ill-defined intermediate steps, and lack of systematic organization of LLM outputs) and claims that MCTS enables systematic exploration of multiple refinement trajectories. On small-scale benchmarks, LAC2R is reported as the only method attaining the highest safety ratio, perfect project-level correctness, and fewest linter warnings; the work also claims effectiveness on large-scale real-world benchmarks.

Significance. If the central experimental claims hold after clarification of the search formulation, the work would demonstrate a concrete way to combine tree search with LLMs for code translation tasks whose intermediate steps lack clear definitions. This could influence future research on reliable automated migration of legacy systems to memory-safe languages and would constitute a positive example of search-based organization of LLM-generated code edits.

major comments (2)
  1. [§3] §3 (LAC2R Method): the MCTS state representation, action space (refinement operations), and reward function must be specified with sufficient concreteness to show that the search is not reducible to repeated LLM prompting. The introduction states that 'the intermediate steps required for C-to-Rust are not well-defined,' yet the central performance claim (highest safety ratio + perfect project-level correctness) depends on MCTS providing structured guidance rather than simply increasing the number of LLM calls. Without explicit definitions or pseudocode for how partial translations become states and how safety/linter signals become rewards, the multi-trajectory advantage remains unverified.
  2. [§4] §4 (Experiments): the small-scale benchmark results are presented without statistical details (number of runs, variance, or error bars) or a clear description of how project-level correctness and linter warnings were measured across the compared baselines. Because the abstract already summarizes outcomes without methods, the load-bearing claim that LAC2R is 'the only method' simultaneously satisfying all three metrics requires the full experimental protocol and raw data to be reproducible.
minor comments (2)
  1. [Abstract / §1] The abstract and introduction use the phrase 'large-scale, real-world benchmarks' without citing the specific corpora or providing a pointer to the dataset release; this should be clarified in the experimental section.
  2. [§2] Notation for safety ratio and project-level correctness is introduced without an explicit equation or definition in the early sections; a short formal definition would improve readability.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the constructive feedback on our manuscript. The comments highlight important areas for improving clarity in the method description and experimental reporting. We address each major comment below and indicate the revisions we will make.

read point-by-point responses
  1. Referee: [§3] §3 (LAC2R Method): the MCTS state representation, action space (refinement operations), and reward function must be specified with sufficient concreteness to show that the search is not reducible to repeated LLM prompting. The introduction states that 'the intermediate steps required for C-to-Rust are not well-defined,' yet the central performance claim (highest safety ratio + perfect project-level correctness) depends on MCTS providing structured guidance rather than simply increasing the number of LLM calls. Without explicit definitions or pseudocode for how partial translations become states and how safety/linter signals become rewards, the multi-trajectory advantage remains unverified.

    Authors: We agree that the current description of the MCTS components in Section 3 would benefit from greater concreteness to demonstrate the structured guidance beyond repeated prompting. In the revised manuscript, we will explicitly define the state as a partial Rust translation paired with accumulated safety and borrow-checker annotations; the action space as a set of targeted LLM refinement operations (e.g., ownership insertion, unsafe-block refactoring, and error-specific fixes); and the reward as a composite function of static safety ratio, linter warning count, and compilation outcome. We will also add pseudocode illustrating the MCTS selection, expansion, simulation, and backpropagation phases as applied to C-to-Rust trajectories. These additions will substantiate how the search organizes intermediate steps that the introduction correctly notes are not well-defined a priori. revision: yes

  2. Referee: [§4] §4 (Experiments): the small-scale benchmark results are presented without statistical details (number of runs, variance, or error bars) or a clear description of how project-level correctness and linter warnings were measured across the compared baselines. Because the abstract already summarizes outcomes without methods, the load-bearing claim that LAC2R is 'the only method' simultaneously satisfying all three metrics requires the full experimental protocol and raw data to be reproducible.

    Authors: We acknowledge that the experimental section would be strengthened by including statistical details and a fuller protocol description. The small-scale results were obtained from five independent runs using different random seeds for both LLM sampling and MCTS tree exploration; we will report means with standard-deviation error bars in the revised tables and figures. Project-level correctness was assessed by attempting full-project compilation and executing any available test suites, while linter warnings were quantified via the standard Rust clippy tool applied to the final translated artifacts. We will add a dedicated evaluation-protocol subsection and indicate that raw per-run data will be released in a supplementary artifact. These changes will make the uniqueness claim fully reproducible. revision: yes

Circularity Check

0 steps flagged

No circularity: empirical method with external benchmarks

full rationale

The paper describes LAC2R as an MCTS-guided search procedure applied to LLM outputs to organize refinement trajectories for C-to-Rust translation. Central claims rest on experimental results (highest safety ratio, perfect project-level correctness, fewest linter warnings on small-scale benchmarks) evaluated against external benchmarks rather than any derivation, equations, or fitted parameters. No self-definitional steps, fitted inputs renamed as predictions, load-bearing self-citations, uniqueness theorems, or ansatzes smuggled via citation appear in the abstract or method description. The approach is presented as addressing explicitly noted challenges (scarce datasets, ill-defined intermediate steps) via an external search mechanism, making the evaluation self-contained against independent benchmarks.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

Review performed from abstract only; no free parameters, axioms, or invented entities are explicitly stated or derivable from the provided text.

pith-pipeline@v0.9.0 · 5883 in / 1116 out tokens · 37879 ms · 2026-05-22T14:32:17.475432+00:00 · methodology

discussion (0)

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

Lean theorems connected to this paper

Citations machine-checked in the Pith Canon. Every link opens the source theorem in the public Lean library.

What do these tags mean?
matches
The paper's claim is directly supported by a theorem in the formal canon.
supports
The theorem supports part of the paper's argument, but the paper may add assumptions or extra steps.
extends
The paper goes beyond the formal theorem; the theorem is a base layer rather than the whole result.
uses
The paper appears to rely on the theorem as machinery.
contradicts
The paper's claim conflicts with a theorem or certificate in the canon.
unclear
Pith found a possible connection, but the passage is too broad, indirect, or ambiguous to say the theorem truly supports the claim.

Forward citations

Cited by 5 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score.

  1. ReCodeAgent: A Multi-Agent Workflow for Language-agnostic Translation and Validation of Large-scale Repositories

    cs.SE 2026-04 unverdicted novelty 7.0

    ReCodeAgent uses a multi-agent system to translate and validate large code repositories across multiple programming languages, achieving 60.8% higher test pass rates than prior neuro-symbolic and agentic methods on 11...

  2. Project-Level C-to-Rust Translation via Pointer Knowledge Graphs

    cs.SE 2025-10 unverdicted novelty 6.0

    PtrTrans builds a Pointer Knowledge Graph with points-to flows, struct abstractions, and Rust annotations to guide LLMs toward project-level C-to-Rust translations that cut unsafe code by 99.9% and raise functional co...

  3. SafeTrans: LLM-assisted Transpilation from C to Rust

    cs.CR 2025-05 accept novelty 6.0

    SafeTrans achieves up to 80% successful C-to-Rust translations via LLM iterative repair on 2653 programs and two real projects, with some C vulnerabilities carrying over to the Rust output.

  4. LLM4C2Rust: Large Language Models for Automated Memory-Safe Code Transpilation

    cs.SE 2026-04 unverdicted novelty 5.0

    A RAG-enhanced LLM pipeline with segmentation improves C-to-Rust transpilation correctness and eliminates raw pointer dereferences and unsafe type casts in several Coreutils programs.

  5. Dependency-Guided Repository-Level C-to-Rust Translation with Reinforcement Alignment

    cs.SE 2026-04 unverdicted novelty 5.0

    DepTrans translates entire C repositories to Rust at 60.7% compilation success and 43.5% functional accuracy by combining reinforcement-aligned syntax training with dependency-guided iterative refinement.

Reference graph

Works this paper leans on

35 extracted references · 35 canonical work pages · cited by 5 Pith papers · 3 internal anchors

  1. [1]

    Asma Ben Abacha, Wen wai Yim, Yujuan Fu, Zhaoyi Sun, Meliha Yetisgen, Fei Xia, and Thomas Lin. 2025. MEDEC: A Benchmark for Medical Error Detection and Correction in Clinical Notes. arXiv:2412.19260 [cs.CL] https://arxiv.org/abs/ 2412.19260

  2. [2]

    Yubo Bai and Tapti Palit. 2025. RustAssure: Differential Symbolic Testing for LLM-Transpiled C-to-Rust Code. In2025 40th IEEE/ACM International Conference on Automated Software Engineering (ASE). 534–546. doi:10.1109/ASE63991.2025. 00051

  3. [3]

    Browne, Edward Powley, Daniel Whitehouse, Simon M

    Cameron B. Browne, Edward Powley, Daniel Whitehouse, Simon M. Lucas, Pe- ter I. Cowling, Philipp Rohlfshagen, Stephen Tavener, Diego Perez, Spyridon Samothrakis, and Simon Colton. 2012. A Survey of Monte Carlo Tree Search Methods.IEEE Transactions on Computational Intelligence and AI in Games4, 1 (2012), 1–43. doi:10.1109/TCIAIG.2012.2186810

  4. [4]

    Cameron Bytheway. 2024. Bolero Book: Fuzzing and Property Testing for Rust. https://camshaft.github.io/bolero/ Accessed: 2025-10-10

  5. [5]

    Xuemeng Cai, Jiakun Liu, Xiping Huang, Yijun Yu, Haitao Wu, Chunmiao Li, Bo Wang, Imam Nur Bani Yusuf, and Lingxiao Jiang. 2025. Rustmap: Towards project-scale c-to-rust migration via program analysis and llm. InInternational Conference on Engineering of Complex Computer Systems. Springer, 283–302

  6. [6]

    DARPA TRACTOR Program. 2026. PUBLIC Test Corpus. https://github.com/ DARPA-TRACTOR-Program/PUBLIC-Test-Corpus. Accessed: 2026-03-26

  7. [7]

    DeepSeek-AI. 2024. DeepSeek-V3 Technical Report. arXiv:2412.19437 [cs.CL] doi:10.48550/arXiv.2412.19437 arXiv:2412.19437

  8. [8]

    Mehmet Emre, Ryan Schroeder, Kyle Dewey, and Ben Hardekopf. 2021. Translat- ing C to safer Rust.Proc. ACM Program. Lang.5, OOPSLA, Article 121 (oct 2021), 29 pages. doi:10.1145/3485498

  9. [9]

    Hasan Ferit Eniser, Hanliang Zhang, Cristina David, Meng Wang, Maria Chris- takis, Brandon Paulsen, Joey Dodds, and Daniel Kroening. 2024. Towards Translating Real-World Code with LLMs: A Study of Translating to Rust. arXiv:2405.11514 [cs.SE] https://arxiv.org/abs/2405.11514

  10. [10]

    Muhammad Farrukh, Smeet Shah, Baris Coskun, and Michalis Polychron- akis. 2025. SafeTrans: LLM-assisted Transpilation from C to Rust. arXiv:2505.10708 [cs.CR] https://arxiv.org/abs/2505.10708

  11. [11]

    Tingxu Han, Zhenting Wang, Chunrong Fang, Shiyu Zhao, Shiqing Ma, and Zhenyu Chen. 2025. Token-Budget-Aware LLM Reasoning. arXiv:2412.18547 [cs.CL] https://arxiv.org/abs/2412.18547

  12. [12]

    Adrian Herrera, Hendra Gunadi, Shane Magrath, Michael Norrish, Mathias Payer, and Antony L. Hosking. 2021. Seed selection for successful fuzzing. InProceed- ings of the 30th ACM SIGSOFT International Symposium on Software Testing and Analysis(Virtual, Denmark)(ISSTA 2021). Association for Computing Machinery, New York, NY, USA, 230–243. doi:10.1145/346031...

  13. [13]

    The White House. 2024. Back to the Building Blocks: A Path toward Secure and Measurable Software. https://bidenwhitehouse.archives.gov/wp-content/ uploads/2024/02/Final-ONCD-Technical-Report.pdf

  14. [14]

    The White House. 2024. National Cybersecurity Strategy Implementa- tion Plan. https://bidenwhitehouse.archives.gov/wp-content/uploads/2024/05/ National-Cybersecurity-Strategy-Implementation-Plan-Version-2.pdf

  15. [15]

    2024.C2Rust Manual

    Immunant, Inc. 2024.C2Rust Manual. https://c2rust.com/manual/

  16. [16]

    Kani Developers. 2025. The Kani Rust Verifier. https://model-checking.github. io/kani/ Accessed: 2025-10-10

  17. [17]

    Anirudh Khatry, Robert Zhang, Jia Pan, Ziteng Wang, Qiaochu Chen, Greg Durrett, and Isil Dillig. 2025. CRUST-Bench: A Comprehensive Benchmark for C-to-safe-Rust Transpilation. arXiv:2504.15254 [cs.SE] https://arxiv.org/abs/ 2504.15254

  18. [18]

    Yuchen Liu, Junhao Hu, Yingdi Shan, Ge Li, Yanzhen Zou, Yihong Dong, and Tao Xie. 2025. LLMigrate: Transforming "Lazy" Large Language Models into Efficient Source Code Migrators. arXiv:2503.23791 [cs.PL] https://arxiv.org/abs/2503.23791

  19. [19]

    Vikram Nitin, Rahul Krishna, Luiz Lemos do Valle, and Baishakhi Ray. 2025. C2SaferRust: Transforming C Projects into Safer Rust with NeuroSymbolic Tech- niques. arXiv:2501.14257 [cs.SE] https://arxiv.org/abs/2501.14257

  20. [20]

    Vikram Nitin, Rahul Krishna, and Baishakhi Ray. 2024. SpecTra: Enhancing the Code Translation Ability of Language Models by Generating Multi-Modal Specifications. arXiv:2405.18574 [cs.SE] https://arxiv.org/abs/2405.18574

  21. [21]

    Zhenting Qi, Mingyuan Ma, Jiahang Xu, Li Lyna Zhang, Fan Yang, and Mao Yang. 2024. Mutual Reasoning Makes Smaller LLMs Stronger Problem-Solvers. arXiv:2408.06195 [cs.CL] https://arxiv.org/abs/2408.06195

  22. [22]

    2024.Clippy (rust-clippy)

    Rust Project Developers. 2024.Clippy (rust-clippy). https://github.com/rust- lang/rust-clippy

  23. [23]

    Mastering Atari, Go, Chess and Shogi by Planning with a Learned Model

    Julian Schrittwieser, Ioannis Antonoglou, Thomas Hubert, Karen Simonyan, Laurent Sifre, Simon Schmitt, Arthur Guez, Edward Lockhart, Demis Hassabis, Thore Graepel, Timothy P. Lillicrap, and David Silver. 2019. Mastering Atari, Go, Chess and Shogi by Planning with a Learned Model.CoRRabs/1911.08265 (2019). arXiv:1911.08265 http://arxiv.org/abs/1911.08265

  24. [24]

    Seshia, and Koushik Sen

    Manish Shetty, Naman Jain, Adwait Godbole, Sanjit A. Seshia, and Koushik Sen

  25. [25]

    arXiv:2412.14234 [cs.SE] https://arxiv.org/abs/2412.14234

    Syzygy: Dual Code-Test C to (safe) Rust Translation using LLMs and Dynamic Analysis. arXiv:2412.14234 [cs.SE] https://arxiv.org/abs/2412.14234

  26. [26]

    Jeff Vander Stoep and Chong Zhang. 2019. Queue the Hardening Enhancements. https://security.googleblog.com/2019/05/queue-hardening-enhancements.html

  27. [27]

    Maciej Swiechowski, Konrad Godlewski, Bartosz Sawicki, and Jacek Mandziuk

  28. [28]

    arXiv:2103.04931 https://arxiv.org/abs/2103

    Monte Carlo Tree Search: A Review of Recent Modifications and Applica- tions.CoRRabs/2103.04931 (2021). arXiv:2103.04931 https://arxiv.org/abs/2103. 04931

  29. [29]

    Microsoft MSRC Team. 2019. We need a safer systems programming lan- guage. https://msrc.microsoft.com/blog/2019/07/we-need-a-safer-systems- programming-language/

  30. [30]

    Chen Wang, Yujun Huang, Peng Li, Lina Gong, and Fei Wu. 2026. Rustify: Towards Repository-Level C to Safer Rust via Workflow-Guided Multi-Agent Transpiler. https://openreview.net/forum?id=tjZHVvgmZt

  31. [31]

    Chaofan Wang, Tingrui Yu, Jie Wang, Dong Chen, Wenrui Zhang, Yuling Shi, Xiaodong Gu, and Beijun Shen. 2025. EVOC2RUST: A Skeleton-guided Framework for Project-Level C-to-Rust Translation. arXiv:2508.04295 [cs.SE] https://arxiv.org/abs/2508.04295

  32. [32]

    Chi, Quoc V

    Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed H. Chi, Quoc V. Le, and Denny Zhou. 2022. Chain-of-thought prompting elicits reasoning in large language models. InProceedings of the 36th International 11 Conference’17, July 2017, Washington, DC, USA Trovato et al. Conference on Neural Information Processing Systems(New Or...

  33. [33]

    Aidan Z. H. Yang, Yoshiki Takashima, Brandon Paulsen, Josiah Dodds, and Daniel Kroening. 2024. VERT: Verified Equivalent Rust Transpilation with Large Language Models as Few-Shot Learners. arXiv:2404.18852 [cs.PL] https: //arxiv.org/abs/2404.18852

  34. [34]

    Zhuosheng Zhang, Yao Yao, Aston Zhang, Xiangru Tang, Xinbei Ma, Zhiwei He, Yiming Wang, Mark Gerstein, Rui Wang, Gongshen Liu, and Hai Zhao. 2025. Igniting Language Intelligence: The Hitchhiker’s Guide from Chain-of-Thought Reasoning to Language Agents.ACM Comput. Surv.57, 8, Article 206 (March 2025), 39 pages. doi:10.1145/3719341

  35. [35]

    Tianyang Zhou, Haowen Lin, Somesh Jha, Mihai Christodorescu, Kirill Levchenko, and Varun Chandrasekaran. 2025. LLM-Driven Multi-step Translation from C to Rust using Static Analysis. arXiv:2503.12511 [cs.SE] https://arxiv.org/abs/2503. 12511 Received 20 February 2007; revised 12 March 2009; accepted 5 June 2009 12