QUBO-Optimized Evidence Selection for Retrieval-Augmented Question Answering with Unconventional Solvers

arXiv cs.CL Papers

Summary

This paper proposes a QUBO-based method for selecting evidence passages in retrieval-augmented question answering, achieving competitive performance with LLM-based selectors while enabling the use of unconventional solvers like quantum annealers.

arXiv:2607.12334v1 Announce Type: new Abstract: Retrieval-augmented question answering depends on selecting evidence passages that jointly support answer generation. However, many RAG pipelines rely on top-\(k\) ranking, where passages are selected mainly by individual relevance scores, even though multi-hop questions often require complementary evidence satisfying multiple information requirements. Recent LLM-based selectors address this by treating retrieval as set selection, but using an LLM for this intermediate stage can be costly and difficult to scale. In this work, we formulate evidence selection as a Quadratic Unconstrained Binary Optimization (QUBO) problem. Given a question, candidate passages, and decomposed information requirements, our method constructs an energy function that balances relevance, requirement coverage, support strength, redundancy, complementarity, and compactness. Low-energy solutions correspond to compact evidence subsets that cover the needed requirements while avoiding unnecessary or repetitive context. The selected passages are then passed to a downstream language model for answer generation, separating combinatorial evidence selection from semantic answer generation. We evaluate the proposed QUBO selector on HotpotQA and compare it with LLM-based set selectors and non-LLM baselines including BM25, relevance top-\(k\), maximal marginal relevance, hybrid lexical--semantic ranking, greedy coverage, and random selection. The QUBO selector achieves competitive exact-match and token-F1 performance relative to LLM-based selectors while providing a solver-compatible formulation for structured evidence selection. These results suggest that multi-hop evidence selection can be cast as discrete optimization, opening a path toward RAG pipelines where LLMs are reserved for semantic processing and answer generation, while context selection is handled by Ising/QUBO-compatible solvers.
Original Article
View Cached Full Text

Cached at: 07/15/26, 04:22 AM

