Paper Overview
- Field: Machine Learning
- Authors: Han Li, Jinyu Tian, Rili Feng
- Published: 2025-05-15
- arXiv: 2505.10883
- Planner — strategy selection
- Solver — program synthesis
- Oracle — certified supervision
- Hacker — targeted adversarial attacks
- Establishes a new state of the art among code generation agents
- Outperforms multiple existing agentic pipelines
- Nearly doubles the accuracy of single-pass baselines
Introduction
Large language models (LLMs) still struggle with the rigorous reasoning demands of hard competitive programming. Recent multi-agent frameworks attempt to bridge this reliability gap, but they remain fundamentally stateless: they rely on static retrieval and discard the valuable problem-solving and debugging experience gained from previous tasks.
The Solvita Framework
Solvita is an agentic evolution framework that enables continuous learning without requiring weight updates to the underlying LLM. It reorganizes problem solving into a closed-loop system of:
1. Strategy selection 2. Program synthesis 3. Certified supervision 4. Targeted hacking
These stages are executed by four specialized agents:
Crucially, each agent is paired with a trainable, graph-structured knowledge network. As the system operates, outcome signals—such as pass/fail verdicts, test certification quality, and adversarial vulnerabilities discovered by the Hacker—are converted back into reinforcement learning updates to these network weights. This allows agents to dynamically route future queries based on past successes and failures, effectively accumulating transferable reasoning experience.
Results
Evaluated on CodeContests, APPS, AetherCode, and live Codeforces rounds, Solvita: