if(Inc=max)then
Decision := Decision∪ {d
i
};
endif;
endif
endif
end
return < Decision >;
end
The computation of inconsistency degree is per-
formed by a call to the function Inconsi(B ∪
{(¬φ,1)},Inc,bool). This function has three parame-
ters: a stratified knowledge base, an integer represent-
ing current inconsistency degree and a boolean vari-
able. More precisely, the function Inconsi is defined
as follows:
Function Inconsi(B ∪ {(¬φ,1)},Inc,bool) Input :
B:stratified base,
φ:weighted formula,
n: number of strate in base B,
Output :Inc: inconsistency degree,
bool:boolean,
Begin
l := 0; /*initially pointed on the last strate of the
base*/
u := n; /*initially pointed on first strate of the
base*/
bool := true;
while (l < u) do
Begin
r := [(l + u)/2];
/*pointer uses for dichotomy*/
if(B
∗
≥α
r
∧ ¬φ consistent)
/*B
∗
≥α
r
= {φ
i
/α
i
≥ α
r
}*/
then
u := r − 1;
/*check inconsistency in most big base*/
else
l := r;
/*check the inconsistency delimited by u,l*/
endif
end
if(α
r
< inc) then bool := false;
else Inc := α
r
; /*Inc = N(φ)*/
endif
return < Inc,bool >
end
4 CONCLUSIONS
The main contribution of this paper is a proposition of
a new approach to compute a qualitative pessimistic
decision problem. This problem is viewed as the
one of computing inconsistency degrees of particu-
lar bases in the framework of possibilistic logic. The
application exploits the syntactic counterparts of data
fusion techniques. Our approach avoids the use of the
ATMS to compute the pessimistic optimal qualitative
decision developed in (Dubois et al., 1999) which is
known to be a hard problem.
REFERENCES
Benferhat, S., Dubois, D., and Prade, H. (1997). From se-
mantic to syntactic approaches to information combi-
nation in possibilistic logic. Aggregation and Fusion
of Imperfect Information, Physica Verlag, pages 141–
151.
Berre, D. (2000). Autour de SAT : le calcul d’impliquants
P-restreints algorithmes et applications. PhD thesis,
universit Paul Sabatier Toulouse.
Dubois, D., Berre, D. L., Prade, H., and Sabaddin, R.
(1999). Using possibilistic logic for modeling qualita-
tive decision : Atms based algorithms. In Fundamenta
Informaticae, 37:1–30.
Dubois, D., Berre, D. L., Prade, H., and Sabbadin, R.
(1998). Logical representation and computation of op-
timal decisions in a qualitative setting. In AAAI-98,
pages 588–593.
Dubois, D., Lang, J., and Prade, H. (1994a). Automated rea-
soning using possibilistic logic: Semantics, belief re-
vision, and variable certainty weights. In IEEE Trans.
On knowledge and Data Enginneering, pages 64–69.
Dubois, D., Lang, J., and Prade, H. (1994b). Possibilistic
logic. In Handbook of Logic in Artificial Intelligence
and Logic Programming, (D. Gabbay et al., eds, 3,
Oxford University Press:pages 439–513.
Dubois, D. and Prade, H. (1995). Possibility theory as a
basis for qualitative decision theory. In 14th Interna-
tional Joint Conference on Artificial Intelligence (IJ-
CAI’95), Montral, pages 1924–1930.
Dubois, D., Prade, H., and Sabbadin, R. (1997). A pos-
sibilistic logic machinery for qualitative decision. In
In : Proc. AAAI97 Spring Symposium Series (Quali-
tative Preferences in Deliberation and Practical Rea-
soning), pages 47–54, Standford University.
Kleer, J. D. (1986a). An assumption-based tms. Artificial
Intelligence Jounral, 28:127–162.
Kleer, J. D. (1986b). Extending the atms. Artificial Intelli-
gence Jounral, 28:163–196.
ON THE USE OF SYNTACTIC POSSIBILISTIC FUSION FOR COMPUTING POSSIBILISTIC QUALITATIVE
DECISION
359