Stable model semantics

From HandWiki

The concept of a stable model, or answer set, is used to define a declarative semantics for logic programs with negation as failure. This is one of several standard approaches to the meaning of negation in logic programming, along with 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]\displaystyle{ p }[/math]
[math]\displaystyle{ r \leftarrow p, q }[/math]
[math]\displaystyle{ s \leftarrow p, \operatorname{not} q. }[/math]

Given this program, the query p will succeed, because the program includes p as a fact; the query q will fail, because it does not occur in the head of any of the rules. The query r will fail also, because the only rule with r in the head contains the subgoal q in its body; as we have seen, that subgoal fails. Finally, the query s succeeds, because each of the subgoals p, [math]\displaystyle{ \operatorname{not} q }[/math] succeeds. (The latter succeeds because the corresponding positive goal q fails.) To sum up, the behavior of SLDNF resolution on the given program can be represented by the following truth assignment:

p q r s
T F F T.

On the other hand, the rules of the given program can be viewed as propositional formulas if we identify the comma with conjunction [math]\displaystyle{ \land }[/math], the symbol [math]\displaystyle{ \operatorname{not} }[/math] with negation [math]\displaystyle{ \neg }[/math], and agree to treat [math]\displaystyle{ F \leftarrow G }[/math] as the implication [math]\displaystyle{ 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]\displaystyle{ 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

p q r s
T T T F.

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 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 known. Michael Gelfond [1987] proposed to read [math]\displaystyle{ \operatorname{not} p }[/math] in the body of a rule as "[math]\displaystyle{ p }[/math] is not known", 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 with what is currently known. Nicole Bidoit and Christine Froidevaux [1987] proposed to treat negated atoms in the bodies of rules as justifications. For instance, the rule

[math]\displaystyle{ s \leftarrow p, \operatorname{not} q }[/math]

can be understood as the default that allows us to derive [math]\displaystyle{ s }[/math] from [math]\displaystyle{ p }[/math] assuming that [math]\displaystyle{ \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

p q r s
T F F T.

is identified with the set [math]\displaystyle{ \{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]\displaystyle{ \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]\displaystyle{ \operatorname{even}(0) }[/math]
[math]\displaystyle{ \operatorname{even}(s(X))\leftarrow \operatorname{not} \operatorname{even}(X) }[/math]

is understood as the result of replacing X in this program by the ground terms

[math]\displaystyle{ 0, s(0), s(s(0)),\dots. }[/math]

in all possible ways. The result is the infinite ground program

[math]\displaystyle{ \operatorname{even}(0) }[/math]
[math]\displaystyle{ \operatorname{even}(s(0))\leftarrow \operatorname{not} \operatorname{even}(0) }[/math]
[math]\displaystyle{ \operatorname{even}(s(s(0)))\leftarrow \operatorname{not} \operatorname{even}(s(0)) }[/math]
[math]\displaystyle{ \dots }[/math]

Definition

Let P be a set of rules of the form

[math]\displaystyle{ A \leftarrow B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math]

where [math]\displaystyle{ A,B_{1},\dots,B_{m},C_{1},\dots,C_{n} }[/math] are ground atoms. If P does not contain negation ([math]\displaystyle{ n=0 }[/math] in every rule of the program) then, by definition, the only stable model of P is its model that is minimal relative to set inclusion.[1] (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 I of ground atoms, the reduct of P relative to I is the set of rules without negation obtained from P by first dropping every rule such that at least one of the atoms [math]\displaystyle{ C_i }[/math] in its body

[math]\displaystyle{ B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math]

belongs to I, and then dropping the parts [math]\displaystyle{ \operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math] from the bodies of all remaining rules.

We say that I is a stable model of P if I is the stable model of the reduct of P relative to I. (Since the reduct does not contain negation, its stable model has been already defined.) As the term "stable model" suggests, every stable model of P is a model of P.

Example

To illustrate these definitions, let us check that [math]\displaystyle{ \{p,s\} }[/math] is a stable model of the program

[math]\displaystyle{ p }[/math]
[math]\displaystyle{ r \leftarrow p, q }[/math]
[math]\displaystyle{ s \leftarrow p, \operatorname{not} q. }[/math]

The reduct of this program relative to [math]\displaystyle{ \{p,s\} }[/math] is

[math]\displaystyle{ p }[/math]
[math]\displaystyle{ r \leftarrow p, q }[/math]
[math]\displaystyle{ s \leftarrow p. }[/math]

(Indeed, since [math]\displaystyle{ q\not\in\{p,s\} }[/math], the reduct is obtained from the program by dropping the part [math]\displaystyle{ \operatorname{not} q. }[/math]) The stable model of the reduct is [math]\displaystyle{ \{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]\displaystyle{ \{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]\displaystyle{ p, q, r, s }[/math] shows that this program has no other stable models. For instance, the reduct of the program relative to [math]\displaystyle{ \{p,q,r\} }[/math] is

[math]\displaystyle{ p }[/math]
[math]\displaystyle{ r \leftarrow p, q. }[/math]

The stable model of the reduct is [math]\displaystyle{ \{p\} }[/math], which is different from the set [math]\displaystyle{ \{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]\displaystyle{ p \leftarrow \operatorname{not} q }[/math]
[math]\displaystyle{ q \leftarrow \operatorname{not} p }[/math]

has two stable models [math]\displaystyle{ \{p\} }[/math], [math]\displaystyle{ \{q\} }[/math]. The one-rule program

[math]\displaystyle{ p \leftarrow \operatorname{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 of a stable model above, by a logic program we mean a set of rules of the form

[math]\displaystyle{ A \leftarrow B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math]

where [math]\displaystyle{ A,B_{1},\dots,B_{m},C_{1},\dots,C_{n} }[/math] are ground atoms.

Head atoms
If an atom A belongs to a stable model of a logic program P then A is the head of one of the rules of P.
Minimality
Any stable model of a logic program P is minimal among the models of P relative to set inclusion.
The antichain property
If I and J are stable models of the same logic program then I is not a proper subset of J. In other words, the set of stable models of a program is an antichain.
NP-completeness
Testing whether a finite ground 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 completion [Marek and Subrahmanian, 1989]. The converse, however, is not true. For instance, the completion of the one-rule program

[math]\displaystyle{ p \leftarrow p }[/math]

is the tautology [math]\displaystyle{ p \leftrightarrow p }[/math]. The model [math]\displaystyle{ \emptyset }[/math] of this tautology is a stable model of [math]\displaystyle{ p \leftarrow p }[/math], but its other model [math]\displaystyle{ \{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 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]\displaystyle{ P }[/math] then it belongs to every stable model of [math]\displaystyle{ P }[/math]. The converse, generally, does not hold. For instance, the program

[math]\displaystyle{ p \leftarrow \operatorname{not} q }[/math]
[math]\displaystyle{ q \leftarrow \operatorname{not} p }[/math]
[math]\displaystyle{ r\leftarrow p }[/math]
[math]\displaystyle{ r\leftarrow q }[/math]

has two stable models, [math]\displaystyle{ \{p,r\} }[/math] and [math]\displaystyle{ \{q,r\} }[/math]. Even though [math]\displaystyle{ 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]\displaystyle{ 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]\displaystyle{ p }[/math] is true or false.

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]\displaystyle{ \sim }[/math].[2] The following example, illustrating the difference between the two kinds of negation, belongs to 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]\displaystyle{ \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]\displaystyle{ \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]\displaystyle{ A }[/math], [math]\displaystyle{ B_i }[/math], [math]\displaystyle{ C_i }[/math] in a rule

[math]\displaystyle{ A \leftarrow B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{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]\displaystyle{ {\sim} A }[/math], where [math]\displaystyle{ A }[/math] is a positive atom. A set of atoms is called coherent if it does not contain "complementary" pairs of atoms [math]\displaystyle{ 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]\displaystyle{ p \leftarrow \operatorname{not} q }[/math]
[math]\displaystyle{ q \leftarrow \operatorname{not} p }[/math]
[math]\displaystyle{ r }[/math]
[math]\displaystyle{ {\sim} r\leftarrow \operatorname{not}p }[/math]

has two stable models, [math]\displaystyle{ \{p,r\} }[/math] and [math]\displaystyle{ \{q,r,{\sim} r\} }[/math]. The first model is coherent; the second is not, because it contains both the atom [math]\displaystyle{ r }[/math] and the atom [math]\displaystyle{ {\sim} r }[/math].

Closed world assumption

According to [Gelfond and Lifschitz, 1991], the closed world assumption for a predicate [math]\displaystyle{ p }[/math] can be expressed by the rule

[math]\displaystyle{ \sim p(X_1,\dots,X_n)\leftarrow\operatorname{not}p(X_1,\dots,X_n) }[/math]

(the relation [math]\displaystyle{ p }[/math] does not hold for a tuple [math]\displaystyle{ X_1,\dots,X_n }[/math] if there is no evidence that it does). For instance, the stable model of the program

[math]\displaystyle{ p(a,b) }[/math]
[math]\displaystyle{ p(c,d) }[/math]
[math]\displaystyle{ \sim p(X,Y)\leftarrow\operatorname{not}p(X,Y) }[/math]

consists of 2 positive atoms

[math]\displaystyle{ p(a,b),p(c,d) }[/math]

and 14 negative atoms

[math]\displaystyle{ \sim p(a,a),{\sim} p(a,c),\dots }[/math]

i.e., the strong negations of all other positive ground atoms formed from [math]\displaystyle{ 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]\displaystyle{ A \leftarrow B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math]

where [math]\displaystyle{ 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]\displaystyle{ \leftarrow B_{1},\dots,B_{m},\operatorname{not}C_{1},\dots,\operatorname{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]\displaystyle{ \land }[/math], the symbol [math]\displaystyle{ \operatorname{not} }[/math] with negation [math]\displaystyle{ \neg }[/math], and agree to treat [math]\displaystyle{ F \leftarrow G }[/math] as the implication [math]\displaystyle{ 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]\displaystyle{ \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, to define stable models, 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]\displaystyle{ P }[/math] is consistent then [math]\displaystyle{ P }[/math] has a unique minimal model, and that model is considered the only stable model of [math]\displaystyle{ 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 above). A set [math]\displaystyle{ I }[/math] of atoms is a stable model of a program [math]\displaystyle{ P }[/math] with constraints if the reduct of [math]\displaystyle{ P }[/math] relative to [math]\displaystyle{ I }[/math] has a stable model, and that stable model equals [math]\displaystyle{ I }[/math].

The 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]\displaystyle{ P }[/math] affects the collection of stable models of [math]\displaystyle{ P }[/math] in a very simple way: it eliminates the stable models that violate the constraint. In other words, for any program [math]\displaystyle{ P }[/math] with constraints and any constraint [math]\displaystyle{ C }[/math], the stable models of [math]\displaystyle{ P\cup\{C\} }[/math] can be characterized as the stable models of [math]\displaystyle{ P }[/math] that satisfy [math]\displaystyle{ C }[/math].

Disjunctive programs

Main page: Disjunctive Datalog

In a disjunctive rule, the head may be the disjunction of several atoms:

[math]\displaystyle{ A_1;\dots;A_k \leftarrow B_{1},\dots,B_{m},\operatorname{not} C_{1},\dots,\operatorname{not} C_{n} }[/math]

(the semicolon is viewed as alternative notation for disjunction [math]\displaystyle{ \lor }[/math]). Traditional rules correspond to [math]\displaystyle{ k=1 }[/math], and constraints to [math]\displaystyle{ 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]\displaystyle{ 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 the same as before. A set [math]\displaystyle{ I }[/math] of atoms is a stable model of [math]\displaystyle{ P }[/math] if [math]\displaystyle{ I }[/math] is a stable model of the reduct of [math]\displaystyle{ P }[/math] relative to [math]\displaystyle{ I }[/math].

For example, the set [math]\displaystyle{ \{p,r\} }[/math] is a stable model of the disjunctive program

[math]\displaystyle{ p;q }[/math]
[math]\displaystyle{ r\leftarrow \operatorname{not} q }[/math]

because it is one of two minimal models of the reduct

[math]\displaystyle{ p;q }[/math]
[math]\displaystyle{ r. }[/math]

The program above has one more stable model, [math]\displaystyle{ \{q\} }[/math].

As in the case of traditional programs, each element of any stable model of a disjunctive program [math]\displaystyle{ P }[/math] is a head atom of [math]\displaystyle{ P }[/math], in the sense that it occurs in the head of one of the rules of [math]\displaystyle{ 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 [math]\displaystyle{ \Sigma 2^{\rm P} }[/math]-complete [Eiter and Gottlob, 1993].

Stable models of a set of propositional formulas

Rules, and even disjunctive rules, have a rather special syntactic form, in comparison with arbitrary propositional formulas. Each disjunctive rule is essentially an implication such that its antecedent (the body of the rule) is a conjunction of 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 original definition of a stable model. Instead of reducts, it refers to equilibrium logic—a system of nonmonotonic logic based on 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 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]\displaystyle{ F }[/math] relative to a set [math]\displaystyle{ I }[/math] of atoms is the formula obtained from [math]\displaystyle{ F }[/math] by replacing each maximal subformula that is not satisfied by [math]\displaystyle{ I }[/math] with the logical constant [math]\displaystyle{ \bot }[/math] (false). The reduct of a set [math]\displaystyle{ P }[/math] of propositional formulas relative to [math]\displaystyle{ I }[/math] consists of the reducts of all formulas from [math]\displaystyle{ P }[/math] relative to [math]\displaystyle{ I }[/math]. As in the case of disjunctive programs, we say that a set [math]\displaystyle{ I }[/math] of atoms is a stable model of [math]\displaystyle{ P }[/math] if [math]\displaystyle{ I }[/math] is minimal (with respect to set inclusion) among the models of the reduct of [math]\displaystyle{ P }[/math] relative to [math]\displaystyle{ I }[/math].

For instance, the reduct of the set

[math]\displaystyle{ \{p,p\land q \rightarrow r,p \land \neg q \rightarrow s\} }[/math]

relative to [math]\displaystyle{ \{p,s\} }[/math] is

[math]\displaystyle{ \{p, \bot\rightarrow \bot, p \land \neg\bot \rightarrow s\}. }[/math]

Since [math]\displaystyle{ \{p,s\} }[/math] is a model of the reduct, and the proper subsets of that set are not models of the reduct, [math]\displaystyle{ \{p,s\} }[/math] is a stable model of the given set of formulas.

We have seen that [math]\displaystyle{ \{p,s\} }[/math] is also a stable model of the same formula, written in logic programming notation, in the sense of the 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 and for disjunctive programs.

Properties of the general stable model semantics

The theorem asserting that all elements of any stable model of a program [math]\displaystyle{ P }[/math] are head atoms of [math]\displaystyle{ P }[/math] can be extended to sets of propositional formulas, if we define head atoms as follows. An atom [math]\displaystyle{ A }[/math] is a head atom of a set [math]\displaystyle{ P }[/math] of propositional formulas if at least one occurrence of [math]\displaystyle{ A }[/math] in a formula from [math]\displaystyle{ 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 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]\displaystyle{ p\lor\neg p }[/math]

has two stable models, [math]\displaystyle{ \empty }[/math] and [math]\displaystyle{ \{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 [math]\displaystyle{ \Sigma 2^{\rm P} }[/math]-complete, as in the case of disjunctive programs.

See also

Notes

  1. This approach to the semantics of logic programs without negation is due to Maarten van Emden and Robert Kowalskivan Emden & Kowalski 1976.
  2. Gelfond & Lifschitz 1991 call the second negation classical and denote it by [math]\displaystyle{ \neg }[/math].

References