Stable model semantics 4224978 206791994 2008-04-20T00:16:39Z 129.2.165.54 /* References */ The concept of a '''stable model''', or answer set, is used to define a declarative semantics for [[Logic programming|logic programs]] with [[negation as failure]]. This is one of several standard approaches to the meaning of negation in logic programming, along with [[Negation as failure#Completion semantics|program completion]] and the [[well-founded semantics]]. The stable model semantics is the basis of [[answer set programming]]. ==Motivation== Research on the declarative semantics of negation in logic programming was motivated by the fact that the behavior of SLDNF resolution -- the generalization of [[SLD resolution]] used by [[Prolog]] in the presence of negation in the bodies of rules -- does not fully match the [[truth tables]] familiar from classical [[propositional logic]]. Consider, for instance, the program :<math>p\ </math> :<math>r \leftarrow p,\ q</math> :<math>s \leftarrow p,\ \hbox{not } q.</math> Given this program, the query <math>p</math> will succeed, because the program includes <math>p</math> as a fact; the query <math>q</math> will fail, because it does not occur in the head of any of the rules. The query <math>r</math> will fail also, because the only rule with <math>r</math> in the head contains the subgoal <math>q</math> in its body; as we have seen, that subgoal fails. Finally, the query <math>s</math> succeeds, because each of the subgoals <math>p</math>, <math>\hbox{not } q</math> succeeds. (The latter succeeds because the corresponding positive goal <math>q</math> fails.) To sum up, the behavior of SLDNF resolution on the given program can be represented by the following truth assignment: <table COLS=$ WIDTH="20%"> <td valign="top"> <math>p</math> <br> '''T''' </td> <td valign="top"> <math>q</math> <br> '''F''' </td> <td valign="top"> <math>r</math> <br> '''F''' </td> <td valign="top"> <math>s</math> <br> '''T'''. </td> </table> On the other hand, the rules of the given program can be viewed as [[propositional formula]]s if we identify the comma with conjunction <math>\land,</math> the symbol <math>\hbox{not}</math> with negation <math>\neg,</math> and agree to treat <math>F \leftarrow G</math> as the implication <math>G \rightarrow F</math> written backwards. For instance, the last rule of the given program is, from this point of view, alternative notation for the propositional formula :<math>p \land \neg q \rightarrow s.</math> If we calculate the truth values of the rules of the program for the truth assignment shown above then we will see that each rule gets the value '''T'''. In other words, that assignment is a [[model]] of the program. But this program has also other models, for instance <table COLS=$ WIDTH="20%"> <td valign="top"> <math>p</math> <br> '''T''' </td> <td valign="top"> <math>q</math> <br> '''T''' </td> <td valign="top"> <math>r</math> <br> '''T''' </td> <td valign="top"> <math>s</math> <br> '''F'''. </td> </table> Thus one of the models of the given program is special in the sense that it correctly represents the behavior of SLDNF resolution. What are the mathematical properties of that model that make it special? An answer to this question is provided by the definition of a stable model. ==Relation to nonmonotonic logic== The meaning of negation in logic programs is closely related to two theories of [[Nonmonotonic logic|nonmonotonic reasoning]] -- [[autoepistemic logic]] and [[default logic]]. The discovery of these relationships was a key step towards the invention of the stable model semantics. The syntax of autoepistemic logic uses a [[modal operator]] that allows us to distinguish between what is true and what is believed. Michael Gelfond [1987] proposed to read <math>\hbox{not}\ p</math> in the body of a rule as "<math>p</math> is not believed", and to understand a rule with negation as the corresponding formula of autoepistemic logic. The stable model semantics, in its basic form, can be viewed as a reformulation of this idea that avoids explicit references to autoepistemic logic. In default logic, a default is similar to an [[inference rule]], except that it includes, besides its premises and conclusion, a list of formulas called justifications. A default can be used to derive its conclusion under the assumption that its justifications are consistent. Nicole Bidoit and Christine Froidevaux [1987] proposed to treat negated atoms in the bodies of rules as justifications. For instance, the rule :<math>s \leftarrow p,\ \hbox{not } q</math> can be understood as the default that allows us to derive <math>s</math> from <math>p</math> assuming that <math>\neg q</math> is consistent. The stable model semantics uses the same idea, but it does not explicitly refer to default logic. ==Stable models== The definition of a stable model below, reproduced from [Gelfond and Lifschitz, 1988], uses two conventions. First, a truth assignment is identified with the set of atoms that get the value '''T'''. For instance, the truth assignment <table COLS=$ WIDTH="20%"> <td valign="top"> <math>p</math> <br> '''T''' </td> <td valign="top"> <math>q</math> <br> '''F''' </td> <td valign="top"> <math>r</math> <br> '''F''' </td> <td valign="top"> <math>s</math> <br> '''T''' </td> </table> is identified with the set <math>\{p,s\}</math>. This convention allows us to use the set inclusion relation to compare truth assignments with each other. The smallest of all truth assignments <math>\emptyset</math> is the one that makes every atom false; the largest truth assignment makes every atom true. Second, a logic program with variables is viewed as shorthand for the set of all ground instances of its rules, that is, for the result of substituting variable-free terms for variables in the rules of the program in all possible ways. For instance, the logic programming definition of even numbers :<math>even(0)\ </math> :<math>even(s(X))\leftarrow \hbox{not } even(X)</math> is understood as the result of replacing <math>X</math> in this program by the ground terms :<math>0,\ s(0),\ s(s(0)),\dots.</math> in all possible ways. The result is the infinite ground program :<math>even(0)\ </math> :<math>even(s(0))\leftarrow \hbox{not } even(0)</math> :<math>even(s(s(0)))\leftarrow \hbox{not } even(s(0))</math> :<math>\dots</math> ===Definition=== Let <math>P</math> be a set of rules of the form :<math>A \leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> where <math>A,B_{1},\dots,B_{m},C_{1},\dots,C_{n}</math> are ground atoms. If <math>P</math> does not contain negation (<math>n=0</math> in every rule of the program) then, by definition, the only stable model of <math>P</math> is its model that is minimal relative to set inclusion.<ref>This approach to the semantics of logic programs without negation is due to Maarten van Emden and [[Robert Kowalski]] [1976].</ref> (Any program without negation has exactly one minimal model.) To extend this definition to the case of programs with negation, we need the auxiliary concept of the reduct, defined as follows. For any set <math>I</math> of ground atoms, the ''reduct'' of <math>P</math> relative to <math>I</math> is the set of rules without negation obtained from <math>P</math> by first dropping every rule such that at least one of the atoms <math>C_i</math> in its body :<math>B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> belongs to <math>I</math>, and then dropping the parts <math>\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> from the bodies of all remaining rules. We say that <math>I</math> is a ''stable model'' of <math>P</math> if <math>I</math> is the stable model of the reduct of <math>P</math> relative to <math>I</math>. (Since the reduct does not contain negation, its stable model has been already defined.) As the term "stable model" suggests, every stable model of <math>P</math> is a model of <math>P</math>. ===Example=== To illustrate these definitions, let us check that <math>\{p,s\}</math> is a stable model of the program :<math>p\ </math> :<math>r \leftarrow p,\ q</math> :<math>s \leftarrow p,\ \hbox{not } q.</math> The reduct of this program relative to <math>\{p,s\}</math> is :<math>p\ </math> :<math>r \leftarrow p,\ q</math> :<math>s \leftarrow p.</math> (Indeed, since <math>q\not\in\{p,s\}</math>, the reduct is obtained from the program by dropping the part <math>\hbox{not } q.\ </math>) The stable model of the reduct is <math>\{p,s\}</math>. (Indeed, this set of atoms satisfies every rule of the reduct, and it has no proper subsets with the same property.) Thus after computing the stable model of the reduct we arrived at the same set <math>\{p,s\}</math> that we started with. Consequently, that set is a stable model. Checking in the same way the other 15 sets consisting of the atoms <math>p,\ q,\ r,\ s</math> shows that this program has no other stable models. For instance, the reduct of the program relative to <math>\{p,q,r\}</math> is :<math>p\ </math> :<math>r \leftarrow p,\ q.</math> The stable model of the reduct is <math>\{p\}</math>, which is different from the set <math>\{p,q,r\}</math> that we started with. ===Programs without a unique stable model=== A program with negation may have many stable models or no stable models. For instance, the program :<math>p \leftarrow \hbox{not } q</math> :<math>q \leftarrow \hbox{not } p</math> has two stable models <math>\{p\}</math>, <math>\{q\}</math>. The one-rule program :<math>p \leftarrow \hbox{not } p</math> has no stable models. If we think of the stable model semantics as a description of the behavior of [[Prolog]] in the presence of negation then programs without a unique stable model can be judged unsatisfactory: they do not provide an unambiguous specification for Prolog-style query answering. For instance, the two programs above are not reasonable as Prolog programs -- SLDNF resolution does not terminate on them. But the use of stable models in [[answer set programming]] provides a different perspective on such programs. In that programming paradigm, a given search problem is represented by a logic program so that the stable models of the program correspond to solutions. Then programs with many stable models correspond to problems with many solutions, and programs without stable models correspond to unsolvable problems. For instance, the [[eight queens puzzle]] has 92 solutions; to solve it using answer set programming, we encode it by a logic program with 92 stable models. From this point of view, logic programs with exactly one stable model are rather special in answer set programming, like polynomials with exactly one root in algebra. ==Properties of the stable model semantics== In this section, as in the [[#Definition|definition of a stable model]] above, by a logic program we mean a set of rules of the form :<math>A \leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> where <math>A,B_{1},\dots,B_{m},C_{1},\dots,C_{n}</math> are ground atoms. ''Head atoms:'' If an atom <math>A</math> belongs to a stable model of a logic program <math>P</math> then <math>A</math> is the head of one of the rules of <math>P</math>. ''Minimality:'' Any stable model of a logic program <math>P</math> is minimal among the models of <math>P</math> relative to set inclusion. ''The antichain property:'' If <math>I</math> and <math>J</math> are stable models of the same logic program then <math>I</math> is not a proper subset of <math>J</math>. In other words, the set of stable models of a program is an [[antichain]]. ''NP-completeness:'' Testing whether a finite logic program has a stable model is [[NP-complete]]. ==Relation to other theories of negation as failure== ===Program completion=== Any stable model of a finite ground program is not only a model of the program itself, but also a model of its [[Negation as failure#Completion semantics|completion]] [Marek and Subrahmanian, 1989]. The converse, however, is not true. For instance, the completion of the one-rule program :<math>p \leftarrow p</math> is the tautology <math>p \leftrightarrow p</math>. The model <math>\emptyset</math> of this tautology is stable, but its other model <math>\{p\}\ </math> is not. François Fages [1994] found a syntactic condition on logic programs that eliminates such counterexamples and guarantees the stability of every model of the program's completion. The programs that satisfy his condition are called ''tight''. Fangzhen Lin and Yuting Zhao [2004] showed how to make the completion of a nontight program stronger so that all its nonstable models will be eliminated. The additional formulas that they add to the completion are called ''loop formulas''. ===Well-founded semantics=== The [[well-founded semantics|well-founded model]] of a logic program partitions all ground atoms into three sets: true, false and unknown. If an atom is true in the well-founded model of <math>P</math> then it belongs to every stable model of <math>P</math>. The converse, generally, does not hold. For instance, the program :<math>p \leftarrow \hbox{not } q</math> :<math>q \leftarrow \hbox{not } p</math> :<math>r\leftarrow p</math> :<math>r\leftarrow q</math> has two stable models, <math>\{p,r\}</math> and <math>\{q,r\}</math>. Even though <math>r</math> belongs to both of them, its value in the well-founded model is ''unknown''. Furthermore, if an atom is false in the well-founded model of a program then it does not belong to any of its stable models. Thus the well-founded model of a logic program provides a lower bound on the intersection of its stable models and an upper bound on their union. ==Strong negation== ===Representing incomplete information=== From the perspective of [[knowledge representation]], a set of ground atoms can be thought of as a description of a complete state of knowledge: the atoms that belong to the set are known to be true, and the atoms that do not belong to the set are known to be false. A possibly ''incomplete'' state of knowledge can be described using a consistent but possibly incomplete set of literals; if an atom <math>p</math> does not belong to the set and its negation does not belong to the set either then it is not known whether <math>p</math> is true. In the context of logic programming, this idea leads to the need to distinguish between two kinds of negation -- ''[[negation as failure]]'', discussed above, and ''strong negation'', which is denoted here by <math>\sim</math>.<ref>Gelfond and Lifschitz [1991] call the second negation ''classical'' and denote it by <math>\neg</math>.</ref> The following example, illustrating the difference between the two kinds of negation, belongs to [[John McCarthy (computer scientist)|John McCarthy]]. A school bus may cross railway tracks under the condition that there is no approaching train. If we do not necessarily know whether a train is approaching then the rule using negation as failure :<math>\hbox{Cross} \leftarrow \hbox{not Train}</math> is not an adequate representation of this idea: it says that it's okay to cross ''in the absence of information'' about an approaching train. The weaker rule, that uses strong negation in the body, is preferable: :<math>\hbox{Cross} \leftarrow \,\sim\hbox{Train}.</math> It says that it's okay to cross if we ''know'' that no train is approaching. ===Coherent stable models=== To incorporate strong negation in the theory of stable models, Gelfond and Lifschitz [1991] allowed each of the expressions <math>A</math>, <math>B_i</math>, <math>C_i</math> in a rule :<math>A \leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> to be either an atom or an atom prefixed with the strong negation symbol. Instead of stable models, this generalization uses ''answer sets'', which may include both atoms and atoms prefixed with strong negation. An alternative approach [Ferraris and Lifschitz, 2005] treats strong negation as a part of an atom, and it does not require any changes in the definition of a stable model. In this theory of strong negation, we distinguish between atoms of two kinds, ''positive'' and ''negative'', and assume that each negative atom is an expression of the form <math>\sim A</math>, where <math>A\ </math> is a positive atom. A set of atoms is called ''coherent'' if it does not contain "complementary" pairs of atoms <math>\ A,\sim A</math>. Coherent stable models of a program are identical to its consistent answer sets in the sense of [Gelfond and Lifschitz, 1991]. For instance, the program :<math>p \leftarrow \hbox{not } q</math> :<math>q \leftarrow \hbox{not } p</math> :<math>r\ </math> :<tt><math>\sim r\leftarrow \hbox{not }p</math></tt> has two stable models, <math>\{p,r\}\ </math> and <math>\ \{q,r,\sim r\}</math>. The first model is coherent; the second is not, because it contains both the atom <math>\ r</math> and the atom <math>\ \sim r</math>. ===Closed world assumption=== According to [Gelfond and Lifschitz, 1991], the [[closed world assumption]] for a predicate <math>p\ </math> can be expressed by the rule :<math>\sim p(X_1,\dots,X_n)\leftarrow\hbox{not }p(X_1,\dots,X_n)</math> (the relation <math>p\ </math> does not hold for a tuple <math>X_1,\dots,X_n</math> if there is no evidence that it does). For instance, the stable model of the program :<math>p(a,b)\ </math> :<math>p(c,d)\ </math> :<math>\sim p(X,Y)\leftarrow\hbox{not }p(X,Y)</math> consists of 2 positive atoms :<math>p(a,b),\ p(c,d)\ </math> and 14 negative atoms :<math>\sim p(a,a),\ \sim(a,c),\ \dots</math> -- the strong negations of all other positive ground atoms formed from <math>p,\ a,\ b,\ c,\ d</math>. A logic program with strong negation can include the closed world assumption rules for some of its predicates and leave the other predicates in the realm of the [[open world assumption]]. ==Programs with constraints== The stable model semantics has been generalized to many kinds of logic programs other than collections of "traditional" rules discussed above -- rules of the form :<math>A \leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> where <math>A,B_{1},\dots,B_{m},C_{1},\dots,C_{n}</math> are atoms. One simple extension allows programs to contain ''constraints'' -- rules with the empty head: :<math>\leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}.</math> Recall that a traditional rule can be viewed as alternative notation for a propositional formula if we identify the comma with conjunction <math>\land,</math> the symbol <math>\hbox{not}</math> with negation <math>\neg,</math> and agree to treat <math>F \leftarrow G</math> as the implication <math>G \rightarrow F</math> written backwards. To extend this convention to constraints, we identify a constraint with the negation of the formula corresponding to its body: :<math>\neg(B_{1}\land\cdots\land B_{m}\land\neg C_{1}\land\cdots\land\neg C_{n}).</math> We can now extend the definition of a stable model to programs with constraints. As in the case of traditional programs, we begin with programs that do not contain negation. Such a program may be inconsistent; then we say that it has no stable models. If such a program <math>P</math> is consistent then <math>P</math> has a unique minimal model, and that model is considered the only stable model of <math>P</math>. Next, stable models of arbitrary programs with constraints are defined using reducts, formed in the same way as in the case of traditional programs (see the [[#Definition of a stable model|definition of a stable model]] above.) A set <math>I</math> of atoms is a ''stable model'' of a program <math>P</math> with constraints if the reduct of <math>P</math> relative to <math>I</math> has a stable model, and that stable model equals <math>I</math>. The [[#Properties of the stable model semantics|properties of the stable model semantics]] stated above for traditional programs hold in the presence of constraints as well. Constraints play an important role in [[answer set programming]] because adding a constraint to a logic program <math>P</math> affects the collection of stable models of <math>P</math> in a very simple way: it eliminates the stable models that violate the constraint. In other words, for any program <math>P</math> with constraints and any constraint <math>C</math>, the stable models of <math>P\cup\{C\}</math> can be characterized as the stable models of <math>P</math> that satisfy <math>C</math>. ==Disjunctive programs== In a ''disjunctive rule'', the head may be the disjunction of several atoms: :<math>A_1;\dots;A_k \leftarrow B_{1},\dots,B_{m},\hbox{not } C_{1},\dots,\hbox{not } C_{n}</math> (the semicolon is viewed as alternative notation for disjunction <math>\lor</math>). Traditional rules correspond to <math>k=1</math>, and [[#Programs with constraints|constraints]] to <math>k=0</math>. To extend the stable model semantics to disjunctive programs [Gelfond and Lifschitz, 1991], we first define that in the absence of negation (<math>n=0</math> in each rule) the stable models of a program are its minimal models. The definition of the reduct for disjunctive programs remains [[#Definition|the same as before]]. A set <math>I</math> of atoms is a ''stable model'' of <math>P</math> if <math>I</math> is a stable model of the reduct of <math>P</math> relative to <math>I</math>. For example, the set <math>\{p,r\}</math> is a stable model of the disjunctive program :<math>p;q\ </math> :<math>r\leftarrow \hbox{not}\ q</math> because it is one of two minimal models of the reduct :<math>p;q\ </math> :<math>r.\ </math> The program above has one more stable model, <math>\{q\}</math>. As in the case of traditional programs, each element of any stable model of a disjunctive program <math>P</math> is a head atom of <math>P</math>, in the sense that it occurs in the head of one of the rules of <math>P</math>. As in the traditional case, the stable models of a disjunctive program are minimal and form an antichain. Testing whether a finite disjunctive program has a stable model is [[Polynomial hierarchy|<math>\Sigma_2^{\rm P}</math>-complete]] [Eiter and Gottlob, 1993]. ==Stable models of a set of propositional formulas== Rules, and even [[#Disjunctive programs|disjunctive rules]], have a rather special syntactic form, in comparison with arbitrary [[propositional formula]]s. Each disjunctive rule is essentially an implication such that its [[Antecedent (logic)|antecedent]] (the body of the rule) is a conjunction of [[Literal (mathematical logic)|literals]], and its [[consequent]] (head) is a disjunction of atoms. David Pearce [1997] and Paolo Ferraris [2005] showed how to extend the definition of a stable model to sets of arbitrary propositional formulas. This generalization has applications to [[answer set programming]]. Pearce's formulation looks very different from the [[#Definition|original definition of a stable model]]. Instead of reducts, it refers to ''equilibrium logic'' -- a system of [[nonmonotonic logic]] based on [[Kripke semantics|Kripke models]]. Ferraris's formulation, on the other hand, is based on reducts, although the process of constructing the reduct that it uses differs from the one [[#Definition|described above]]. The two approaches to defining stable models for sets of propositional formulas are equivalent to each other. ===General definition of a stable model=== According to [Ferraris, 2005], the ''reduct'' of a propositional formula <math>F</math> relative to a set <math>I</math> of atoms is the formula obtained from <math>F</math> by replacing each maximal subformula that is not satisfied by <math>I</math> with the logical constant <math>\bot</math> (false). The ''reduct'' of a set <math>P</math> of propositional formulas relative to <math>I</math> consists of the reducts of all formulas from <math>P</math> relative to <math>I</math>. As in the case of disjunctive programs, we say that a set <math>I</math> of atoms is a ''stable model'' of <math>P</math> if <math>I</math> is minimal (with respect to set inclusion) among the models of the reduct of <math>P</math> relative to <math>I</math>. For instance, the reduct of the set :<math>\{p,\ p\land q \rightarrow r,\ p \land \neg q \rightarrow s\}</math> relative to <math>\{p,s\}</math> is :<math>\{p,\ \bot\rightarrow \bot,\ p \land \neg\bot \rightarrow s\}.</math> Since <math>\{p,s\}</math> is a model of the reduct, and the proper subsets of that set are not models of the reduct,<math>\{p,s\}</math> is a stable model of the given set of formulas. We [[#Example|have seen]] that <math>\{p,s\}</math> is also a stable model of the same formula, written in logic programming notation, in the sense of the [[#Definition|original definition]]. This is an instance of a general fact: in application to a set of (formulas corresponding to) traditional rules, the definition of a stable model according to Ferraris is equivalent to the original definition. The same is true, more generally, for [[#Programs with constraints|programs with constraints]] and for [[#Disjunctive programs|disjunctive programs]]. ===Properties of the general stable model semantics=== The theorem asserting that all elements of any stable model of a program <math>P</math> are head atoms of <math>P</math> can be extended to sets of propositional formulas, if we define head atoms as follows. An atom <math>A</math> is a ''head atom'' of a set <math>P</math> of propositional formulas if at least one occurrence of <math>A</math> in a formula from <math>P</math> is neither in the scope of a negation nor in the antecedent of an implication. (We assume here that equivalence is treated as an abbreviation, not a primitive connective.) The [[#Properties of the stable model semantics|minimality and the antichain property of stable models]] of a traditional program do not hold in the general case. For instance, (the singleton set consisting of) the formula :<math>p\lor\neg p</math> has two stable models, <math>\empty</math> and <math>\{p\}</math>. The latter is not minimal, and it is a proper superset of the former. Testing whether a finite set of propositional formulas has a stable model is [[Polynomial hierarchy|<math>\Sigma_2^{\rm P}</math>-complete]], as in the case of [[#Disjunctive programs|disjunctive programs]]. ==Notes== {{Reflist}} ==References== * N. Bidoit and C. Froidevaux [1987] ''Minimalism subsumes default logic and circumscription''. In: Proceedings of LICS-87, pages 89-97. * T. Eiter and G. Gottlob [1993] ''[http://www.kr.tuwien.ac.at/staff/eiter/et-archive/ilps93.ps.gz Complexity results for disjunctive logic programming and application to nonmonotonic logics]''. In: Proceedings of ILPS-93, pages 266-278. * M. van Emden and [[Robert Kowalski|R. Kowalski]] [1976] ''[http://www.doc.ic.ac.uk/~rak/papers/kowalski-van_emden.pdf The semantics of predicate logic as a programming language]''. Journal of ACM, Vol. 23, pages 733-742. * F. Fages [1994] ''Consistency of Clark's completion and existence of stable models''. Journal of Methods of Logic in Computer Science, Vol. 1, pages 51-60. * P. Ferraris [2005] ''Answer sets for propositional theories''. In: Proceedings of LPNMR-05, pages 119-131. * P. Ferraris and V. Lifschitz [2005] ''[http://www.cs.utexas.edu/users/vl/papers/mfasp.ps Mathematical foundations of answer set programming]''. In: We Will Show Them! Essays in Honour of Dov Gabbay, King's College Publications, pages 615-664. * M. Gelfond [1987] ''[http://www.cs.ttu.edu/~mgelfond/papers/autoepistemic.pdf On stratified autoepistemic theories]''. In: Proceedings of AAAI-87, pages 207-211. * M. Gelfond and V. Lifschitz [1988] ''[http://www.cs.utexas.edu/users/vl/papers/stable.ps The stable model semantics for logic programming]''. In: Proceedings of the Fifth International Conference on Logic Programming (ICLP), pages 1070-1080. * M. Gelfond and V. Lifschitz [1991] ''[http://www.cs.utexas.edu/users/vl/papers/clnegdd.ps Classical negation in logic programs and disjunctive databases]''. New Generation Computing, Vol. 9, pages 365-385. * S. Hanks and [[Drew McDermott|D. McDermott]] [1987] ''Nonmonotonic logic and temporal projection''. Artificial Intelligence, Vol. 33, pages 379-412. * F. Lin and Y. Zhao [2004] ''[http://www.cs.ust.hk/faculty/flin/papers/assat-aij-revised.pdf ASSAT: Computing answer sets of a logic program by SAT solvers]''. Artificial Intelligence, Vol. 157, pages 115-137. * V. Marek and V.S. Subrahmanian [1989] ''The relationship between logic program semantics and non-monotonic reasoning''. In: Proceedings of ICLP-89, pages 600-617. * D. Pearce [1997] ''A new logical characterization of stable models and answer sets''. In: Non-Monotonic Extensions of Logic Programming (Lecture Notes in Artificial Intelligence 1216), pages 57-70. * [[Raymond Reiter|R. Reiter]] [1980] ''A logic for default reasoning''. Artificial Intelligence, Vol. 13, pages 81-132. == See also == * [[Answer set programming]] * [[Logic programming]] * [[Negation as failure]] [[Category:Logic programming]]