From Hallucination to Structure Snowballing: The Alignment Tax of Constrained Decoding in LLM Reflection

arXiv cs.CL / 4/8/2026

💬 OpinionSignals & Early TrendsIdeas & Deep AnalysisModels & Research

Key Points

  • The paper studies why LLM “self-correction” during open-ended reflection often fails, attributing it to “hallucination snowballing,” where early mistakes get recursively justified.
  • It tests whether enforcing structured reflection via Outlines-based constrained decoding can reduce error propagation without extra training, using an 8B-parameter Qwen3-8B model.
  • Results show that constrained decoding does not improve self-correction; instead it introduces a new failure mode called “structure snowballing,” where strict formatting requirements trap the model.
  • The authors argue this creates an “alignment tax”: enforcing higher structural granularity increases cognitive load, enabling superficial syntactic alignment while degrading the ability to catch deeper semantic errors.
  • The study provides code and raw logs in a linked GitHub repository to support further investigation and replication.

Abstract

Intrinsic self-correction in Large Language Models (LLMs) frequently fails in open-ended reasoning tasks due to ``hallucination snowballing,'' a phenomenon in which models recursively justify early errors during free-text reflection. While structured feedback can mitigate this issue, existing approaches often rely on externally trained critics or symbolic tools, reducing agent autonomy. This study investigates whether enforcing structured reflection purely through Outlines-based constrained decoding can disrupt error propagation without additional training. Evaluating an 8-billion-parameter model (Qwen3-8B), we show that simply imposing structural constraints does not improve self-correction performance. Instead, it triggers a new failure mode termed ``structure snowballing.'' We find that the cognitive load required to satisfy strict formatting rules pushes the model into formatting traps. This observation helps explain why the agent achieves near-perfect superficial syntactic alignment yet fails to detect or resolve deeper semantic errors. These findings expose an ``alignment tax'' inherent to constrained decoding, highlighting a tension between structural granularity and internal model capacity in autonomous workflows. Code and raw logs are available in the GitHub repository: https://github.com/hongxuzhou/agentic_llm_structured_self_critique.