English

Dynamic Stability of LLM-Generated Code

Programming Languages 2025-11-12 v1 Artificial Intelligence Software Engineering

Abstract

Current evaluations of LLMs for code generation emphasize functional correctness, overlooking the fact that functionally correct solutions can differ significantly in algorithmic complexity. For instance, an (O(n2))(O(n^2)) versus (O(nlogn))(O(n \log n)) sorting algorithm may yield similar output but incur vastly different performance costs in production. This discrepancy reveals a critical limitation in current evaluation methods: they fail to capture the behavioral and performance diversity among correct solutions. To address this, we introduce a principled framework for evaluating the dynamic stability of generated code. We propose two metrics derived from opcode distributions: Static Canonical Trace Divergence (SCTD), which captures algorithmic structure diversity across generated solutions, and Dynamic Canonical Trace Divergence (DCTD), which quantifies runtime behavioral variance. Their ratio, the Behavioral Expression Factor (BEF), serves as a diagnostic signal: it indicates critical runtime instability when BEF \ll 1 and functional redundancy when BEF \gg 1. Empirical results on BigOBench and CodeContests show that state-of-the-art LLMs exhibit significant algorithmic variance even among functionally correct outputs. Notably, increasing sampling temperature improves pass@1 rates but degrades stability, revealing an unrecognized trade-off: searching for correct solutions in diverse output spaces introduces a "penalty of instability" between correctness and behavioral consistency. Our findings call for stability-aware objectives in code generation and new benchmarks with asymptotic test cases for robust, real-world LLM evaluation.

Keywords

Cite

@article{arxiv.2511.07463,
  title  = {Dynamic Stability of LLM-Generated Code},
  author = {Prateek Rajput and Abdoul Aziz Bonkoungou and Yewei Song and Abdoul Kader Kabore and Iyiola E. Olatunji and Jacques Klein and Tegewende Bissyande},
  journal= {arXiv preprint arXiv:2511.07463},
  year   = {2025}
}

Comments

10 pages, 8 figures