公开论文雷达

公开 arXiv 研究简报 · 2026-08-22T00:53:54.329377+00:00

先看结论和关键数字,再决定要不要读原文。候选只在首次出现时展示;旧候选若后来通过深读门槛,仍会进入重点。

重点深读(1 / 1 篇)

形式化与程序验证(0 篇)

本轮没有通过深读证据门的重点论文。

软件工程与仓库智能(1 篇)

软件工程与仓库智能 7/30

Hype Meets Reality: Large Language Models as Mutators in Search-based Automated Program Repair of Simulink-Stateflow Models

用LLM直接替换变异算子,CPS自动修复效果反而大幅变差:如果你正考虑把LLM塞进搜索式程序修复流程,这个实验先给你泼了冷水:在19个真实Stateflow故障模型上,LLM动态变异只产出4个有效补丁,而原来的手工变异算子能产出16个。问题不在LLM本身,而在替换式集成的做法。

两句看懂

FlowRepair靠手工变异算子修复Stateflow故障模型,研究者把部分算子换成LLM动态生成变异,想看能否扩大修复覆盖。结果在19个真实故障模型、相同壁钟预算下,LLM版本有效补丁仅4个(原始16个),失败原因是精确符号编辑做不到、没有行为反馈、候选噪声太大。

核心判断

受控实验表明,朴素地把LLM当变异算子会显著降低CPS修复效果(有效补丁4个对16个)。根因不是LLM能力到顶,而是这种集成方式缺少精确符号编辑能力,也没有给LLM行为反馈输入。

关键要点

1. 旧假设认为LLM动态变异能突破固定算子的数量上限,但替换后有效补丁从16个跌到4个,说明朴素替换和仿真搜索框架根本不匹配。 2. 方法是在FlowRepair中替换部分变异算子,在19个真实Stateflow模型(4个CPS领域)上,用相同壁钟预算、同一适应度函数对比多个LLM变体与原始方法。 3. 决定性结果:LLM合理补丁4-6个对18个、有效补丁4个对16个;应做的是保留手工算子做精确编辑,LLM只提供方向引导。

证据与结果

基准是19个真实世界Stateflow故障模型,覆盖4个CPS领域。对照双方共享相同壁钟预算,指标是合理补丁数和有效补丁数。结果:LLM合理补丁4-6个(原始18个),有效补丁4个(原始16个)。失败模式分析锁定三个根因:LLM无法精确执行符号编辑、候选生成缺乏行为反馈、候选集噪声过大阻碍搜索推进。

打开论文原文
它要解决什么
把LLM当作搜索式APR的变异算子,能不能提升Simulink-Stateflow这类CPS模型的修复效果?
研究路径
FlowRepair按适应度导向的概率选择故障组件,施加变异算子后运行仿真,用测试结果更新合理补丁归档并触发局部搜索。LLM版本把变异这一步改成由LLM动态生成候选,候选同样进仿真评估循环。但LLM生成时拿不到任何行为反馈,候选质量低,还给搜索空间注入大量噪声,淹没了有效搜索路径。
这对工程意味着什么
第一步行动:搭混合架构,手工变异算子负责精确编辑,LLM只做候选方向引导并接入适应度反馈。要避开的捷径:不要图省事直接拿LLM替换变异算子——没有行为反馈时它生成的低质候选会淹没搜索信号,修复成功率会从16个有效补丁掉到4个。
证据定位
数字很直接:LLM版本合理补丁只有4-6个,原始方法有18个;LLM版本有效补丁4个,原始方法16个。在相同时间预算下,LLM版本大幅落后于基线。(筛选维度:可复核评测、软件工程方法)
适用边界
基准规模只有19个模型、4个CPS领域;LLM提示设计细节披露不充分;结论只反映这种替换式集成方式的局限,不代表LLM辅助APR这个方向的通用上界。
方法与英文摘要

研究者在FlowRepair框架里,把一部分预定义变异算子换成LLM动态生成的变异候选。候选仍进入原有的仿真评估循环,由同一个适应度函数打分。测试基准是19个真实Stateflow故障模型,覆盖4个CPS领域。多个LLM变体与原始FlowRepair在相同壁钟预算下逐一对比,保证变量可控。

