<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">A structural approach to reasoning with quantified Boolean formulas</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
				<date type="published" when="2009-12-12">12 December 2009</date>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author role="corresp">
							<persName><forename type="first">Luca</forename><surname>Pulina</surname></persName>
							<email>luca.pulina@unige.itarmando.tacchella@unige.it</email>
						</author>
						<author>
							<persName><forename type="first">Armando</forename><surname>Tacchella</surname></persName>
						</author>
						<author>
							<affiliation key="aff0">
								<orgName type="department">DIST</orgName>
								<orgName type="institution">Università di Genova</orgName>
								<address>
									<addrLine>Viale Causa</addrLine>
									<postCode>13 -16145</postCode>
									<settlement>Genova</settlement>
									<country key="IT">Italy</country>
								</address>
							</affiliation>
						</author>
						<author>
							<affiliation key="aff1">
								<orgName type="laboratory">Experimental Evaluation of Algorithms for Solving Problems with Combinatorial Explosion</orgName>
								<orgName type="institution">Reggio Emilia</orgName>
								<address>
									<postCode>11</postCode>
									<settlement>Italy</settlement>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">A structural approach to reasoning with quantified Boolean formulas</title>
					</analytic>
					<monogr>
						<imprint>
							<date type="published" when="2009-12-12">12 December 2009</date>
						</imprint>
					</monogr>
					<idno type="MD5">5909596845C4AB1AA8E42FE9FD764C6C</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T03:55+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this paper we approach the problem of reasoning with quantified Boolean formulas (QBFs) by combining search and resolution, and by switching between them according to structural properties of QBFs. We provide empirical evidence that QBFs which cannot be solved by search or resolution alone, can be solved by combining them, and that our approach makes a proof-ofconcept implementation competitive with current QBF solvers.</p><p>The results herein presented are also detailed in a paper in proceedings of the Twenty-First International Joint Conference on Artificial Intelligence (IJCAI'09).</p><p>1 Induced width, as defined in <ref type="bibr" target="#b15">[16]</ref>, is shown to be equivalent to treewidth in <ref type="bibr" target="#b8">[9]</ref>.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>The development of the first practically efficient QBF solver can be traced back to <ref type="bibr" target="#b3">[4]</ref>, wherein a search-based solver is proposed. Since then, researchers have proposed improvements to the basic search algorithm including, e.g., backjumping and learning <ref type="bibr" target="#b6">[7]</ref>, as well as different approaches to the problem including, e.g., skolemization <ref type="bibr" target="#b0">[1]</ref>, and resolution <ref type="bibr" target="#b1">[2,</ref><ref type="bibr" target="#b11">12]</ref>. However, in spite of such efforts, current QBF reasoners still cannot handle many instances of practical interest. This is witnessed, e.g., by the results of the 2008 QBF solver competition (QBFEVAL'08) where even the most sophisticated solvers failed to decide encodings obtained from real-world applications <ref type="bibr" target="#b13">[14]</ref>.</p><p>In this work, we consider search and resolution for QBFs, and we propose a new approach that combines them dynamically. The key point of our approach is to implicitly leverage graph abstractions of QBFs to yield structural features which support the decision between search and resolution. As for the choice of a particular feature, it is known, see, e.g., <ref type="bibr" target="#b15">[16]</ref>, that resolution on plain Boolean formulas may require computational resources that are exponential in the treewidth. 1 This connection has been studied also for quantified formulas in <ref type="bibr" target="#b4">[5,</ref><ref type="bibr" target="#b7">8,</ref><ref type="bibr" target="#b12">13]</ref>. In particular, in <ref type="bibr" target="#b4">[5]</ref>, an extension of treewidth is shown to be related to the efficiency of reasoning about quantified Boolean constraints, of which QBFs are a subclass. This result tells us that treewidth is a promising structural parameter to gauge resolution and search: Resolution is the choice when treewidth is relatively small, and search is the alternative when treewidth is relatively large. Switching between the two options may occur as long as search is able to obtain subproblems whose treewidth is smaller than the one of the original problem. In practice, QBFs of some interest for applications may have thousands of variables, and thus even approximations of treewidth -a well-known NP-complete problem -are too expensive to compute on-the-fly <ref type="bibr" target="#b14">[15]</ref>. Also, while deciding if treewidth is bounded by a constant can be done in asymptotic linear time <ref type="bibr" target="#b2">[3]</ref>, an actual implementation of such algorithm would be too slow to be of practical use. In this paper we show how these issues can be overcome by considering alternative parameters indicating whether resolution is bound to increase the size of the initial set of clauses beyond "reasonable" limits. To this purpose, we compute estimates of the number of new clauses generated during resolution, and we require that the number of such clauses is less than the number of old clauses used to generate them. Also, we require that the expected number of clauses is less than a predefined threshold. Both these conditions can be checked without a prohibitive overhead, and respecting them can be as informative as tracking treewidth in many situations.</p><p>To test our approach, we implemented it in STRUQS (for "Stru"ctural "Q"BF "S"olver), a proof-of-concept tool consisting of less than 2K lines of C++ code. We have experimented with STRUQS on the QBFEVAL'08 dataset <ref type="bibr" target="#b13">[14]</ref>, which is comprised of more than three thousands QBF encodings in various application domains -the largest publicly available collection of QBFs to date. Here, we show that exploiting dynamic combination of search and resolution enables STRUQS to solve QBFs which, all other things being equal, cannot be solved by the search and resolution components of STRUQS alone. Moreover, STRUQS is competitive with respect to current QBF solvers, as it would have ranked third best among QBFEVAL'08 competitors if considering the number of problems solved within a given amount of resources.</p><p>While approaches similar to ours have been proposed for plain Boolean satisfiability in <ref type="bibr" target="#b15">[16]</ref>, and for non-quantified constraint satisfaction in <ref type="bibr" target="#b10">[11]</ref>, we notice that this is the first time that a structural approach combining search and resolution is designed, implemented and empirically tested for QBFs. Learning in search-based QBF solvers such as, e.g., QUBE <ref type="bibr" target="#b6">[7]</ref> and YQUAFFLE <ref type="bibr" target="#b17">[18]</ref>, can also be seen as a way to integrate resolution and search. However, as shown in <ref type="bibr" target="#b6">[7]</ref>, this is true of a particular form of control strategy for general resolution known as tree resolution, while here we focus on variable elimination instead. Moreover, since STRUQS features backjumping, and backjumping is essentially space-bounded tree resolution, we could say that our work extends the above contributions in this sense. The solver 2CLSQ <ref type="bibr" target="#b16">[17]</ref> is another example of integration between search and resolution. Also in this case, the contribution is limited to a specific form of resolution, namely hyper-binary resolution, which is seen as a useful complement to the standard unit clause resolution step performed by most search-based QBF solvers, and not as an alternative resolution-based decision procedure as we do in STRUQS. Also QUANTOR <ref type="bibr" target="#b1">[2]</ref> provides some kind of integration between resolution and search, but with two fundamental differences with respect to STRUQS. The first one is that QUANTOR intertwines resolution with the expansion of univer-sally quantified variables, whereas in STRUQS no such expansion is performed. The second one is that QUANTOR uses search only at the very end of the decision process, when the input QBF has been reduced to an equi-satisfiable propositional formula.</p><p>The paper is structured as follows. In Section 2 we lay down the foundations of our work considering relevant definitions and known results. In Section 3 we define the basic STRUQS algorithms, including search, resolution and their combination. In Section 4 we describe our experiments and in Section 5 we summarize our current results and future research directions.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Groundwork</head><p>A variable is an element of a set P of propositional letters and a literal is a variable or the negation thereof. We denote with |l| the variable occurring in the literal l, and with l the complement of l, i.e., ¬l if l is a variable and |l| otherwise. A clause C is an n-ary (n ≥ 0) disjunction of literals such that, for any two distinct disjuncts l, l of C, it is not the case that |l| = |l |. A propositional formula is a k-ary (k ≥ 0) conjunction of clauses. A quantified Boolean formula is an expression of the form</p><formula xml:id="formula_0">Q 1 z 1 . . . Q n z n Φ</formula><p>where, for each 1 ≤ i ≤ n, z i is a variable, Q i is either an existential quantifier Q i = ∃ or a universal one Q i = ∀, and Φ is a propositional formula in the variables Z = {z 1 , . . . , z n }; the expression Q 1 z 1 . . . Q n z n is the prefix and Φ is the matrix; a literal l is existential if |l| = z i for some 1 ≤ i ≤ n and ∃z i belongs to the prefix, and it is universal otherwise.</p><p>A prefix p = Q 1 z 1 . . . Q n z n can be viewed as the concatenation of h quantifier blocks, i.e., p = Q 1 Z 1 . . . Q h Z h , where the sets Z i with 1 ≤ i ≤ h are a partition of Z, and consecutive blocks have different quantifiers. To each variable z we can associate a level lvl(z) which is the index of the corresponding block, i.e., lvl(z) = i for all the variables z ∈ Z i . We also say that variable z comes after a variable z in p if lvl(z) ≥ lvl(z ).</p><p>The semantics of a QBF ϕ can be defined recursively as follows. A QBF clause is contradictory exactly when it does not contain existential literals. If ϕ contains a contradictory clause then ϕ is false. If ϕ has no conjuncts then ϕ is true. If ϕ = Qzψ is a QBF and l is a literal, we define ϕ l as the QBF obtained from ψ by removing all the conjuncts in which l occurs and removing l from the others. Then we have two cases:</p><p>• If ϕ is ∃zψ, then ϕ is true exactly when ϕ z or ϕ ¬z are true.</p><p>• If ϕ is ∀zψ, then ϕ is true exactly when ϕ z and ϕ ¬z are true.</p><p>The QBF decision problem (QSAT) can be stated as the problem of deciding whether a given QBF is true or false.</p><p>Given a QBF ϕ on the set of variables Z = {z 1 , . . . , z n }, its Gaifman graph has a vertex set equal to Z with an edge (z, z ) for every pair of different elements z, z ∈ Z that occur together in some clause of ϕ. A scheme for a QBF ϕ having prefix p is a supergraph (Z, E) of the Gaifman graph of ϕ along with and ordering z 1 , . . . , z n of the elements of Z such that 1. the ordering z 1 , . . . , z n preserves the order of p, i.e., if i &lt; j then z j comes after z i in p, and 2. for any z k , its lower numbered neighbors form a clique, that is, for all k,</p><formula xml:id="formula_1">if i &lt; k, j &lt; k, (z i , z k ) ∈ E and (z j , z k ) ∈ E, then (z i , z j ) ∈ E.</formula><p>The width w p (ϕ) of a scheme is the maximum, over all vertices z k , of the size of the set {i : i &lt; k, (z i , z k ) ∈ E}, i.e., the set containing all lower numbered neighbors of z k . The treewidth tw p (ϕ) of a QBF ϕ is the minimum width over all schemes for ϕ.</p><p>Clause resolution <ref type="bibr" target="#b9">[10]</ref> for a QBF ϕ is an operation whereby given two clauses Q ∨ x and R ∨ ¬x of ϕ, the clause min(Q ∨ R) can be derived, where</p><formula xml:id="formula_2">1. Q and R are disjunctions of literals, 2.</formula><p>x is an existential variable, 3. Q and R do not share any literal l such that l occurs in Q and l occurs in R, and 4. min(C) is obtained from C by removing the universal literals coming after all the existential literals in C.</p><p>Variable elimination is a control strategy for resolution defined as follows. Given a QBF ϕ on the set of variables Z = {z 1 , . . . , z n }, we consider a scheme for ϕ and the associated elimination ordering Z = {z 1 , . . . , z n }. Starting from z = z n and scanning the elimination ordering in reverse, we eliminate the variables as follows. If z is existential, and assuming that ϕ contains k &gt; 0 clauses in the form Q ∨ z and h &gt; 0 clauses in the form R ∨ ¬z, then we add O(kh) clauses to ϕ obtained by performing all the resolutions on z. In the case where either k = 0 or h = 0, no operation is performed. If z is universal, we simply skip to the next variable. If all the variables in ϕ can be eliminated without generating a contradictory clause, then ϕ is true, else it is false.</p><p>Backtracking search <ref type="bibr" target="#b3">[4]</ref> for a QBF ϕ is a depth-first exploration of an AND-OR tree defined as follows. Initially, the current QBF is ϕ. If the current QBF is of the form ∃xψ then we create an OR-node, whose children are obtained by checking recursively whether ϕ x is true or ϕ ¬x is true. If the current QBF is of the form ∀yψ then we create an AND-node, whose children are obtained by checking recursively whether both ϕ y and ϕ ¬y are true. We call ϕ l a branch (also, an assignment), and since we explore the tree in a depth-first fashion, a node wherein only the first branch was taken is said to be open, and closed otherwise. The leaves are of two kinds: If the current QBF contains a contradictory clause we have a conflict, while if the current QBF contains no conjuncts we have a solution. Backtracking from a conflict amounts to reaching back to the deepest open OR-node: if there is no such node, then ϕ is false; backtracking from a solution amounts to reaching back to the deepest open AND-node: if there is no such node, then ϕ is true.</p><p>Unit propagation <ref type="bibr" target="#b3">[4]</ref> is an optimization that can be added on top of basic variable elimination and search. A clause C is unit in a QBF ϕ exactly when (i) C contains only one existential literal l (unit literal) and, (ii) all the universal literals in C come after l in the prefix of ϕ. If ϕ contains a unit literal l, then ϕ is true if and only if ϕ l is true. Unit propagation is the process whereby we keep assigning unit literals until no more such literals can be found.</p><p>Backjumping is an optimization that can be added on top of search. According to <ref type="bibr" target="#b6">[7]</ref> the computation performed by a QBF search algorithm corresponds to a particular kind of deductive proof, i.e., a tree wherein clause resolution and term resolution alternate, where a term is a conjunction of literals, and term resolution is the "symmetric" operation of clause resolution -see <ref type="bibr" target="#b6">[7]</ref> for details. The clause/term tree resolution proof corresponding to search for a QBF ϕ can be reconstructed as follows. In case of a conflict, there must be two clauses, say Q ∨ x and R ∨ ¬x such that all the literals in Q and R have been deleted by previous assignments. We can always resolve such clauses to obtain the working reason min(Q ∨ R)where Q ∨ x and R ∨ ¬x are the initial working reasons. The other clauses can be derived from the working reason when backtracking over any existential literal l such that |l| occurs in the working reason. There are three cases:</p><p>1. If l is a unit literal, then there is a clause C where l occurs -the reason of assigning l -and we obtain a new working reason by resolving the current one with C.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">If</head><p>l is an open branch, then proof reconstruction stops, because we must branch on l, and the reason of this assignment is the current working reason.</p><p>3. If l is a closed branch, then its reason was computed before, and it can be treated as in <ref type="bibr" target="#b0">(1)</ref>.</p><p>In case of a solution, the initial working reason is a term which is the conjunction of (a subset of) all the literals assigned from the root of the search tree, down to the current leaf, i.e., a Boolean implicant of the matrix of ϕ. The other terms can be derived when backtracking over any universal literal l such that l is in the working reason, considering cases (ii) and (iii) above, and using term instead of clause resolution. <ref type="foot" target="#foot_0">2</ref> Given the above, it is easy to see that closing branches over existential (resp. universal) literals that do not appear in the current working reason is useless, i.e., they are not responsible for the current conflict (resp. solution). Backjumping can thus be described as the process whereby useless branches are skipped while backtracking.</p><p>SEARCH(ϕ, Γ) l ← CHOOSELIT(ϕ, Γ) push(Γ, l, LS, NIL ) DOASSIGN(ϕ, l) </p><formula xml:id="formula_3">ELIMINATE(ϕ, Γ) v ← CHOOSEVAR(ϕ, Γ) push(Γ, v, VE, NIL ) DOELIMINATE(ϕ, v) BACKTRACK(ϕ, Γ, q) while Γ = EMPTY do l, m, ← top(Γ) if m = VE then UNDOELIMINATE(ϕ, l) else UNDOASSIGN(ϕ, l) pop(Γ) if ISBOUND(q, l, ϕ) then if m = LS then push(Γ, l, FL, NIL ) DOASSIGN(ϕ, l) return FALSE return TRUE PROPAGATE(ϕ, Γ) l, r ← FINDUNIT(ϕ) while l = NIL do push(Γ, l, FL, r ) DOASSIGN(ϕ, l) l, r ← FINDUNIT(ϕ) BACKJUMP(ϕ, Γ, q) wr ← INITREASON(ϕ, Γ, q) while Γ = EMPTY do l, m, r ← top(Γ) if m = VE then UNDOELIMINATE(ϕ, l) else UNDOASSIGN(ϕ, l) pop(Γ) if ISBOUND(q, l, ϕ) then if OCCURS(|l|, wr) then if m = LS then push(Γ, l, FL, wr ) DOASSIGN(ϕ, l) return FALSE else if m = FL then UPDATEREASON(wr, r) return TRUE</formula></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Implementing the structural approach</head><p>In Figure <ref type="figure" target="#fig_0">1</ref> we present STRUQS basic routines in pseudo-code format. All the routines take as by-reference parameters the data structure ϕ which encodes the input QBF, and a stack Γ which keeps track of the steps performed. We consider the following primitives for ϕ:</p><p>• DOASSIGN(ϕ, l) implements ϕ l as per Section 2, where clauses and literals are disabled rather than deleted.</p><p>• DOELIMINATE(ϕ, v) implements the elimination of a single variable as described in Section 2, with the addition that clauses subsumed by some clause already in ϕ are not added -a process named forward subsumption in <ref type="bibr" target="#b1">[2]</ref>; as in the case of DOASSIGN, the eliminated variables and the clauses where they occur are disabled.</p><p>• FINDUNIT(ϕ), returns a pair l, r if l is a unit literal in ϕ and r is a unit clause in which l occurs, or a pair NIL , NIL if no such literal exists in ϕ.</p><p>• CHOOSELIT(ϕ, Γ) returns a literal l subject to the constraint that all the remaining variables of ϕ which do not appear in Γ come after |l|.</p><p>• CHOOSEVAR(ϕ, Γ) returns a variable v subject to the constraint that v comes after all the remaining variables of ϕ which do not appear in Γ.</p><p>Because updates in DOASSIGN and DOELIMINATE are not destructive, we can further assume that their effects can by "undo" functions, i.e., UNDOASSIGN and UNDOELIMINATE.</p><p>The routines SEARCH and ELIMINATE (Figure <ref type="figure" target="#fig_0">1</ref>, top-left) perform one step of search and variable elimination, respectively. SEARCH (resp. ELIMINATE), asks CHOOSELIT (resp. CHOOSEVAR) for a literal l (resp. a variable v) and then it (i) pushes l (resp. v) in the stack and (ii) it updates ϕ. In both cases step (i) amounts to push a triple u, m, r in Γ where r is always NIL , u is the literal being assigned or the variable being eliminated, and m is the mode of the assignment, where LS ("L"eft "S"plit) indicates an open branch in the search tree, and VE ("V"ariable "E"limination) indicates the corresponding resolution step. The task of PROPAGATE (Figure <ref type="figure" target="#fig_0">1</ref>, top-right) is to perform unit propagation in ϕ. For each unit literal l, PROPAGATE pushes a record l, FL, r in Γ, where l and r are the results of FINDUNIT, and the mode is always FL ("F"orced "L"iteral).</p><p>BACKTRACK (Figure <ref type="figure" target="#fig_0">1</ref> bottom-left) and BACKJUMP (Figure <ref type="figure" target="#fig_0">1</ref>, bottom-right) are alternative backtracking procedures to be invoked at the leaves of the search tree with an additional parameter q, where q = ∃ if the current leaf is a conflict, and q = ∀ otherwise. BACKTRACK goes back in the stack Γ, popping records for search (LS) or deduction steps (VE, FL), and undoing the corresponding effects on ϕ. Notice that, if BACKTRACK is a component of a plain search solver, then VE-type records will not show up in Γ. BACKTRACK stops when an open branch (LS) corresponding to a literal l bound by the quantifier q is found (ISBOUND(q, l, ϕ)=TRUE). In this case, BACKTRACK closes the branch by assigning l with mode FL and returning FALSE to indicate that search should not stop. On the other hand, if all the records are popped from Γ without finding an open branch then search is over and BACKTRACK returns TRUE.</p><p>BACKJUMP implements backjumping as per Section 2 on top of the following primitives:</p><p>• INITREASON(ϕ, Γ, q) initializes the working reason wr. If q = ∃, then we have two cases: (i) If top(Γ) is a FL-type record, then wr is any clause in ϕ which is contradictory because all of its existential literals have been disabled. (ii) If top(Γ) is a VE-type record, this means that a contradictory clause C has been derived when eliminating a variable, and thus wr is C. If q = ∀, then wr is a term obtained considering a subset of the literals in Γ such that the number of universal literals in the term is minimized -VE-type records are disregarded in this process.</p><p>• UPDATEREASON(wr, r) updates wr by resolving it with r, i.e., the reason of the assignment which is being undone.</p><p>When BACKJUMP is invoked in lieu of BACKTRACK, it first initializes the working reason, and then it pops records from Γ until either the stack is empty, or some open branch is found -the return values in these cases are the same as BACKTRACK.</p><p>BACKJUMP stops at open branches (LS) only if they correspond to some literal l which is bound by the quantifier q and such that |l| occurs in the current working reason wr (OCCURS(|l|, wr)=TRUE). Also, when popping records l, FL, r such that l occurs in the working reason, the procedure UPDATEREASON is invoked to update the current working reason wr. As described in Section 2, all the literals bound by q that are not in the current working reason are irrelevant to the current conflict/solution and are simply popped from Γ without further ado.</p><formula xml:id="formula_4">STRUQS[BJ,VE](ϕ, Γ) stop ← FALSE while ¬stop do PROPAGATE(ϕ, Γ) if ISTRUE(ϕ) then result ← TRUE stop ← BACKJUMP(ϕ, Γ, ∀) else if ISFALSE(ϕ) then result ← FALSE stop ← BACKJUMP(ϕ, Γ, ∃) else if PREFERSEARCH(ϕ) then SEARCH(ϕ, Γ) else ELIMINATE(ϕ, Γ) return result</formula><p>On top of the basic algorithms of Figure <ref type="figure" target="#fig_0">1</ref>, we define five different versions of STRUQS: Three "single" versions, namely STRUQS[BJ], STRUQS[BT], and STRUQS[VE], and two "blended" ones, namely STRUQS[BT,VE] and STRUQS[BJ,VE]. The single solvers implement basic reasoning algorithms and are provided for reference purposes, while the blended ones implement our structural approach. <ref type="foot" target="#foot_1">3</ref> The pseudo-code of STRUQS[BJ,VE] is detailed in Figure <ref type="figure" target="#fig_1">2</ref> where we consider some additional primitives on ϕ: ISTRUE(ϕ) returns TRUE exactly when all clauses in ϕ have been disabled; ISFALSE(ϕ) returns TRUE exactly when there is at least one contradictory clause in ϕ; finally, PREFERSEARCH(ϕ) is some heuristic to choose between search and variable elimination. The other versions of STRUQS can be obtained from the code in Figure <ref type="figure" target="#fig_1">2</ref>  We now consider the implementation of PREFERSEARCH for the blended versions of STRUQS. As discussed in Section 1, PREFERSEARCH needs to be based on parameters which are informative, yet computable without a prohibitive overhead. To this end, in PREFERSEARCH we resort to the following criteria:</p><p>1. Given the current ϕ and Γ, check if there is any existential variable x which respects CHOOSEVAR's constraints, and such that the number of clauses potentially generated by DOELIMINATE(ϕ, x) is less than the number of clauses containing x in ϕ. <ref type="formula">1</ref>) is met for some x, then consider the number of clauses where x occurs, say n x , and the number of clauses where ¬x occurs, say n ¬x , and compute the diversity of x as the product n x n ¬x ; check if the diversity of x is less than a predefined threshold div.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">If condition (</head><p>Notice that, when checking for conditions <ref type="bibr" target="#b0">(1)</ref> we compute an upper bound on the number of clauses generated as n x n ¬x , and we stop checking when the first variable respecting both conditions is found. If both conditions above are met for some x, then PREFERSEARCH returns FALSE, and CHOOSEVAR is instructed to return x. If either condition is not met, then PREFERSEARCH returns TRUE. In this case, CHOOSELIT tries to pick a literal l which respects CHOOSELIT's constraints, and such that |l| is a node in the neighborhood of some variable x tested during the last call to PREFERSEARCH. If no such literal can be found, then CHOOSELIT returns a literal l such that |l| has the maximum degree among all the candidate literals of ϕ.</p><p>We mention here that condition (1) is proposed in <ref type="bibr" target="#b5">[6]</ref> to control variable elimination during preprocessing of plain Boolean encodings, and diversity is introduced in <ref type="bibr" target="#b15">[16]</ref> to efficiently account for structure of Boolean formulas. Intuitively, in our implementation condition (1) provides the main feedback that implicitly considers the treewidth of the current formula: If variable elimination becomes less efficient, then this means that the structure of the current QBF is probably less amenable to this kind of approach. Condition (2) fine tunes (1): Whenever some variable x meets condition (1), but n x n ¬x is too large, eliminating x could be overwhelmingly slow. Finally, the search heuristic in CHOOSELIT is modified in order to use search for breaking large clusters of tightly connected variables. If this cannot be done, then CHOOSELIT falls back to assigning the variable which is most constrained.</p><p>4 Putting the structural approach to the test All the experimental results that we present are obtained on a family of identical Linux workstations comprised of 10 Intel Core 2 Duo 2.13 GHz PCs with 4GB of RAM. The resources granted to the solvers are always 600s of CPU time and 3GB of memory. To compare the solvers we use the QBFEVAL'08 dataset, which is comprised of 3326 formulas divided into 17 suites and 71 families (suites may be comprised of more than one family). All the formulas considered are QBF encodings of some automated reasoning task <ref type="bibr" target="#b13">[14]</ref>. In the following, we say that solver A dominates solver B whenever the set of problems solved by A is a superset of the problems solved by B; we say that two solvers are incomparable when neither one dominates the other.</p><p>Our first experiment aims to provide an empirical explanation on why alternating between search and resolution can be effective. In Figure <ref type="figure" target="#fig_2">3 (a,b</ref>) we present two plots showing the connection between the behaviour of STRUQS -as dictated by PREFERSEARCH -and the treewidth <ref type="foot" target="#foot_2">4</ref> of the input formula as it is modified during the solution process. steps, of which about 25% are search steps. Another interesting phenomenon is that even when search is prevailing -for t w p (ϕ) values roughly in between 75 and 25 -PREFERSEARCH still gives a chance to variable elimination. In these cases, variable elimination plays essentially the same role of unit propagation, i.e., it stops in advance the exploration of irrelevant portions of the search space.</p><p>In the above experiment, PREFERSEARCH turns out to be effective in switching between variable elimination and search with a specific value of the threshold div (2000). Since different values of div influence the behaviour of PREFERSEARCH, it is reasonable to ask how much a particular setting of div will influence the performance of STRUQS, if at all, and which is the best setting, at least in the dataset that we consider. In figure <ref type="figure" target="#fig_2">3</ref> (c) we present the result of running STRUQS[BJ,VE] with various settings of the parameter div on the formulas in the QBFEVAL'08 dataset which cannot be solved by either STRUQS[VE] or STRUQS[BJ] alone (660 formulas). In particular, we consider an initial value div = 125 and we increase it by a ×2 factor until div = 16000, each time running STRUQS[BJ,VE] on the above dataset. The plot in Figure <ref type="figure" target="#fig_2">3</ref> clearly shows that (i) div ≈ 2000 appears to be the best setting in the QBFEVAL'08 dataset, and that (ii) only 15 instances separate the performance of the best STRUQS[BJ,VE] setting (div = 2000) with respect to the worst one (div = 125). In all the experiments that we show hereafter div is fixed to 2000, but we conjecture that while tuning div helps in making STRUQS faster in some cases, relatively small changes in the number of problems solved are to be expected.</p><p>As we anticipated, there is a number of instances that can be solved by STRUQS[BJ,VE], but cannot be solved by the corresponding single solvers. Our next experiment is to compare all STRUQS versions to see whether blended solvers have an edge over single ones. Indeed, a quick glance at the results shown in Table <ref type="table" target="#tab_1">1</ref>   In Table <ref type="table">2</ref> we conclude this section by comparing STRUQS[BJ,VE] with stateof-the-art QBF solvers. We have considered all the competitors of QBFEVAL'08, namely AQME, QUBE6.1, NENOFEX, QUANTOR, and SSOLVE. To them, we have added the solvers SKIZZO <ref type="bibr" target="#b0">[1]</ref> which is representative of skolemization-based approaches, QUBE3.0 <ref type="bibr" target="#b6">[7]</ref> which is the same as QUBE6.1 but without preprocessing, YQUAFFLE <ref type="bibr" target="#b17">[18]</ref> and 2CLSQ <ref type="bibr" target="#b16">[17]</ref> which are also search-based solvers, and QM-RES <ref type="bibr" target="#b11">[12]</ref> which features symbolic variable elimination. Although STRUQS[BJ,VE] is just a proof-of-concept solver, Table <ref type="table">2</ref> reveals that it would have ranked third best considering only the participants to QBFEVAL'08, and it ranks as fourth best in Table <ref type="table">2</ref>. Moreover, there are 24 instances that can be solved only by</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Pseudo-code of STRUQS basic routines.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2: Pseudo-code of STRUQS[BJ,VE].</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: (a) Number of reasoning steps (x axis) vs. approximated treewidth value (y axis) in STRUQS[VE] (triangles) and STRUQS[BJ] (dots). (b) As (a), but describing the alternation of search (dots) and variable elimination (triangles) steps inside STRUQS[BJ,VE]. The number of reasoning steps corresponds to the number of LS-and VE-type records pushed on Γ. In particular, we consider the sequence of QBFs ϕ1, ϕ2, . . . where ϕ1 is the input QBF, and ϕi+1 is obtained from ϕi as follows. If ϕi does not correspond to a conflict or a solution, then ϕi+1 is the result of a destructive update of ϕi corresponding to (i) unit propagation and (ii) variable elimination or search. If ϕi is a conflict or a solution, then ϕi+1 is the formula corresponding to the node where STRUQS backtracks to. For all ϕ1, ϕ2, . . ., approximated treewidth t wp(ϕi) is such that twp(ϕi) ≤ t wp(ϕi). (c) Number of formulas solved (y axis) vs. div parameter value (x axis) in STRUQS[BJ,VE].</figDesc><graphic coords="10,118.63,127.79,123.34,110.38" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head></head><label></label><figDesc>cannot solve, where the bulk of such problems (121) is from the suite Pan: in these formulas, condition (1) of PREFERSEARCH is almost always unmet, and yet they turn out to be very difficult for search. Relaxing condition (1) of PREFERSEARCH can have positive effects on these formulas, but it can also severely degrade the performance of STRUQS[BT,VE] on other suites. STRUQS[BJ,VE] dominates STRUQS[BT,VE] and STRUQS[BT], but is incomparable with STRUQS[BJ] and STRUQS[VE]. In particular, there are 52 problems solved by STRUQS[BJ] that STRUQS[BJ,VE] cannot solve, whereof 40 are from the family blackbox-01X-QBF. These instances are characterized by the largest number of quantifier blocks among formulas in the dataset, and search is already quite efficient on them. STRUQS[VE] can solve 68 formulas on which STRUQS[BJ,VE] fails, of which 67 are from the suite Pan and have the same peculiarities mentioned about STRUQS[BT,VE].</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>as follows. If PREFERSEARCH always returns TRUE, then we obtain the search solver STRUQS[BJ], and if it always returns FALSE, then we obtain the variable elimination solver STRUQS[VE]. Replacing BACKJUMP with BACKTRACK, we obtain STRUQS[BT,VE], and if we further assume that PREFERSEARCH always returns TRUE, then we obtain STRUQS[BT].</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 1 :</head><label>1</label><figDesc>The plots have been obtained by running various versions of STRUQS on the instance test5 quant5 -family jmc quant, suite Katz in the QBFEVAL'08 dataset. We consider test5 quant5 because it is the smallest instance (358 variables, 941 clauses, 3 quantifier blocks) which is solved by STRUQS[BJ,VE], and it is not solved by STRUQS[BJ] and STRUQS[VE]. Looking at Figure3(a), we can see that STRUQS[VE] (triangle dots) is able to decrease slightly treewidth (from an initial estimate of 96 to a final estimate of 86), but it can go as far as a few hundred steps before exhausting resources. On the other hand, STRUQS[BJ] (circle dots) can decrease substantially treewidth, but it gets trapped into structurally simpler subproblems, without managing to solve the input QBF after about 9 × 10 6 steps, when it reaches the time limit.5 From Figure3(b) we can see that STRUQS[BJ,VE] changes its behavior according to the current value of treewidth, i.e., PREFERSEARCH implicitly takes into account structure. In the first 206 steps, only variable elimination is performed (triangle dots). Then, as this approach becomes untenable, search (circle dots) is exploited to obtain structurally simpler subproblems. Comparing the two plots, it is clear that PREFERSEARCH prevents search to go "too deep", because as soon as t w p (ϕ i ) becomes small, PREFERSEARCH reckons that variable elimination alone can deal with ϕ i . Overall, STRUQS[BJ,VE] solves test5 quant5 in less than 4 × 10 5 Comparison of STRUQS versions considering the number of problems solved ("#"), the cumulative CPU seconds spent ("Time"), the cumulative number of search ("#LS") and variable elimination ("#VE") steps performed on solved problems.</figDesc><table><row><cell>Solver</cell><cell></cell><cell></cell><cell>Performance</cell><cell></cell></row><row><cell></cell><cell>#</cell><cell>Time</cell><cell cols="2">#LS (×10 5 ) #VE (×10 5 )</cell></row><row><cell>STRUQS[BJ,VE]</cell><cell>1304</cell><cell>63141</cell><cell>656</cell><cell>1407</cell></row><row><cell>STRUQS[BT,VE]</cell><cell>1019</cell><cell>41900</cell><cell>1744</cell><cell>1731</cell></row><row><cell>STRUQS[BJ]</cell><cell cols="2">614 31543</cell><cell>11478</cell><cell>-</cell></row><row><cell>STRUQS[VE]</cell><cell cols="2">528 12834</cell><cell>-</cell><cell>3</cell></row><row><cell>STRUQS[BT]</cell><cell cols="2">380 10855</cell><cell>35594</cell><cell>-</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head></head><label></label><figDesc>reveals that blended solvers are always superior to single ones. In more detail, STRUQS[BT] can solve 11% of the dataset, STRUQS[VE] can deal with 16% of it, and STRUQS[BJ] tops at 18%. Only 273 problems (8% of the dataset) are solved by both STRUQS[BT] and STRUQS[VE], which are incomparable. On the other hand, STRUQS[BJ] dominates STRUQS[BT] and it is incomparable with STRUQS[VE]. As for the blended versions, we see that STRUQS[BT,VE] is more efficient than all the single versions: It can solve 31% of the dataset, which is more than the set of problems solved by at least one of STRUQS[BT] and STRUQS[VE] (635). STRUQS[BJ,VE] turns out to be the most efficient among STRUQS versions: It can solve 39% of the dataset, which is also more than the set of problems solved by at least one of STRUQS[BJ] and STRUQS[VE] (800). If we normalize the number of search steps performed by the solvers considering the problems that are solved, we see a 10× gap between STRUQS[BT,VE] and STRUQS[BJ], while the same gap between STRUQS[BJ] and STRUQS[BT] is only 5×. This means that combining search and variable elimination turns to be efficient per se, and even more efficient than boosting search with backjumping. If we look at variable elimination steps, we can see a substantial increase in the normalized number of steps: nearly 300× (resp. 200×) gap between STRUQS[VE] and STRUQS[BT,VE] (resp. STRUQS[BJ,VE]). Indeed, variable elimination is used more in STRUQS[BT,VE] and STRUQS[BJ,VE] than in STRUQS[VE], but this happens on subproblems that are structurally simpler, as there is only a 1.7× (resp. 2×) gap in normalized CPU time between STRUQS[VE] and STRUQS[BT,VE] (resp. STRUQS[BJ,VE]). Notice also that STRUQS[BJ,VE] performs less search and variable elimination steps than STRUQS[BT,VE], and this appears to be the net effect of backjumping. One last set of considerations about Table 1 regards dominance relationships. In particular, STRUQS[BT,VE] is incomparable with both STRUQS[BT] and STRUQS[VE]. In the case of STRUQS[BT], there are 6 problems in the suite Ansotegui which can be solved by STRUQS[BT], but not by STRUQS[BT,VE]. Indeed, the size of these problems is such that variable elimination becomes prohibitive too quickly for PREFERSEARCH to notice. STRUQS[VE] can solve 162 problems that STRUQS[BT,VE]</figDesc><table /></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_0">Case<ref type="bibr" target="#b0">(1)</ref> will not apply unless terms are learned, and thus unit propagation may involve universal variables as well -see<ref type="bibr" target="#b6">[7]</ref> for the technical details.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="3" xml:id="foot_1">The source code of STRUQS is available at http://www.mind-lab.it/projects.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="4" xml:id="foot_2">More precisely, we consider an approximation of treewidth, computed as described in<ref type="bibr" target="#b14">[15]</ref>.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_3">Only the first 10 3 steps are shown in plots of Figure3 (a,b). The hidden portions of STRUQS[BJ] and STRUQS[BJ,VE] behave as they do in the last few hundred steps shown.</note>
		</body>
		<back>
			<div type="annex">
