LLMSR@XLLM25: An Empirical Study of LLM for Structural Reasoning
Xinye Li, Mingqi Wan, Dianbo Sui
TL;DR
This work investigates verifiable, structural reasoning with large language models on the LLMSR@XLLM25 task, which requires extracting explicit problem conditions, decomposing reasoning into statement–evidence pairs, and verifying entailment at the step level. The authors implement a lightweight, non-finetuned solution using Meta-Llama-3-8B-Instruct, guided by a carefully crafted few-shot, multi-turn prompt and a minimal post-processing stage that enforces a formal JSON schema. Despite the modest resource footprint, the approach ranks 5th overall, demonstrating that disciplined prompt design and constrained reasoning can rival more complex pipelines. The study identifies verification as the main bottleneck and points to future work on stronger verifiers and lightweight entailment modules, along with process reward modeling, to enhance accuracy and transparency in LLM-driven reasoning.
Abstract
We present Team asdfo123's submission to the LLMSR@XLLM25 shared task, which evaluates large language models on producing fine-grained, controllable, and interpretable reasoning processes. Systems must extract all problem conditions, decompose a chain of thought into statement-evidence pairs, and verify the logical validity of each pair. Leveraging only the off-the-shelf Meta-Llama-3-8B-Instruct, we craft a concise few-shot, multi-turn prompt that first enumerates all conditions and then guides the model to label, cite, and adjudicate every reasoning step. A lightweight post-processor based on regular expressions normalises spans and enforces the official JSON schema. Without fine-tuning, external retrieval, or ensembling, our method ranks 5th overall, achieving macro F1 scores on par with substantially more complex and resource-consuming pipelines. We conclude by analysing the strengths and limitations of our approach and outlining directions for future research in structural reasoning with LLMs. Our code is available at https://github.com/asdfo123/LLMSR-asdfo123.