Search-based Automated Program Repair (APR) techniques rely on carefully designed mutation operators to explore the space of candidate fixes. Recent advances in Large Language Models (LLMs) suggest that generative models could replace such operators by dynamically proposing repairs. In this paper, we investigate this hypothesis in the context of Cyber-Physical Systems (CPSs) modeled in Simulink/Stateflow. We extend the state-of-the-art FlowRepair approach by replacing a subset of its mutation operators with LLM-generated mutations, enabling more flexible and expressive patch generation. We evaluate the approach on a benchmark of 19 real-world faulty Stateflow models across four CPS domains, using the same experimental setup as FlowRepair for controlled comparison under the same wall-clock budget. Contrary to expectations, in this controlled evaluation, the LLM-based mutation substantially degrades repair performance under the FlowRepair experimental setup. Across the tested LLM variants, the LLM-based repair produced plausible patches for 4-6 models and valid patches for 4 models, compared to 18 and 16, respectively, with the original approach. Our analysis reveals that, in this integration, LLMs struggle with precise symbolic edits, lack behavioral feedback, and generate a noisy search space that hinders effective exploration. Rather than showing a general limitation of LLMs for APR, these findings highlight fundamental limitations of naively integrating LLMs into search-based APR and motivate hybrid approaches that combine structured mutation with generative guidance.

代码质量与优化(0 篇)

本轮没有通过深读证据门的重点论文。

UI 与 GUI Agent(0 篇)

本轮没有通过深读证据门的重点论文。

个人知识与本体(0 篇)

本轮没有通过深读证据门的重点论文。

人机协同与对齐(0 篇)

本轮没有通过深读证据门的重点论文。

本轮分类概览

同一论文只归入一个最先命中的赛道,避免重复计数;“新增候选”只统计首次展示的论文。

赛道新增候选重点
形式化与程序验证00
软件工程与仓库智能31
代码质量与优化10
UI 与 GUI Agent00
个人知识与本体20
人机协同与对齐00

近一个季度监测日历

北京时间。绿色表示有可阅读的新候选,灰蓝表示已监测但无新增,橙色表示部分降级;“无记录”不等于失败。

2026 年 6 月

1无记录2无记录3无记录4无记录5无记录6无记录7无记录8无记录9无记录10无记录11无记录12无记录13无记录14无记录15无记录16无记录17无记录18无记录19无记录20无记录21无记录22无记录23无记录24无记录25无记录26无记录27无记录28无记录29无记录30无记录

近 14 次监测窗口

仅展示公开源的聚合运行状态,不含提示词、全文或个人数据。

本轮新增候选(6 篇)

按赛道、评分和日期展开;中文标签用于导航,英文摘要用于核验。已展示过的旧候选不会每日重复。

形式化与程序验证(0 篇)

本轮该赛道没有候选论文。

软件工程与仓库智能(3 篇)

软件工程与仓库智能 · 6/30 · 2026-08-20编码智能体如何发现与编写技术文档实证分析557个编码会话与3.3万PR,发现文档交互以指令文件与工作笔记为主,传统技术文档占比有限From Agent Behaviour to Agent-Friendly Documentation: An Empirical Study of How Coding Agents Discover, Read, and Write Technical Documentation