<div xmlns="http://www.tei-c.org/ns/1.0" />			</div>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">sKizzo: a Suite to Evaluate and Certify QBFs</title>
		<author>
			<persName><forename type="first">M</forename><surname>Benedetti</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">20th Int.l. Conf. on Automated Deduction</title>
				<imprint>
			<date type="published" when="2005">2005</date>
			<biblScope unit="volume">3632</biblScope>
			<biblScope unit="page" from="369" to="376" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Resolve and Expand</title>
		<author>
			<persName><forename type="first">A</forename><surname>Biere</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">7th Intl. Conf. on Theory and Applications of Satisfiability Testing</title>
				<imprint>
			<date type="published" when="2004">2004</date>
			<biblScope unit="volume">3542</biblScope>
			<biblScope unit="page" from="59" to="70" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">A Linear-Time Algorithm for Finding Tree-Decompositions of Small Treewidth</title>
		<author>
			<persName><forename type="first">H</forename><surname>Bodlaender</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SIAM J. of Computation</title>
		<imprint>
			<biblScope unit="volume">25</biblScope>
			<biblScope unit="issue">6</biblScope>
			<biblScope unit="page" from="1305" to="1317" />
			<date type="published" when="1996">1996</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">An algorithm to evaluate quantified boolean formulae</title>
		<author>
			<persName><forename type="first">M</forename><surname>Cadoli</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Giovanardi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Schaerf</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">15th Nat.l Conf. on Artificial Intelligence</title>
				<imprint>
			<date type="published" when="1998">1998</date>
			<biblScope unit="page" from="262" to="267" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">From Pebble Games to Tractability: An Ambidextrous Consistency Algorithm for Quantified Constraint Satisfaction</title>
		<author>
			<persName><forename type="first">H</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Dalmau</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">proc. of 19th Int.l workshop on Computer Science Logic</title>
				<meeting>of 19th Int.l workshop on Computer Science Logic</meeting>
		<imprint>
			<date type="published" when="2005">2005</date>
			<biblScope unit="volume">3634</biblScope>
			<biblScope unit="page" from="232" to="247" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Effective Preprocessing in SAT through Variable and Clause Elimination</title>
		<author>
			<persName><forename type="first">N</forename><surname>Eén</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Biere</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">8th Intl. Conf. on Theory and Applications of Satisfiability Testing</title>
				<imprint>
			<date type="published" when="2005">2005</date>
			<biblScope unit="volume">3569</biblScope>
			<biblScope unit="page" from="61" to="75" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Clause-Term Resolution and Learning in Quantified Boolean Logic Satisfiability</title>
		<author>
			<persName><forename type="first">E</forename><surname>Giunchiglia</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Narizzano</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Tacchella</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Artificial Intelligence Research</title>
		<imprint>
			<biblScope unit="volume">26</biblScope>
			<biblScope unit="page" from="371" to="416" />
			<date type="published" when="2006">2006</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">The Complexity of Quantified Constraint Satisfaction Problems under Structural Restrictions</title>
		<author>
			<persName><forename type="first">G</forename><surname>Gottlob</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Greco</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Scarcello</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">19th Int.l Joint Conference on Artificial Intelligence</title>
				<imprint>
			<date type="published" when="2005">2005</date>
			<biblScope unit="page" from="150" to="155" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">A comparison of structural CSP decomposition methods</title>
		<author>
			<persName><forename type="first">G</forename><surname>Gottlob</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Leone</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Scarcello</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Artificial Intelligence</title>
		<imprint>
			<biblScope unit="volume">124</biblScope>
			<biblScope unit="page" from="243" to="282" />
			<date type="published" when="2000">2000</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Resolution for Quantified Boolean Formulas</title>
		<author>
			<persName><forename type="first">H</forename><surname>Kleine-Büning</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Karpinski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Flögel</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Information and Computation</title>
		<imprint>
			<biblScope unit="volume">117</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="12" to="18" />
			<date type="published" when="1995">1995</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Boosting Search with Variable Elimination in Constraint Optimization and Constraint Satisfaction Problems</title>
		<author>
			<persName><forename type="first">J</forename><surname>Larrosa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Dechter</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Constraints</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="issue">3</biblScope>
			<biblScope unit="page" from="303" to="326" />
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Symbolic Decision Procedures for QBF</title>
		<author>
			<persName><forename type="first">G</forename><surname>Pan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Vardi</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">10th Int.l Conf. on Principles and Practice of Constraint Programming</title>
				<imprint>
			<date type="published" when="2004">2004</date>
			<biblScope unit="page" from="453" to="467" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Fixed-Parameter Hierarchies inside PSPACE</title>
		<author>
			<persName><forename type="first">G</forename><surname>Pan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Vardi</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">21st IEEE Symposium on Logic in Computer Science</title>
				<imprint>
			<date type="published" when="2006">2006</date>
			<biblScope unit="page" from="27" to="36" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<monogr>
		<author>
			<persName><forename type="first">C</forename><surname>Peschiera</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Pulina</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Taccchella</surname></persName>
		</author>
		<ptr target="http://www.qbfeval.org/2008" />
		<title level="m">Sixth QBF solvers evaluation (QBFEVAL)</title>
				<imprint>
			<date type="published" when="2008">2008</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">Treewidth: a useful marker of empirical hardness in quantified Boolean logic encodings</title>
		<author>
			<persName><forename type="first">L</forename><surname>Pulina</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Tacchella</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">15th Int.l Conf. on Logic for Programming, Artificial Intelligence, and Reasoning</title>
				<imprint>
			<publisher>LNCS</publisher>
			<date type="published" when="2008">2008</date>
			<biblScope unit="volume">5330</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">Resolution versus search: Two strategies for sat</title>
		<author>
			<persName><forename type="first">I</forename><surname>Rish</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Dechter</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Automated Reasoning</title>
		<imprint>
			<biblScope unit="volume">24</biblScope>
			<biblScope unit="issue">1/2</biblScope>
			<biblScope unit="page" from="225" to="275" />
			<date type="published" when="2000">2000</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">Binary Clause Reasoning in QBF</title>
		<author>
			<persName><forename type="first">H</forename><surname>Samulowitz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Bacchus</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">proc. of Ninth Int.l Conference on Theory and Applications of Satisfiability Testing</title>
				<meeting>of Ninth Int.l Conference on Theory and Applications of Satisfiability Testing</meeting>
		<imprint>
			<date type="published" when="2006">2006</date>
			<biblScope unit="volume">4121</biblScope>
			<biblScope unit="page" from="353" to="367" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">Verifying the Correctness of Quantified Boolean Formula(QBF) Solvers: Theory and Practice</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Yu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Malik</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Conference on Asia South-Pacific Design Automation</title>
				<imprint>
			<date type="published" when="2005">2005</date>
			<biblScope unit="page" from="1047" to="1051" />
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