# QUBO-Optimized Evidence Selection for Retrieval-Augmented Question Answering with Unconventional Solvers
Source: [https://arxiv.org/html/2607.12334](https://arxiv.org/html/2607.12334)
Rahul Singh University of California Santa Barbara Santa Barbara, California rps@ucsb\.edu &Madhav Vadlamani Georgia Institute of Technology Atlanta, Gerogia mvadlamani6@gatech\.edu

###### Abstract

Retrieval\-augmented question answering depends on selecting an appropriate set of evidence passages before answer generation\. However, many retrieval pipelines rely on top\-kkranking, where passages are selected primarily by individual relevance scores, even though multi\-hop questions often require passages that jointly satisfy multiple information requirements\. Recent LLM\-based methods address this limitation by treating retrieval as a set\-selection problem, but using an LLM for this intermediate selection stage can be expensive and difficult to scale\. In this work, we formulate evidence selection as a Quadratic Unconstrained Binary Optimization \(QUBO\) problem\. Given a question, candidate passages, and decomposed information requirements, our method constructs an energy function that balances passage relevance, requirement coverage, support strength, redundancy, complementarity, and compactness\. Low\-energy configurations correspond to evidence subsets that cover the necessary requirements while avoiding unnecessary or repetitive context\. The selected passages are then passed to a downstream language model for answer generation, separating the combinatorial evidence\-selection step from the semantic answer\-generation step\. We evaluate the proposed QUBO selector on HotpotQA, a multi\-hop question\-answering benchmark, and compare it with LLM\-based set selection as well as non\-LLM baselines including BM25, relevance top\-kk, maximal marginal relevance, hybrid lexical\-semantic ranking, greedy coverage, and random selection\. The QUBO selector achieves competitive exact\-match and token\-F1 performance relative to LLM\-based set selectors, while providing a solver\-compatible formulation for structured evidence selection\. These results suggest that multi\-hop evidence selection can be cast as a discrete optimization problem, opening a path toward retrieval pipelines in which LLMs are reserved primarily for answer generation while the selection stage is executed by unconventional Ising machines, quantum annealers, quantum\-inspired optimizers, or gate\-model quantum algorithms for QUBO solving\.

QUBO\-Optimized Evidence Selection for Retrieval\-Augmented Question Answering with Unconventional Solvers

Rahul SinghUniversity of California Santa BarbaraSanta Barbara, Californiarps@ucsb\.eduMadhav Vadlamani††thanks:Equal ContributionGeorgia Institute of TechnologyAtlanta, Gerogiamvadlamani6@gatech\.edu

## 1Introduction

Large language models \(LLMs\) have demonstrated strong capabilities in natural language understanding and generation, but their responses remain constrained by both the information encoded in their parameters and the quality of the context provided at inference time\. Retrieval\-Augmented Generation \(RAG\) addresses this limitation by coupling a parametric language model with an external non\-parametric knowledge source, allowing generation to be conditioned on retrieved evidence rather than relying solely on memorized knowledgeLewiset al\.\([2020](https://arxiv.org/html/2607.12334#bib.bib1)\)\. This paradigm is especially useful for knowledge\-intensive tasks requiring factual grounding, provenance, domain adaptation, and access to dynamically updated informationGaoet al\.\([2024](https://arxiv.org/html/2607.12334#bib.bib2)\); Barnettet al\.\([2024](https://arxiv.org/html/2607.12334#bib.bib3)\)\. However, RAG performance is highly sensitive to the selected context: retrieval errors, missing evidence, redundant passages, and irrelevant distractors can degrade generation, especially in multi\-hop question answering where the answer may require combining complementary evidence across passagesYanget al\.\([2018](https://arxiv.org/html/2607.12334#bib.bib4)\); Yanet al\.\([2024](https://arxiv.org/html/2607.12334#bib.bib5)\)\. Simply increasing the number of retrieved passages is also insufficient, since long\-context language models may fail to use relevant evidence depending on its position and salienceLiuet al\.\([2024](https://arxiv.org/html/2607.12334#bib.bib6)\)\.

Most RAG systems therefore follow a retrieve\-then\-rerank pipeline, where a sparse, dense, or hybrid retriever produces candidate passages, a reranker orders them, and the top\-kkpassages are passed to the generator\. While cross\-encoder and LLM\-based listwise rerankers improve ranking qualitySunet al\.\([2023](https://arxiv.org/html/2607.12334#bib.bib7)\); Liuet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib8)\), they typically optimize passage ordering rather than the final evidence subset directly\. This distinction matters because set\-level properties such as requirement coverage, redundancy, complementarity, and joint answer support are not always explicitly optimizedLeeet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib9)\)\. Diversity\-aware methods such as maximal marginal relevance partially address redundancy by balancing relevance and noveltyCarbonell and Goldstein \([1998](https://arxiv.org/html/2607.12334#bib.bib31)\), but they do not directly model query\-specific information requirements or optimize requirement\-level coverage within a unified subset\-selection objective\. At the same time, large\-scale retrieval and reranking can introduce substantial deployment cost, latency, memory\-capacity, and data\-movement challengesHsuet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib28)\)\. These observations motivate a set\-selection view of RAG context constructionLeeet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib9)\); Jianget al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib10)\), where the goal is not merely to select the highest\-ranked individual passages, but to construct a compact evidence subset that collectively satisfies the informational requirements of the query\.

This set\-selection perspective also creates an opportunity for specialized optimization hardware\. Unlike LLM\-based reranking or prompting, which requires repeated transformer inference, a QUBO/Ising formulation exposes the context selection decision as an explicit binary energy minimization problem\. Such problems can be mapped to quantum annealers and gate\-based quantum optimization algorithms, and can also be executed by quantum\-inspired hardware such as digital annealers, coherent Ising machines, and CMOS\-compatible Ising machines\.These platforms are designed to search the energy landscape for low energy configurations using physical dynamics or hardware\-specific optimization rules\. Prior work has reported problem dependent speedups for digital annealers on fully connected QUBO/spin\-glass instances, scalable coherent\-Ising\-machine behavior on large graph\-optimization problems, and improved execution\-time or energy characteristics for CMOS\-compatible Ising designsAramonet al\.\([2019](https://arxiv.org/html/2607.12334#bib.bib23)\); Haribaraet al\.\([2016](https://arxiv.org/html/2607.12334#bib.bib24)\); Zhanget al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib25)\)\. While we do not assume a universal quantum speedup, this hardware direction is attractive for large\-scale RAG pipelines because the candidate pool and pairwise passage interactions can grow substantially with corpus size, making the final context\-selection step a natural target for low\-latency and potentially energy\-efficient QUBO/Ising acceleration\.

In this work, we formulate requirement\-aware passage selection as a Quadratic Unconstrained Binary Optimization \(QUBO\) problem\. QUBO provides a standard framework for binary optimization with linear utility terms and quadratic interaction termsGloveret al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib15)\), making it well suited to RAG context construction: each candidate passage is represented by a binary variable, while the objective rewards relevance, requirement coverage, support strength, and complementarity, and penalizes redundancy and unnecessary context length\. Low\-energy solutions therefore correspond to compact evidence subsets selected for their collective utility rather than only their individual relevance scores\.

The proposed formulation adds a structured optimization layer between retrieval and answer generation\. It does not replace the retriever or the generator; instead, it replaces the intermediate context\-selection step with an explicit set\-optimization problem over an already retrieved candidate pool\. The selected passages are then passed to a downstream language model for answer generation, separating combinatorial evidence selection from semantic answer synthesis\. To the best of our knowledge, this is the first work to formulate requirement\-aware RAG context selection as a QUBO problem, enabling the selection stage to be mapped to Ising/QUBO\-compatible solvers such as simulated annealers, quantum annealers, digital annealers, coherent Ising machines, CMOS/SRAM\-based Ising machines, and gate\-model quantum optimization algorithms after suitable mappingCeselli and Premoli \([2023](https://arxiv.org/html/2607.12334#bib.bib12)\); Şekeret al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib11)\); Weiet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib14)\); Vadlamaniet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib13)\); Perlinet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib16)\); Heet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib17)\)\. This solver\-compatible representation is particularly relevant as candidate pools and retrieval corpora grow: specialized QUBO and Ising accelerators can target the combinatorial selection step directly, offering a path toward lower\-latency and potentially more energy\-efficient context selection than repeated LLM\-based reranking or set\-selection calls\.

The main contributions of this paper are summarized as follows:

- •We formulate RAG context construction as a requirement\-aware binary subset\-selection problem, where the selected evidence is optimized at the set level rather than obtained through independent top\-kkranking\.
- •We derive a QUBO objective for evidence selection that jointly encodes passage relevance, requirement coverage, support strength, redundancy reduction, complementarity, compactness, and selection\-budget constraints within a single solver\-compatible energy function\.
- •We present a modular RAG pipeline that separates semantic preprocessing, combinatorial context selection, and answer generation: semantic scores define the QUBO instance, the solver selects the context subset, and a downstream language model generates the final answer\.
- •We evaluate the proposed approach on multi\-hop question answering using both downstream answer\-generation metrics and set\-level evidence\-selection metrics, comparing against SetR\-style LLM set selectors and non\-LLM baselines including BM25, relevance top\-kk, maximal marginal relevance, hybrid lexical–semantic ranking, greedy coverage, and random selection\.

## 2Background

The proposed method modifies the context\-selection stage of Retrieval\-Augmented Generation \(RAG\)\. Rather than reintroducing the full RAG pipeline, this section summarizes the context\-selection problem and then introduces Quadratic Unconstrained Binary Optimization \(QUBO\), which provides the mathematical basis for the proposed formulation\.

### 2\.1RAG Context Selection

RAG augments a parametric language model with retrieved non\-parametric evidence, allowing answer generation to be conditioned on external context rather than solely on memorized model parametersLewiset al\.\([2020](https://arxiv.org/html/2607.12334#bib.bib1)\)\. In a standard pipeline, an input query is used to retrieve or rerank a candidate pool of passages, and the final context is commonly formed by selecting the top\-KKpassages according to a relevance or reranking score\. If𝒞q\\mathcal\{C\}\_\{q\}denotes the candidate pool for queryqq, this selection can be written as

𝒮qtop​\-​K=arg⁡max𝒮⊆𝒞q,\|𝒮\|=K​∑pi∈𝒮ρ​\(q,pi\),\\mathcal\{S\}\_\{q\}^\{\\mathrm\{top\}\\text\{\-\}K\}=\\arg\\max\_\{\\mathcal\{S\}\\subseteq\\mathcal\{C\}\_\{q\},\\ \|\\mathcal\{S\}\|=K\}\\sum\_\{p\_\{i\}\\in\\mathcal\{S\}\}\\rho\(q,p\_\{i\}\),\(1\)whereρ​\(q,pi\)\\rho\(q,p\_\{i\}\)is the score assigned to passagepip\_\{i\}\. This additive objective selects passages according to their individual scores, but it does not explicitly optimize interactions among selected passages\.

This limitation is important in multi\-hop and requirement\-sensitive question answering, where the answer may require combining complementary evidence distributed across multiple passagesYanget al\.\([2018](https://arxiv.org/html/2607.12334#bib.bib4)\)\. A passage with high individual relevance may repeat evidence already present in another passage, while a moderately ranked passage may be necessary because it supplies a missing bridge fact or completes an evidence chain\. Recent work has therefore argued for set\-level context construction, where passages are selected according to how well they collectively satisfy the information needs of the query rather than only by their independent relevance scoresLeeet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib9)\); Jianget al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib10)\)\. This motivates treating RAG context construction as a binary subset\-selection problem\.

### 2\.2Quadratic Unconstrained Binary Optimization

Quadratic Unconstrained Binary Optimization \(QUBO\) is a standard formulation for discrete optimization over binary variablesGloveret al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib15)\)\. Given a binary vector

𝐱=\[x1,x2,…,xn\]⊤,xi∈\{0,1\},\\mathbf\{x\}=\[x\_\{1\},x\_\{2\},\\dots,x\_\{n\}\]^\{\\top\},\\qquad x\_\{i\}\\in\\\{0,1\\\},\(2\)a QUBO problem is commonly written as

min𝐱∈\{0,1\}n⁡E​\(𝐱\)=𝐱⊤​Q​𝐱,\\min\_\{\\mathbf\{x\}\\in\\\{0,1\\\}^\{n\}\}E\(\\mathbf\{x\}\)=\\mathbf\{x\}^\{\\top\}Q\\mathbf\{x\},\(3\)whereQ∈ℝn×nQ\\in\\mathbb\{R\}^\{n\\times n\}is the QUBO coefficient matrix\. The diagonal entriesQi​iQ\_\{ii\}encode linear costs or rewards becausexi2=xix\_\{i\}^\{2\}=x\_\{i\}for binary variables, while the off\-diagonal entries encode pairwise interactions between variables\. Equivalently, using an upper\-triangular convention,

E​\(𝐱\)=∑i=1nQi​i​xi\+∑1≤i<j≤nQi​j​xi​xj\.E\(\\mathbf\{x\}\)=\\sum\_\{i=1\}^\{n\}Q\_\{ii\}x\_\{i\}\+\\sum\_\{1\\leq i<j\\leq n\}Q\_\{ij\}x\_\{i\}x\_\{j\}\.\(4\)
QUBO objectives are closely related to Ising model HamiltoniansLucas \([2014](https://arxiv.org/html/2607.12334#bib.bib18)\)through the affine transformation

si=2​xi−1,si∈\{−1,\+1\}\.s\_\{i\}=2x\_\{i\}\-1,\\qquad s\_\{i\}\\in\\\{\-1,\+1\\\}\.\(5\)This relationship makes QUBO a solver\-compatible representation for simulated annealing and for Ising/QUBO\-oriented optimization backends, including quantum annealers, digital annealers, coherent Ising machines, CMOS/SRAM\-based Ising machines, and gate\-model quantum optimization algorithms after suitable mappingCeselli and Premoli \([2023](https://arxiv.org/html/2607.12334#bib.bib12)\); Şekeret al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib11)\); Weiet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib14)\); Vadlamaniet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib13)\); Perlinet al\.\([2026](https://arxiv.org/html/2607.12334#bib.bib16)\); Heet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib17)\)\. In this work, the QUBO representation is used to encode requirement\-aware passage selection, and the construction of the corresponding matrixQQis detailed in Sec\.[3](https://arxiv.org/html/2607.12334#S3)\.

## 3Methods

This section presents the proposed framework for set\-based context selection in RAG\. The goal is to select a compact subset of passages that provides sufficient evidence for answer generation\. In contrast to retrieve\-then\-rerank pipelines that typically pass the top\-kkranked passages to the generator, the proposed framework treats context construction as a binary subset\-selection problem\. This allows the final context to be optimized with respect to passage relevance, requirement coverage, support strength, complementarity, redundancy, and compactness\.

### 3\.1Pipeline Overview

![Refer to caption](https://arxiv.org/html/2607.12334v1/x1.png)Figure 1:Overview of the proposed pipeline\. Given an input query, the pipeline first derives query\-specific information requirements and constructs a candidate passage pool\. A scoring stage defines numerical coefficients such as passage relevancesis\_\{i\}, requirement supportSj​iS\_\{ji\}, redundancyd~i​k\\tilde\{d\}\_\{ik\}, and complementaritybi​kb\_\{ik\}\. These coefficients define a QUBO objective whose low\-energy solution determines the selected passage subset\. The resulting binary solution identifies the optimized context, which is then passed to a language model for answer generation\.For an input query, the proposed pipeline proceeds in five stages\. First, the query is decomposed into information requirements representing the evidence conditions needed to answer it\. Second, a candidate passage pool is obtained from a retriever, a dataset\-provided context source, or a hybrid lexical–semantic retrieval mechanism\. Third, a scoring stage assigns coefficients describing passage relevance, requirement support, pairwise redundancy, and pairwise complementarity\. Fourth, these coefficients parameterize a QUBO objective whose solution identifies the selected passage subset\. Finally, the selected passages are concatenated with the original query and passed to a language model for answer generation\. This design inserts a modular context\-optimization layer between retrieval and generation: the retriever produces a broad candidate pool, the QUBO solver performs the final set\-selection decision, and the downstream language model generates the answer from the optimized context\. Fig\.[1](https://arxiv.org/html/2607.12334#S3.F1)summarizes this workflow\.

### 3\.2QUBO Formulation for RAG Context Selection

We formulate the final context\-selection stage as a binary optimization problem\. Given an input queryqq, the objective is to select a compact passage subset that provides useful and non\-redundant evidence for answer generation under a limited context budget\.

Let𝒫=\{p1,…,pN\}\\mathcal\{P\}=\\\{p\_\{1\},\\dots,p\_\{N\}\\\}denote the candidate passages for the query, and letℛ=\{r1,…,rM\}\\mathcal\{R\}=\\\{r\_\{1\},\\dots,r\_\{M\}\\\}denote the generated information requirements\. Each requirementrjr\_\{j\}is assigned a nonnegative importance weightwjw\_\{j\}, and each passagepip\_\{i\}is assigned a relevance scoresis\_\{i\}\. We introduce a binary selection variablexi∈\{0,1\}x\_\{i\}\\in\\\{0,1\\\}, wherexi=1x\_\{i\}=1indicates that passagepip\_\{i\}is selected for the final context andxi=0x\_\{i\}=0otherwise\.

The scoring stage also assigns a requirement\-support strengthSj​i∈\{0,1,2\}S\_\{ji\}\\in\\\{0,1,2\\\}, whereSj​i=0S\_\{ji\}=0indicates that passagepip\_\{i\}does not support requirementrjr\_\{j\},Sj​i=1S\_\{ji\}=1indicates partial, bridge, or contextual support, andSj​i=2S\_\{ji\}=2indicates direct support\. To distinguish partial evidence from direct evidence, we define

Aj​iP=𝟙​\[Sj​i≥1\],Aj​iD=𝟙​\[Sj​i=2\]\.A^\{\\mathrm\{P\}\}\_\{ji\}=\\mathbbm\{1\}\[S\_\{ji\}\\geq 1\],\\qquad A^\{\\mathrm\{D\}\}\_\{ji\}=\\mathbbm\{1\}\[S\_\{ji\}=2\]\.\(6\)Here,Aj​iPA^\{\\mathrm\{P\}\}\_\{ji\}indicates that passagepip\_\{i\}provides at least partial support for requirementrjr\_\{j\}, whileAj​iDA^\{\\mathrm\{D\}\}\_\{ji\}indicates that the passage provides direct support\.

For each requirement, we introduce two binary coverage variables

yjP∈\{0,1\},yjD∈\{0,1\}\.y^\{\\mathrm\{P\}\}\_\{j\}\\in\\\{0,1\\\},\\qquad y^\{\\mathrm\{D\}\}\_\{j\}\\in\\\{0,1\\\}\.\(7\)The variableyjP=1y^\{\\mathrm\{P\}\}\_\{j\}=1indicates that requirementrjr\_\{j\}is partially covered by at least one selected passage, whileyjD=1y^\{\\mathrm\{D\}\}\_\{j\}=1indicates that requirementrjr\_\{j\}is directly covered by at least one selected passage\. These variables are constrained by

yjP≤∑i=1NAj​iP​xi,yjD≤∑i=1NAj​iD​xi,y^\{\\mathrm\{P\}\}\_\{j\}\\leq\\sum\_\{i=1\}^\{N\}A^\{\\mathrm\{P\}\}\_\{ji\}x\_\{i\},\\quad y^\{\\mathrm\{D\}\}\_\{j\}\\leq\\sum\_\{i=1\}^\{N\}A^\{\\mathrm\{D\}\}\_\{ji\}x\_\{i\},\(8\)We also impose the consistency constraintyjD≤yjPy^\{\\mathrm\{D\}\}\_\{j\}\\leq y^\{\\mathrm\{P\}\}\_\{j\}, so that direct coverage cannot be activated unless partial coverage is also active\. This direct/partial separation prevents multiple weak or bridge passages from being treated as equivalent to direct evidence\.

To discourage selecting passages that do not support any generated requirement, we define

ui=\{1,Sj​i=0∀j∈\{1,…,M\},0,otherwise\.u\_\{i\}=\\begin\{cases\}1,&S\_\{ji\}=0\\quad\\forall j\\in\\\{1,\\dots,M\\\},\\\\ 0,&\\text\{otherwise\}\.\\end\{cases\}\(9\)Thus,ui=1u\_\{i\}=1identifies passages with no verified requirement support\.

The redundancy penalty is modulated by requirement\-support overlap\. Let𝒮i=\{rj∈ℛ:Sj​i\>0\}\\mathcal\{S\}\_\{i\}=\\\{r\_\{j\}\\in\\mathcal\{R\}:S\_\{ji\}\>0\\\}denote the set of requirements supported by passagepip\_\{i\}\. Given a base redundancy coefficientdi​kd\_\{ik\}between passagespip\_\{i\}andpkp\_\{k\}, we define the support\-aware redundancy coefficientd~i​k=di​k​ρi​k\\tilde\{d\}\_\{ik\}=d\_\{ik\}\\rho\_\{ik\}, where

ρi​k=\{J​\(𝒮i,𝒮k\),𝒮i∩𝒮k≠∅,ρdiff,𝒮i∩𝒮k=∅,\\rho\_\{ik\}=\\begin\{cases\}J\(\\mathcal\{S\}\_\{i\},\\mathcal\{S\}\_\{k\}\),&\\mathcal\{S\}\_\{i\}\\cap\\mathcal\{S\}\_\{k\}\\neq\\emptyset,\\\\ \\rho\_\{\\mathrm\{diff\}\},&\\mathcal\{S\}\_\{i\}\\cap\\mathcal\{S\}\_\{k\}=\\emptyset,\\end\{cases\}\(10\)with0≤ρdiff<10\\leq\\rho\_\{\\mathrm\{diff\}\}<1, and

J​\(𝒮i,𝒮k\)=\|𝒮i∩𝒮k\|\|𝒮i∪𝒮k\|\.J\(\\mathcal\{S\}\_\{i\},\\mathcal\{S\}\_\{k\}\)=\\frac\{\|\\mathcal\{S\}\_\{i\}\\cap\\mathcal\{S\}\_\{k\}\|\}\{\|\\mathcal\{S\}\_\{i\}\\cup\\mathcal\{S\}\_\{k\}\|\}\.\(11\)Passages supporting overlapping requirements therefore receive stronger redundancy penalties, while passages supporting different requirements are penalized less strongly\.

We also define a pairwise complementarity coefficientbi​k≥0b\_\{ik\}\\geq 0, which rewards selecting pairs of passages that support different or complementary requirements\. This term encourages the selected set to cover multiple information needs instead of repeatedly selecting passages that provide similar evidence\.

For compactness, let∑i\\sum\_\{i\},∑j\\sum\_\{j\}, and∑i<k\\sum\_\{i<k\}denote sums overi=1,…,Ni=1,\\dots,N,j=1,…,Mj=1,\\dots,M, and1≤i<k≤N1\\leq i<k\\leq N, respectively\. The constrained selection problem can be written as

max𝐱,𝐲P,𝐲D∑i\(α​si\+η​∑jwj​Sj​i−κ​ui−μ\)​xi\+∑jwj​\(γP​yjP\+γD​yjD\)\+∑i<k\(δ​bi​k−β​d~i​k\)​xi​xk,s\.t\.yjP≤∑iAj​iP​xi,yjD≤∑iAj​iD​xi,yjD≤yjP,∑ixi≤K\.\\begin\{split\}\\max\_\{\\mathbf\{x\},\\mathbf\{y\}^\{\\mathrm\{P\}\},\\mathbf\{y\}^\{\\mathrm\{D\}\}\}&\\sum\_\{i\}\\left\(\\alpha s\_\{i\}\+\\eta\\sum\_\{j\}w\_\{j\}S\_\{ji\}\-\\kappa u\_\{i\}\-\\mu\\right\)x\_\{i\}\\\\ &\+\\sum\_\{j\}w\_\{j\}\\left\(\\gamma\_\{\\mathrm\{P\}\}y^\{\\mathrm\{P\}\}\_\{j\}\+\\gamma\_\{\\mathrm\{D\}\}y^\{\\mathrm\{D\}\}\_\{j\}\\right\)\\\\ &\+\\sum\_\{i<k\}\\left\(\\delta b\_\{ik\}\-\\beta\\tilde\{d\}\_\{ik\}\\right\)x\_\{i\}x\_\{k\},\\\\ \\text\{s\.t\.\}\\hskip 2\.84544pt&y^\{\\mathrm\{P\}\}\_\{j\}\\leq\\sum\_\{i\}A^\{\\mathrm\{P\}\}\_\{ji\}x\_\{i\},\\hskip 2\.84544pty^\{\\mathrm\{D\}\}\_\{j\}\\leq\\sum\_\{i\}A^\{\\mathrm\{D\}\}\_\{ji\}x\_\{i\},\\\\ &y^\{\\mathrm\{D\}\}\_\{j\}\\leq y^\{\\mathrm\{P\}\}\_\{j\},\\hskip 2\.84544pt\\sum\_\{i\}x\_\{i\}\\leq K\.\\end\{split\}\(12\)where the first three constraints hold for allj=1,…,Mj=1,\\dots,M,xi∈\{0,1\}x\_\{i\}\\in\\\{0,1\\\}for alli=1,…,Ni=1,\\dots,N, andyjP,yjD∈\{0,1\}y^\{\\mathrm\{P\}\}\_\{j\},y^\{\\mathrm\{D\}\}\_\{j\}\\in\\\{0,1\\\}for allj=1,…,Mj=1,\\dots,M\.

The first line of the objective collects passage\-level terms: relevance reward, support\-strength reward, unsupported\-passage penalty, and size penalty\. The second line rewards partial and direct requirement coverage\. The third line contains pairwise set\-level interactions, rewarding complementary passage pairs and penalizing redundant passage pairs\. The coefficientsα,η,γP,γD,δ,β,κ,μ≥0\\alpha,\\eta,\\gamma\_\{\\mathrm\{P\}\},\\gamma\_\{\\mathrm\{D\}\},\\delta,\\beta,\\kappa,\\mu\\geq 0control the relative strength of these rewards and penalties\. For minimization\-based QUBO solvers, the equivalent constrained minimization problem is obtained by replacing the objective in \([12](https://arxiv.org/html/2607.12334#S3.E12)\) with its additive inverse, while leaving the constraint set unchanged\.

Given the binary variable domains defined above, the remaining feasibility conditions in \([12](https://arxiv.org/html/2607.12334#S3.E12)\) are all inequality constraints\. We convert these inequalities to equalities using nonnegative slack variables:

∑ixi\+qK−K\\displaystyle\\sum\_\{i\}x\_\{i\}\+q\_\{K\}\-K=0,\\displaystyle=0,\(13\)yjP−∑iAj​iP​xi\+vjP\\displaystyle y^\{\\mathrm\{P\}\}\_\{j\}\-\\sum\_\{i\}A^\{\\mathrm\{P\}\}\_\{ji\}x\_\{i\}\+v^\{\\mathrm\{P\}\}\_\{j\}=0,\\displaystyle=0,yjD−∑iAj​iD​xi\+vjD\\displaystyle y^\{\\mathrm\{D\}\}\_\{j\}\-\\sum\_\{i\}A^\{\\mathrm\{D\}\}\_\{ji\}x\_\{i\}\+v^\{\\mathrm\{D\}\}\_\{j\}=0,\\displaystyle=0,yjD−yjP\+mj\\displaystyle y^\{\\mathrm\{D\}\}\_\{j\}\-y^\{\\mathrm\{P\}\}\_\{j\}\+m\_\{j\}=0\.\\displaystyle=0\.The last three equalities hold for allj=1,…,Mj=1,\\dots,M\. The slack variablesqKq\_\{K\},vjPv^\{\\mathrm\{P\}\}\_\{j\},vjDv^\{\\mathrm\{D\}\}\_\{j\}, andmjm\_\{j\}are nonnegative integers; in the implemented QUBO, each is represented using a binary expansion\. The corresponding quadratic penalty is

𝒫=\\displaystyle\\mathcal\{P\}=λK​\(∑ixi\+qK−K\)2\\displaystyle\\lambda\_\{K\}\\left\(\\sum\_\{i\}x\_\{i\}\+q\_\{K\}\-K\\right\)^\{2\}\(14\)\+λP​∑j\(yjP−∑iAj​iP​xi\+vjP\)2\\displaystyle\+\\lambda\_\{\\mathrm\{P\}\}\\sum\_\{j\}\\left\(y^\{\\mathrm\{P\}\}\_\{j\}\-\\sum\_\{i\}A^\{\\mathrm\{P\}\}\_\{ji\}x\_\{i\}\+v^\{\\mathrm\{P\}\}\_\{j\}\\right\)^\{2\}\+λD​∑j\(yjD−∑iAj​iD​xi\+vjD\)2\\displaystyle\+\\lambda\_\{\\mathrm\{D\}\}\\sum\_\{j\}\\left\(y^\{\\mathrm\{D\}\}\_\{j\}\-\\sum\_\{i\}A^\{\\mathrm\{D\}\}\_\{ji\}x\_\{i\}\+v^\{\\mathrm\{D\}\}\_\{j\}\\right\)^\{2\}\+λH​∑j\(yjD−yjP\+mj\)2\.\\displaystyle\+\\lambda\_\{\\mathrm\{H\}\}\\sum\_\{j\}\\left\(y^\{\\mathrm\{D\}\}\_\{j\}\-y^\{\\mathrm\{P\}\}\_\{j\}\+m\_\{j\}\\right\)^\{2\}\.
LetF​\(𝐱,𝐲P,𝐲D\)F\(\\mathbf\{x\},\\mathbf\{y\}^\{\\mathrm\{P\}\},\\mathbf\{y\}^\{\\mathrm\{D\}\}\)denote the maximization objective in \([12](https://arxiv.org/html/2607.12334#S3.E12)\)\. The final unconstrained QUBO objective is then

min𝐱,𝐲P,𝐲D,𝐳−F​\(𝐱,𝐲P,𝐲D\)\+𝒫,\\min\_\{\\mathbf\{x\},\\mathbf\{y\}^\{\\mathrm\{P\}\},\\mathbf\{y\}^\{\\mathrm\{D\}\},\\mathbf\{z\}\}\\quad\-F\(\\mathbf\{x\},\\mathbf\{y\}^\{\\mathrm\{P\}\},\\mathbf\{y\}^\{\\mathrm\{D\}\}\)\+\\mathcal\{P\},\(15\)where𝐳\\mathbf\{z\}denotes the binary variables used to encode the slack variables, andλK,λP,λD,λH\>0\\lambda\_\{K\},\\lambda\_\{\\mathrm\{P\}\},\\lambda\_\{\\mathrm\{D\}\},\\lambda\_\{\\mathrm\{H\}\}\>0are penalty weights\.

The coefficients used in the objective, including relevance scores, requirement weights, support labels, redundancy coefficients, complementarity coefficients, and unsupported\-passage indicators, are fixed before optimization\. After the slack variables in \([13](https://arxiv.org/html/2607.12334#S3.E13)\) are encoded using binary variables, each residual in \([14](https://arxiv.org/html/2607.12334#S3.E14)\) is linear in the full binary variable vector\. Therefore, the squared penalties introduce only linear and pairwise quadratic terms, usingz2=zz^\{2\}=zfor binary variables\. Consequently, the unconstrained objective in \([15](https://arxiv.org/html/2607.12334#S3.E15)\) can be written in standard QUBO matrix form as

min𝐯∈\{0,1\}nQ⁡𝐯⊤​Q​𝐯,\\min\_\{\\mathbf\{v\}\\in\\\{0,1\\\}^\{n\_\{\\mathrm\{Q\}\}\}\}\\mathbf\{v\}^\{\\top\}Q\\mathbf\{v\},\(16\)where𝐯\\mathbf\{v\}concatenates the passage\-selection variables, coverage variables, and slack\-encoding variables;QQis the resulting QUBO coefficient matrix; andnQn\_\{\\mathrm\{Q\}\}is the total number of binary variables\.

### 3\.3Answer Generation

Let𝐯⋆\\mathbf\{v\}^\{\\star\}denote the binary solution returned by the QUBO solver\. The selected passage subset is recovered from the passage\-selection variables as

𝒫⋆=\{pi∈𝒫:xi⋆=1\}\.\\mathcal\{P\}^\{\\star\}=\\\{p\_\{i\}\\in\\mathcal\{P\}:x\_\{i\}^\{\\star\}=1\\\}\.\(17\)The selected passages are then assembled into the final context and concatenated with the original query to form the answer\-generation prompt\.

## 4Results

We evaluate the proposed QUBO selector from three perspectives\. First, we perform a development\-set sweep over QUBO configurations to select a fixed operating point\. Second, we compare answer\-generation performance against SetR\-style LLM set selectors and non\-LLM selection baselines\. Third, we analyze the selected evidence sets directly through ablation experiments\. Unless otherwise stated, we use an integer\-quantized QUBO representation in which real\-valued scoring coefficients are scaled and rounded to integer values before solving\. This quantization controls coefficient precision and dynamic range, which is important for finite\-precision QUBO and Ising solvers, including hardware\-oriented implementations with limited coefficient resolution\.

### 4\.1Experimental Setup

We evaluate the proposed selector on the HotpotQA distractor settingYanget al\.\([2018](https://arxiv.org/html/2607.12334#bib.bib4)\), where each example contains a multi\-hop question, a reference answer, and context passages containing both supporting and distractor evidence\. To make evidence selection explicit, each titled context is flattened into sentence\-level candidate passages, and all compared methods operate on the same candidate pool𝒫=\{pi\}i=1N\\mathcal\{P\}=\\\{p\_\{i\}\\\}\_\{i=1\}^\{N\}\. All LLM\-related components use the same local model,Ollama 3\.6:31b, including information\-requirement generation, passage\-support labeling, LLM\-based selector baselines, and final answer generation\. This setup keeps the candidate pool and generator fixed across methods, so differences in performance primarily reflect the context\-selection strategy\. In the proposed pipeline, the LLM provides semantic measurements used to construct the QUBO, while the final passage subset is selected by the QUBO solver\. This modular design separates semantic preprocessing, combinatorial context selection, and answer generation, allowing each component to be replaced independently\.

### 4\.2Development\-Set Configuration Sweep

We first evaluate a development\-set sweep over QUBO configurations\. All configurations use the same base objective weightsα=10\\alpha=10,β=10\\beta=10,γP=4\\gamma\_\{\\mathrm\{P\}\}=4,γD=10\\gamma\_\{\\mathrm\{D\}\}=10,δ=8\\delta=8, support reward1010, unsupported\-passage penalty2020, andρdiff=0\.25\\rho\_\{\\mathrm\{diff\}\}=0\.25\. The sweep varies constraint penalties, passage budget, and compactness penalty\. Table[1](https://arxiv.org/html/2607.12334#S4.T1)summarizes the resulting answer\-level and set\-level behavior\.

Table 1:Development\-set sweep over QUBO configurations using simulated annealing\. Cov\. denotes average requirement coverage and \#Sel\. denotes the average number of selected passages\.The QUBO selector is relatively stable across nearby settings: most configurations maintain high requirement coverage while varying in compactness and downstream answer quality\. The best answer\-level performance is obtained byC1C\_\{1\}, which weakens the budget and coverage penalties relative to the baseline while preserving high coverage\. Reducing the budget toK=3K=3produces more compact contexts but lowers F1, while increasing the budget toK=6K=6selects more passages without improving overC1C\_\{1\}\. Very large budget penalties also reduce performance, suggesting that overly rigid constraint enforcement can interfere with the selector’s ability to balance coverage, support, and compactness\.

### 4\.3Comparison with Prior LLM\-Based Set Selection

We next compare the proposed QUBO selector against SetR\-style LLM set\-selection baselines inspired by SetRLeeet al\.\([2025](https://arxiv.org/html/2607.12334#bib.bib9)\)\. Since the official SetR model is not publicly available to us, we implement prompt\-based SetR\-style selectors using the same localqwen3\.6:35bmodel used elsewhere in the pipeline\.SetRdenotes the SetR\-aligned baseline in which the model is given the precomputed information requirements and selects at mostKKpassages from the same candidate pool\. And,SetROdenotes the original\-prompt\-style baseline in which the model infers information requirements from the question and candidate passages before selecting the final evidence set\. Thus, SetR tests LLM\-based selection with the same requirement structure used by the QUBO formulation, while SetRO tests a closer SetR\-style prompting setup where requirements are inferred inside the LLM prompt\.

Table 2:Comparison with SetR\-style LLM set selectors on 500 HotpotQA examples\. All methods use the same candidate pool and answer\-generation model\.Table[2](https://arxiv.org/html/2607.12334#S4.T2)shows that the QUBO selector is competitive with direct LLM\-based set selection\. SetR and SetRO obtain slightly higher answer\-level scores, but the margin is small: the QUBO selector is within0\.0040\.004EM and0\.00640\.0064F1 of SetR, and within0\.0080\.008EM and0\.01600\.0160F1 of SetRO\. At the same time, the QUBO selector achieves the highest requirement coverage, indicating that it tends to select contexts that more explicitly satisfy the generated information requirements\. This supports the intended role of the QUBO layer: it replaces direct LLM set selection with explicit subset optimization while preserving competitive downstream answer quality\.

### 4\.4Comparison with Non\-LLM Selectors

We also compare against non\-LLM selection baselines: relevance top\-kk, maximal marginal relevance \(MMR\), hybrid lexical–semantic ranking, BM25, greedy coverage, and random selectionRobertson and Zaragoza \([2009](https://arxiv.org/html/2607.12334#bib.bib32)\); Carbonell and Goldstein \([1998](https://arxiv.org/html/2607.12334#bib.bib31)\); Karpukhinet al\.\([2020](https://arxiv.org/html/2607.12334#bib.bib29)\); Maet al\.\([2022](https://arxiv.org/html/2607.12334#bib.bib30)\)\. These methods provide reference points for relevance\-only selection, diversity\-aware selection, lexical retrieval, coverage\-driven selection, and chance\-level selection\.

Table 3:Answer\-level comparison with non\-LLM selection baselines on 100 HotpotQA examples\.Table[3](https://arxiv.org/html/2607.12334#S4.T3)shows that the QUBO selector matches the best exact\-match score among non\-LLM baselines and remains close to relevance top\-kkand MMR\-Relevance in F1\. The QUBO selector substantially outperforms BM25\-based and random selection methods, confirming that the selected contexts are not simply the result of lexical overlap or chance\. Although relevance top\-kkobtains the highest F1 in this subset, it does not explicitly optimize requirement coverage, redundancy, complementarity, or compactness\. The QUBO formulation therefore provides a structured alternative to relevance\-only context construction while maintaining competitive answer\-level performance\.

### 4\.5Ablation Study

We ablate the main components of the QUBO objective to examine how different terms affect both downstream answer generation and the structure of the selected evidence set\. The answer\-level ablation measures whether the selected context enables the generator to produce the correct answer, while the set\-level ablation isolates the behavior of the selector itself\.

#### 4\.5\.1Answer\-Level Ablation

Table[4](https://arxiv.org/html/2607.12334#S4.T4)reports exact match and token\-level F1 for the full QUBO objective and its ablated variants\.

Table 4:Answer\-level ablation of QUBO objective components on 100 HotpotQA examples\.The results show that relevance and requirement coverage are the strongest contributors to answer\-level performance on this subset\. The relevance and coverage only variant obtains the highest F1, while removing support strength produces the lowest F1 among the tested variants\. The full QUBO objective is slightly lower in answer F1 than some ablations, indicating that optimizing for richer set\-level structure does not always translate directly into the best short\-answer score\. This indicates that the objective terms that improve evidence\-set structure do not always yield proportional gains in exact\-match or token\-F1, which are indirect measures of selector quality\.

#### 4\.5\.2Set\-Level Ablation

To isolate the behavior of the selector itself, Table[5](https://arxiv.org/html/2607.12334#S4.T5)evaluates the selected evidence sets directly using weighted coverage, capped support, marginal utility, average relevance, and selected\-context size\.

Table 5:Set\-level ablation results\. WC denotes weighted coverage, CS denotes capped support, MU denotes marginal utility fraction, Rel\. denotes average relevance, and \#Sel\. denotes the average number of selected passages\.The set\-level results show that all variants maintain the same weighted coverage and capped support, indicating that the requirement\-coverage constraints are robust across these ablations\. The differences instead appear in compactness, marginal utility, and average relevance\. Removing the unsupported\-passage penalty or using only relevance and coverage increases the number of selected passages while reducing marginal utility and average relevance, suggesting that these variants include more low\-utility context even when they preserve coverage\. In contrast, the full QUBO maintains high coverage while selecting a more compact and higher\-utility evidence set\. Together, the answer\-level and set\-level ablations show that simple relevance\-and\-coverage objectives can be strong for answer generation, while the full QUBO better controls the structure and compactness of the selected evidence set\.

## 5Conclusion

We presented a QUBO\-based formulation for requirement\-aware context selection in retrieval\-augmented question answering\. Instead of selecting passages solely by independent relevance scores or asking an LLM to directly choose the final context, the proposed method casts evidence selection as a binary subset\-optimization problem\. Candidate passages are represented by binary variables, and the objective combines passage relevance, requirement coverage, support strength, redundancy, complementarity, compactness, and budget constraints within a single solver\-compatible formulation\. The selected passages are then passed to a downstream language model for answer generation, separating combinatorial evidence selection from semantic answer synthesis\.

Experiments on HotpotQA show that the QUBO selector achieves competitive answer\-level performance relative to SetR\-style LLM selectors and non\-LLM baselines while providing a transparent optimization objective for the intermediate context\-selection step\. The QUBO selector is within a small margin of SetR\-style LLM baselines in exact match and token\-level F1, and it achieves strong requirement coverage across experiments\. Ablation results further show that relevance and requirement coverage are the dominant contributors to downstream answer accuracy, while additional terms such as unsupported\-passage penalties, redundancy, complementarity, and compactness shape the quality and structure of the selected evidence set\.

These results suggest that multi\-hop RAG context construction can be treated as a structured discrete optimization problem rather than only as a ranking or prompting problem\. The formulation is modular: semantic preprocessing, QUBO solving, and answer generation can be replaced independently\. This opens a path toward retrieval pipelines in which LLMs are reserved primarily for semantic measurement and answer generation, while the final combinatorial selection step is handled by classical, quantum\-inspired, or hardware\-oriented QUBO solvers\. Future work includes evaluating larger and more diverse QA benchmarks, reducing reliance on LLM\-based semantic preprocessing, learning the QUBO coefficients from data, and studying the behavior of the formulation on specialized Ising/QUBO hardware\.

## 6Acknowledgment

The authors gratefully acknowledge Prof\. Xifeng Yan for his thoughtful discussions, valuable feedback, and insightful comments, which helped improve the presentation and positioning of this work\.

## References

- M\. Aramon, G\. Rosenberg, E\. Valiante, T\. Miyazawa, H\. Tamura, and H\. G\. Katzgraber \(2019\)Physics\-inspired optimization for quadratic unconstrained problems using a digital annealer\.Frontiers in PhysicsVolume 7 \- 2019\.External Links:[Link](https://www.frontiersin.org/journals/physics/articles/10.3389/fphy.2019.00048),[Document](https://dx.doi.org/10.3389/fphy.2019.00048),ISSN 2296\-424XCited by:[§1](https://arxiv.org/html/2607.12334#S1.p3.1)\.
- S\. Barnett, S\. Kurniawan, S\. Thudumu, Z\. Brannelly, and M\. Abdelrazek \(2024\)Seven failure points when engineering a retrieval augmented generation system\.InProceedings of the IEEE/ACM 3rd International Conference on AI Engineering \- Software Engineering for AI,CAIN ’24,New York, NY, USA,pp\. 194–199\.External Links:ISBN 9798400705915,[Link](https://doi.org/10.1145/3644815.3644945),[Document](https://dx.doi.org/10.1145/3644815.3644945)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1)\.
- J\. Carbonell and J\. Goldstein \(1998\)The use of mmr, diversity\-based reranking for reordering documents and producing summaries\.InProceedings of the 21st Annual International ACM SIGIR Conference on Research and Development in Information Retrieval,SIGIR ’98,New York, NY, USA,pp\. 335–336\.External Links:ISBN 1581130155,[Link](https://doi.org/10.1145/290941.291025),[Document](https://dx.doi.org/10.1145/290941.291025)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1),[§4\.4](https://arxiv.org/html/2607.12334#S4.SS4.p1.1)\.
- A\. Ceselli and M\. Premoli \(2023\)On good encodings for quantum annealer and digital optimization solvers\.Scientific Reports13\(1\),pp\. 5628\.External Links:ISSN 2045\-2322,[Document](https://dx.doi.org/10.1038/s41598-023-32232-0),[Link](https://doi.org/10.1038/s41598-023-32232-0)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- Y\. Gao, Y\. Xiong, X\. Gao, K\. Jia, J\. Pan, Y\. Bi, Y\. Dai, J\. Sun, M\. Wang, and H\. Wang \(2024\)Retrieval\-augmented generation for large language models: a survey\.External Links:2312\.10997,[Link](https://arxiv.org/abs/2312.10997)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1)\.
- F\. Glover, G\. Kochenberger, R\. Hennig, and Y\. Du \(2022\)Quantum bridge analytics i: a tutorial on formulating and using qubo models\.Annals of Operations Research314\(1\),pp\. 141–183\.External Links:ISSN 1572\-9338,[Document](https://dx.doi.org/10.1007/s10479-022-04634-2),[Link](https://doi.org/10.1007/s10479-022-04634-2)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p4.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p1.4)\.
- Y\. Haribara, S\. Utsunomiya, and Y\. Yamamoto \(2016\)A coherent ising machine for max\-cut problems: performance evaluation against semidefinite programming and simulated annealing\.InPrinciples and Methods of Quantum Information Technologies,Y\. Yamamoto and K\. Semba \(Eds\.\),pp\. 251–262\.External Links:ISBN 978\-4\-431\-55756\-2,[Document](https://dx.doi.org/10.1007/978-4-431-55756-2%5F12),[Link](https://doi.org/10.1007/978-4-431-55756-2_12)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p3.1)\.
- Z\. He, D\. Amaro, R\. Shaydulin, and M\. Pistoia \(2025\)Performance of quantum approximate optimization with quantum error detection\.Communications Physics8\(1\),pp\. 217\.External Links:ISSN 2399\-3650,[Document](https://dx.doi.org/10.1038/s42005-025-02136-8),[Link](https://doi.org/10.1038/s42005-025-02136-8)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- P\. Hsu, W\. Xu, Q\. Liu, T\. Rosing, and S\. Yu \(2026\)HAVEN: high\-bandwidth flash augmented vector engine for large\-scale approximate nearest\-neighbor search acceleration\.External Links:2603\.01175,[Link](https://arxiv.org/abs/2603.01175)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1)\.
- Y\. Jiang, S\. Zhao, J\. Li, B\. Hu, Y\. Du, H\. Wang, and B\. Qin \(2026\)OptiSet: unified optimizing set selection and ranking for retrieval\-augmented generation\.External Links:2601\.05027,[Link](https://arxiv.org/abs/2601.05027)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.12334#S2.SS1.p2.1)\.
- V\. Karpukhin, B\. Oguz, S\. Min, P\. Lewis, L\. Wu, S\. Edunov, D\. Chen, and W\. Yih \(2020\)Dense passage retrieval for open\-domain question answering\.InProceedings of the 2020 Conference on Empirical Methods in Natural Language Processing \(EMNLP\),B\. Webber, T\. Cohn, Y\. He, and Y\. Liu \(Eds\.\),Online,pp\. 6769–6781\.External Links:[Link](https://aclanthology.org/2020.emnlp-main.550/),[Document](https://dx.doi.org/10.18653/v1/2020.emnlp-main.550)Cited by:[§4\.4](https://arxiv.org/html/2607.12334#S4.SS4.p1.1)\.
- D\. Lee, Y\. Jo, H\. Park, and M\. Lee \(2025\)Shifting from ranking to set selection for retrieval augmented generation\.InProceedings of the 63rd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),W\. Che, J\. Nabende, E\. Shutova, and M\. T\. Pilehvar \(Eds\.\),Vienna, Austria,pp\. 17606–17619\.External Links:[Link](https://aclanthology.org/2025.acl-long.861/),[Document](https://dx.doi.org/10.18653/v1/2025.acl-long.861),ISBN 979\-8\-89176\-251\-0Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.12334#S2.SS1.p2.1),[§4\.3](https://arxiv.org/html/2607.12334#S4.SS3.p1.1)\.
- P\. Lewis, E\. Perez, A\. Piktus, F\. Petroni, V\. Karpukhin, N\. Goyal, H\. Küttler, M\. Lewis, W\. Yih, T\. Rocktäschel, S\. Riedel, and D\. Kiela \(2020\)Retrieval\-augmented generation for knowledge\-intensive nlp tasks\.InAdvances in Neural Information Processing Systems,H\. Larochelle, M\. Ranzato, R\. Hadsell, M\.F\. Balcan, and H\. Lin \(Eds\.\),Vol\.33,pp\. 9459–9474\.External Links:[Link](https://proceedings.neurips.cc/paper_files/paper/2020/file/6b493230205f780e1bc26945df7481e5-Paper.pdf)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1),[§2\.1](https://arxiv.org/html/2607.12334#S2.SS1.p1.3)\.
- N\. F\. Liu, K\. Lin, J\. Hewitt, A\. Paranjape, M\. Bevilacqua, F\. Petroni, and P\. Liang \(2024\)Lost in the middle: how language models use long contexts\.Transactions of the Association for Computational Linguistics12,pp\. 157–173\.External Links:[Link](https://aclanthology.org/2024.tacl-1.9/),[Document](https://dx.doi.org/10.1162/tacl%5Fa%5F00638)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1)\.
- Q\. Liu, B\. Wang, N\. Wang, and J\. Mao \(2025\)Leveraging passage embeddings for efficient listwise reranking with large language models\.InProceedings of the ACM on Web Conference 2025,WWW ’25,New York, NY, USA,pp\. 4274–4283\.External Links:ISBN 9798400712746,[Link](https://doi.org/10.1145/3696410.3714554),[Document](https://dx.doi.org/10.1145/3696410.3714554)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1)\.
- A\. Lucas \(2014\)Ising formulations of many np problems\.Frontiers in PhysicsVolume 2 \- 2014\.External Links:[Link](https://www.frontiersin.org/journals/physics/articles/10.3389/fphy.2014.00005),[Document](https://dx.doi.org/10.3389/fphy.2014.00005),ISSN 2296\-424XCited by:[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.2)\.
- X\. Ma, K\. Sun, R\. Pradeep, M\. Li, and J\. Lin \(2022\)Another look at dpr: reproduction of training and replication of retrieval\.InAdvances in Information Retrieval: 44th European Conference on IR Research, ECIR 2022, Stavanger, Norway, April 10–14, 2022, Proceedings, Part I,Berlin, Heidelberg,pp\. 613–626\.External Links:ISBN 978\-3\-030\-99735\-9,[Link](https://doi.org/10.1007/978-3-030-99736-6_41),[Document](https://dx.doi.org/10.1007/978-3-030-99736-6%5F41)Cited by:[§4\.4](https://arxiv.org/html/2607.12334#S4.SS4.p1.1)\.
- M\. A\. Perlin, Z\. He, A\. A\. Armenakas, P\. Andres\-Martinez, T\. Hao, D\. Herman, Y\. Jin, K\. Mayer, C\. Self, D\. Amaro, C\. Ryan\-Anderson, and R\. Shaydulin \(2026\)Fault\-tolerant execution of error\-corrected quantum algorithms\.External Links:2603\.04584,[Link](https://arxiv.org/abs/2603.04584)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- S\. Robertson and H\. Zaragoza \(2009\)The probabilistic relevance framework: bm25 and beyond\.Found\. Trends Inf\. Retr\.3\(4\),pp\. 333–389\.External Links:ISSN 1554\-0669,[Link](https://doi.org/10.1561/1500000019),[Document](https://dx.doi.org/10.1561/1500000019)Cited by:[§4\.4](https://arxiv.org/html/2607.12334#S4.SS4.p1.1)\.
- O\. Şeker, N\. Tanoumand, and M\. Bodur \(2022\)Digital annealer for quadratic unconstrained binary optimization: a comparative performance analysis\.Applied Soft Computing127,pp\. 109367\.External Links:ISSN 1568\-4946,[Document](https://dx.doi.org/https%3A//doi.org/10.1016/j.asoc.2022.109367),[Link](https://www.sciencedirect.com/science/article/pii/S156849462200521X)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- W\. Sun, L\. Yan, X\. Ma, S\. Wang, P\. Ren, Z\. Chen, D\. Yin, and Z\. Ren \(2023\)Is ChatGPT good at search? investigating large language models as re\-ranking agents\.InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing,H\. Bouamor, J\. Pino, and K\. Bali \(Eds\.\),Singapore,pp\. 14918–14937\.External Links:[Link](https://aclanthology.org/2023.emnlp-main.923/),[Document](https://dx.doi.org/10.18653/v1/2023.emnlp-main.923)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p2.1)\.
- M\. Vadlamani, R\. Singh, Y\. Kong, Z\. Zhang, and S\. Yu \(2026\)Scalable digital compute\-in\-memory ising machines for robustness verification of binary neural networks\.External Links:2603\.05677,[Link](https://arxiv.org/abs/2603.05677)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- H\. Wei, C\. Ai, P\. Guo, B\. Jia, L\. Yuan, H\. Song, S\. Chen, C\. Cao, J\. Wu, C\. Ju, Y\. Ma, J\. Fan, M\. Hu, C\. Wang, and K\. Wen \(2026\)A versatile coherent ising computing platform\.Light: Science & Applications15\(1\),pp\. 74\.External Links:ISSN 2047\-7538,[Document](https://dx.doi.org/10.1038/s41377-025-02178-1),[Link](https://doi.org/10.1038/s41377-025-02178-1)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p5.1),[§2\.2](https://arxiv.org/html/2607.12334#S2.SS2.p2.1)\.
- S\. Yan, J\. Gu, Y\. Zhu, and Z\. Ling \(2024\)Corrective retrieval augmented generation\.External Links:2401\.15884,[Link](https://arxiv.org/abs/2401.15884)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1)\.
- Z\. Yang, P\. Qi, S\. Zhang, Y\. Bengio, W\. Cohen, R\. Salakhutdinov, and C\. D\. Manning \(2018\)HotpotQA: a dataset for diverse, explainable multi\-hop question answering\.InProceedings of the 2018 Conference on Empirical Methods in Natural Language Processing,E\. Riloff, D\. Chiang, J\. Hockenmaier, and J\. Tsujii \(Eds\.\),Brussels, Belgium,pp\. 2369–2380\.External Links:[Link](https://aclanthology.org/D18-1259/),[Document](https://dx.doi.org/10.18653/v1/D18-1259)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p1.1),[§2\.1](https://arxiv.org/html/2607.12334#S2.SS1.p2.1),[§4\.1](https://arxiv.org/html/2607.12334#S4.SS1.p1.1)\.
- Y\. Zhang, R\. Afoakwa, U\. K\. R\. Vengalam, M\. Huang, and Z\. Ignjatovic \(2022\)A cmos compatible bistable resistively\-coupled ising machine\-brim\.In2022 IEEE International Symposium on Circuits and Systems \(ISCAS\),Vol\.,pp\. 1665–1669\.External Links:[Document](https://dx.doi.org/10.1109/ISCAS48785.2022.9937247)Cited by:[§1](https://arxiv.org/html/2607.12334#S1.p3.1)\.

Similar Articles