Technical documentation is written for human developers, but an increasing share of software changes is now authored by autonomous coding agents. Which documents they consult, when, and what follows remain unknown. We conduct a behaviour-grounded study of agent-documentation interaction across two public datasets: 557 agentic coding sessions from SWE-chat, yielding 94,813 development events including 3,033 documentation interactions; and 33,097 agentic pull requests from AIDev, with 690,260 classified file-level change records. Four findings challenge current documentation practice. First, agents' documentation work is dominated by agent-facing artefacts: instruction files and working notes account for 60.5% of all documentation interactions, versus 10.6% for classical technical documentation and 1.3% for API references. Second, the link between consultation and code editing is unresolved: the adjacent transition probability is 0.002 and the unadjusted three-event lift 1.05, whereas a stage-adjusted model places it above unity (OR 1.33 [1.09, 1.62]); documentation creation is elevated unadjusted (lift 1.67) but its adjusted interval includes unity. Third, no explicit documentation-based validation sequence was observed, and consultation is associated with less immediate testing (lift 0.23, cluster CI 0.08-0.45; adjusted OR 0.39 [0.25, 0.60]). Fourth, consultation is self-initiated (70.2%) far more often than failure-driven (7.5%), and documentation trails code: among multi-commit pull requests changing both, code is touched first 4.7x more often. From these traces we derive a descriptive model of agent-documentation interaction as a two-lobed cycle rather than a linear journey, and show that two widely assumed properties of "agent-friendly" documentation - actionability and verifiability - lack consistent behavioural support. We release our pipeline, coding scheme, and event-level data.

阅读 arXiv 原文
软件工程与仓库智能 · 7/30 · 2026-08-20VDM-SL执行轨迹可观察性记录赋值、调用与返回的执行轨迹,在ViennaTalk中实现事件数据模型并用于可视化Trace-Based Execution-Level Observability of VDM-SL Specifications

VDM has been pursuing rigorous verification through mathematical theorem proving and software testing via simulated execution. Animation through an interpreter enables validation of the specification to ensure it meets the required functionality. Step-by-step execution in a debugger also allows the user to follow the internal behavior of operations. In this paper, we propose the recording and utilization of execution traces of assignments, operation calls, and return statements to make the internal behavior of operations persistent and analyzable as state-based models. The data model of events in execution traces, its implementation in ViennaTalk, and its application to visualization will be introduced.

阅读 arXiv 原文
软件工程与仓库智能 · 7/30 · 2026-08-19LLM作变异算子的自动程序修复实测19个真实Stateflow缺陷模型上对比FlowRepair,受控评估显示LLM生成变异与预期相反Hype Meets Reality: Large Language Models as Mutators in Search-based Automated Program Repair of Simulink-Stateflow Models

Search-based Automated Program Repair (APR) techniques rely on carefully designed mutation operators to explore the space of candidate fixes. Recent advances in Large Language Models (LLMs) suggest that generative models could replace such operators by dynamically proposing repairs. In this paper, we investigate this hypothesis in the context of Cyber-Physical Systems (CPSs) modeled in Simulink/Stateflow. We extend the state-of-the-art FlowRepair approach by replacing a subset of its mutation operators with LLM-generated mutations, enabling more flexible and expressive patch generation. We evaluate the approach on a benchmark of 19 real-world faulty Stateflow models across four CPS domains, using the same experimental setup as FlowRepair for controlled comparison under the same wall-clock budget. Contrary to expectations, in this controlled evaluation, the LLM-based mutation substantially degrades repair performance under the FlowRepair experimental setup. Across the tested LLM variants, the LLM-based repair produced plausible patches for 4-6 models and valid patches for 4 models, compared to 18 and 16, respectively, with the original approach. Our analysis reveals that, in this integration, LLMs struggle with precise symbolic edits, lack behavioral feedback, and generate a noisy search space that hinders effective exploration. Rather than showing a general limitation of LLMs for APR, these findings highlight fundamental limitations of naively integrating LLMs into search-based APR and motivate hybrid approaches that combine structured mutation with generative guidance.

阅读 arXiv 原文

代码质量与优化(1 篇)

代码质量与优化 · 4/30 · 2026-08-19用智能体AI加速调度仿真遗传超启发式针对科学调度仿真的性能瓶颈,使用智能体AI对项目调度负载做系统化重构与加速Accelerated Genetic Programming Hyper-Heuristics for Simulation-Based Scheduling via Agentic AI

Python is widely used in scientific research because it enables rapid development and provides rich ecosystems for data analysis, artificial intelligence (AI), and machine learning. However, customized research code can become prohibitively slow as experiments scale. This challenge is particularly acute in discrete-event project-scheduling simulations, where sequential state updates, nested loops, conditional evaluations, and object-oriented structures limit the benefits of compiled numerical and GPU-accelerated libraries. Addressing these bottlenecks typically requires iterative profiling, refactoring, testing, and validation, yet researchers may lack the time or specialized software-engineering expertise for low-level optimization. This paper presents a systematic refactoring approach using Claude agentic AI on real-world project-scheduling workloads in a high-performance computing (HPC) environment. Guided by representative benchmarks and correctness checks, the agent identifies bottlenecks, implements targeted optimizations, and evaluates their effects, while the researcher retains final control. Testing runtime reduced from 1,298 seconds to under 200 seconds without changing outputs, saving four million core-hours (NZ\$320,000) annually.

阅读 arXiv 原文

UI 与 GUI Agent(0 篇)

本轮该赛道没有候选论文。

个人知识与本体(2 篇)

个人知识与本体 · 3/30 · 2026-08-20多智能体记忆仲裁:识别关联偏差指出多智能体记忆存在相关性偏差,提出CAMA框架解耦记忆并恢复独立证据,结合神经推断与溯源先验Beyond Memory Majority: Latent-Source Reasoning for Multi-Agent Memory Arbitration

Long-term multi-agent systems continuously accumulate the memories produced by different agents. Existing memory methods typically treat retrieved memories as independent evidence and combine them through voting or weighting. However, this independence assumption often fails in multi-agent settings: memories written by different agents may inherit the same upstream source or shared bias, causing correlated evidence to be repeatedly counted and creating a false majority. We term this failure mode \textit{Memory Correlation Bias}. To address the issue, we propose the \textbf{C}orrelation-\textbf{A}ware \textbf{M}emory \textbf{A}rbitration (CAMA) framework that jointly decouples retrieved memories and recovers missing independent evidence. We model the retrieved memories as query-conditioned evidence groups and combine neural dependency inference with provenance-based symbolic priors to estimate the effective number of independent evidence sources, thereby preventing correlated memories from forming a false majority. Since critical independent evidence may be absent from the initial retrieval set, \textsc{CAMA} further learns a sequential recovery policy that actively retrieves alternative evidence or traces upstream sources before making the final decision, aiming to recover sufficient independent evidence for reliable arbitration while minimizing retrieval cost. Experiments on multiple benchmarks demonstrate the superiority of our method over the state-of-the-art baseline methods, suppressing false majorities induced by correlated memories.

阅读 arXiv 原文
个人知识与本体 · 3/30 · 2026-08-20智能体记忆能否跟踪演化状态提出状态跟踪能力与StateMemBench基准,234个场景,现有记忆与长上下文系统仍有挑战Can Agent Memory Systems Track Evolving State?

As LLM-based agents are deployed for longer and higher-stakes tasks, their memory systems continue to have crucial gaps. While existing memory benchmarks focus largely on recall-shaped tasks, we argue an effective memory system must track the evolving state of the world; as facts, constraints, and decisions are revised over a long interaction, answers must reflect the current state and not a superseded one. We define this capability as state tracking and instantiate it in StateMemBench, a benchmark of 234 multi-session scenarios spanning two conversation-length regimes. Its closed-pool grading scores whether an answer reflects the current state, the superseded state, or fails otherwise, separating state-tracking failures from other errors by construction. Our analysis shows that this task is challenging for existing memory systems, retrieval-augmented baselines, and long-context baselines. We then present StateMem, a state-first memory method that explicitly tracks supersession and relational dependencies, and show it improves current-state accuracy over the strongest same-backbone baseline by 1.8x (0.205 -> 0.363) on DeepSeek-V4-Flash and over the strongest memory system by 1.6x (0.149 -> 0.233) on Qwen-3.5-9B, while remaining competitive with the long-context baselines. Finally, we show the same state approach can be applied as a lightweight single-call wrapper over existing memory systems, lifting current-state accuracy by +32 to +67 points on StateMemBench across six memory and retrieval backends. A length- and cost-matched control attributes +15 to +32 of those points to state structure rather than added context.

阅读 arXiv 原文

人机协同与对齐(0 篇)

本轮该赛道没有候选论文。