Analyzing Fuzzy Logic Computations with Fuzzy XPath
Electronic Communications of the EASST
Volume 64 (2013)
Proceedings of the
XIII Spanish Conference on Programming
and Computer Languages
(PROLE 2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
Jesús M. Almendros-Jiménez, Alejandro Luna, Ginés Moreno and Carlos Vázquez
19 pages
Guest Editors: Clara Benac Earle, Laura Castro, Lars-Åke Fredlund
Managing Editors: Tiziana Margaria, Julia Padberg, Gabriele Taentzer
ECEASST Home Page: http://www.easst.org/eceasst/ ISSN 1863-2122
http://www.easst.org/eceasst/
ECEASST
Analyzing Fuzzy Logic Computations with Fuzzy XPath
Jesús M. Almendros-Jiménez1, Alejandro Luna2, Ginés Moreno3 and Carlos
Vázquez 4
1 jalmen@ual.es
Dept. of Informatics
Universidad de Almería
04120 Almería (Spain)
2 Alejandro.Luna@alu.uclm.es
3 Gines.Moreno@uclm.es
4 Carlos.Vazquez@uclm.es
Dept. of Computing Systems
University of Castilla-La Mancha
02071 Albacete (Spain)
Abstract: Implemented with a fuzzy logic language by using the FLOPER tool
developed in our research group, we have recently designed a fuzzy dialect of the
popular XPath language for the flexible manipulation of XML documents. In this
paper we focus on the ability of Fuzzy XPath for exploring derivation trees generated
by FLOPER once they are exported in XML format, which somehow serves as a
debugging/analizing tool for discovering the set of fuzzy computed answers for a
given goal, performing depth/breadth-first traversals of its associated derivation tree,
finding non fully evaluated branches, etc., thus reinforcing the bi-lateral synergies
between Fuzzy XPath and FLOPER.
Keywords: XPath; Fuzzy (Multi-adjoint) Logic Programming; Debugging
1 Introduction
Logic Programming (LP) [Llo87] is being widely used from several decades ago for problem
solving and knowledge representation, thus providing a great amount of foundations and tech-
niques devoted to produce real world applications. Some steps beyond, during the last years im-
portant research efforts have been performed for introducing inside the LP paradigm some tech-
niques/constructs based on fuzzy logic in order to explicitly treat with uncertainty and approxi-
mated reasoning in a natural way. Following this trail, several fuzzy logic programming systems
have been developed [Lee72, KS92, BMP95, Voj01, GMV04, VP05, Str08, RR10, MCS11],
where the classical inference mechanism of SLD–Resolution has been replaced by a fuzzy vari-
ant which is able to handle partial truth in a comfortable way.
This is the case too of Multi-Adjoint Logic Programming [MOV04], MALP in brief, where a
fuzzy program can be seen as a set of rules each one annotated with its own truth degree (a value
of a complete lattice, for instance, the real interval [0,1]). Goals are evaluated in two separate
computational phases. During the operational phase, admissible steps (a generalization of the
1 / 19 Volume 64 (2013)
mailto:jalmen@ual.es
mailto:Alejandro.Luna@alu.uclm.es
mailto:Gines.Moreno@uclm.es
mailto:Carlos.Vazquez@uclm.es
Analyzing Fuzzy Logic Computations with Fuzzy XPath
classical modus ponens inference rule) are systematically applied by a backward reasoning pro-
cedure in a similar way to classical resolution steps in pure logic programming. More precisely,
in an admissible step, for a selected atom A in a goal and a rule 〈H←B; v〉 of the program, if there
is a most general unifier θ of A and H, then atom A is substituted by the expression (v&B)θ ,
where “&” is an adjoint conjunction evaluating modus ponens. Finally, the operational phase re-
turns a computed substitution together with an expression where all atoms have been exploited.
This last expression is then interpreted under a given lattice during what we call the interpretive
phase, hence returning a pair 〈truth degree; substitution〉 which is the fuzzy counterpart of the
classical notion of computed answer traditionally used in pure logic programming.
On the other hand, the eXtensible Markup Language (XML) is widely used in many areas of
computer software to represent machine readable data. XML provides a very simple language to
represent the structure of data, using tags to label pieces of textual content, and a tree structure to
describe the hierarchical content. XML emerged as a solution to data exchange between appli-
cations where tags permit to locate the content. XML documents are mainly used in databases.
The XPath language [BBC+07] was designed as a query language for XML in which the path of
the tree is used to describe the query. XPath expressions can be adorned with Boolean conditions
on nodes and leaves to restrict the number of answers of the query. XPath is the basis of a more
powerful query language (called XQuery) designed to join multiple XML documents and to give
format to the answer. In [ALM11, ALM12a] we have presented an XPath interpreter (together
with a debugger, as documented in [ALM12b, ALM13]) extended with fuzzy commands which
somehow rely on the implementation based on fuzzy logic programming by using FLOPER.
Whereas in Sections 2 and 3 we summarize the main features of both the fuzzy XPath in-
terpreter and the fuzzy logic programming environment FLOPER, respectively, in Section 4
we go deeper on the feedbacks between both tools. More exactly we show that, even when
FLOPER was used for implementing fuzzy XPath, now this last language is very useful for
formulating queries to be executed againts XML documents representing derivation trees de-
picted by FLOPER, thus becoming into a “debugging” technique which can be embedded into
the programming environment for analyzing some interesting details (fuzzy computed answers,
tree traversals, partial branches, etc.) about fuzzy logic computations. Finally, in Section 5 we
conclude and present future work.
2 Fuzzy XPath
In this section we will summarize the main elements of our proposed fuzzy XPath language de-
scribed in [ALM12a, ALM11] (the tool can be freely downloaded and tested on-line in
http://dectau.uclm.es/fuzzyXPath/). On this flexible dialect of XPath, we have incorporated two
structural constraints called DOWN and DEEP to which a certain degree of relevance is associated.
So, whereas DOWN provides a ranked set of answers depending on the path they are found from
“top to down” in the XML document, DEEP provides a ranked set of answers depending on the
path they are found from “left to right” in the XML document. Both structural constraints can
be used together, assigning degree of importance with respect to the distance to the root XML
element. Secondly, our fuzzy XPath incorporates fuzzy variants of and and or for XPath con-
ditions. Crisp and and or operators are used in standard XPath over Boolean conditions, and
Proc. PROLE 2013 2 / 19
http://dectau.uclm.es/fuzzyXPath/
ECEASST
enable to impose Boolean requirements on the answers. XPath Boolean conditions can be re-
ferred to attribute values and node content, in the form of equality and range of literal values,
among others. However, the and and or operators applied to two Boolean conditions are not
precise enough when the programmer does not give the same value to both conditions. For in-
stance, some answers can be discarded when they could be of interest by the programmer, and
accepted when they are not of interest. Besides, programmers would need to know in which
sense a solution is better than another. When several Boolean conditions are imposed on a query,
each one contributes to satisfy the programmer’s preferences in a different way and perhaps, the
programmer’s satisfaction is distinct for each solution.
We have enriched the arsenal of operators of XPath with fuzzy variants of and and or. Partic-
ularly, we have considered three versions of and: and+, and, and- (and the same for or : or+,
or, or-) which make more flexible the composition of fuzzy conditions. Three versions for each
operator that come for free from our adaptation of fuzzy logic to the XPath paradigm. One of the
most known elements of fuzzy logic is the introduction of fuzzy versions of classical Boolean
operators. Product, Łukasiewicz and Gödel fuzzy logics are considered as the most prominent
logics and give a suitable semantics to fuzzy operators. Our contribution is now to give sense
to fuzzy operators into the XPath paradigm, and particularly in programmer’s preferences. We
claim that in our work the fuzzy versions provide a mechanism to force (and debilitate) condi-
tions in the sense that stronger (and weaker) programmer preferences can be modeled with the
use of stronger (and weaker) fuzzy conditions. The combination of fuzzy operators in queries
permits to specify a ranked set of fuzzy conditions according to programmer’s requirements.
Furthermore, we have equipped XPath with an additional operator that is also traditional in
fuzzy logic: the average operator avg. This operator offers the possibility to explicitly give
weight to fuzzy conditions. Rating such conditions by avg, solutions increase its weight in a
proportional way. However, from the point view of the programmer’s preferences, it forces the
programmer to quantify his(er) wishes which, in some occasions, can be difficult to measure.
For this reason, fuzzy versions of and and or are better choices in some circumstances.
Finally, we have equipped our XPath based query language with a mechanism for thresholding
programmer’s preferences, in such a way that programmer can request that requirements are
satisfied over a certain percentage.
The proposed fuzzy XPath is described by the following syntax:
xpath := [‘[’deep-down‘]’ ]path
path := literal | text() | node | @att | node/path | node//path
node := QName | QName[cond]
cond := xpath op xpath | xpath num-op number
deep := DEEP=number
down := DOWN=number
deep-down := deep | down | deep ‘;’ down
num-op := > | = | < | <>
fuzzy-op := and | and+ | and- | or | or+ | or- | avg | avg{number,number}
op := num-op | fuzzy-op
Basically, our proposal extends XPath as follows:
3 / 19 Volume 64 (2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
Figure 1: Fuzzy Logical Operators
&P(x,y) = x∗y |P(x,y) = x + y−x∗y Product: and/or
&G(x,y) = min(x,y) |G(x,y) = max(x,y) Gödel: and+/or-
&L(x,y) = max(x + y−1,0) |L(x,y) = min(x + y,1) Łuka.: and-/or+
– Structural constraints. A given XPath expression can be adorned with «[DEEP = r1; DOWN
= r2]» which means that the deepness of elements is penalized by r1 and that the order of
elements is penalized by r2, and such penalization is proportional to the distance (i.e., the
length of the branch and the weight of the tree, respectively). In particular, «[DEEP = 1;
DOWN = r2]» can be used for penalizing only w.r.t. document order. DEEP works for //, that
is, the deepness in the XML tree is only computed when descendant nodes are explored,
while DOWN works for both / and //. Let us remark that DEEP and DOWN can be used several
times on the main path expression and/or any other sub-path included in conditions.
– Flexible operators in conditions. We consider three fuzzy versions for each one of
the classical conjunction and disjunction operators (t-norms and t-conorms, respectively
[SS83, KMP00]), also called connectives or aggregators, describing pessimistic, realistic
and optimistic scenarios, see Figure 1. In XPath expressions the fuzzy versions of the
connectives make harder to hold Boolean conditions, and therefore can be used to debil-
itate/force Boolean conditions. Furthermore, assuming two given RSV’s (Retrieval Status
Values) r1 and r2, the avg operator is obviously defined with a fuzzy taste as (r1 + r2)/2,
whereas its priority-based variant, i.e. avg{p1, p2}, acts as (p1 ∗r1 + p2 ∗r2)/(p1 + p2).
Figure 2: Input XML document in our examples
Classic Literature
Don Quijote de la Mancha
Miguel de Cervantes Saavedra
La Galatea
Miguel de Cervantes Saavedra
Los trabajos de Persiles y Sigismunda
Miguel de Cervantes Saavedra
La Celestina
Fernando de Rojas
Proc. PROLE 2013 4 / 19
ECEASST
Figure 3: Execution of query «/bib[DEEP=0.8;DOWN=0.9]//title»
Document RSV computation
Don Quijote de la Mancha
La Celestina
Los trabajos de Persiles...
0.8000 = 0.8
0.7200 = 0.8∗0.9
0.2949 = 0.85 ∗0.9
Figure 4: Execution of query «//book[@year<2000 avg{3,1} @price<50]/title»
Document RSV computation
Los trabajos de Persiles...
Don Quijote de la Mancha
1.00 = (3∗1 + 1∗1)/(3 + 1)
0.25 = (3∗0 + 1∗1)/(3 + 1)
Figure 5: Execution of query «/bib[DEEP=0.5]//book[@year<2000 avg{3,1} @price<50]/title»
Document RSV computation
Don Quijote de la Mancha
Los trabajos de Persiles...
0.25 = (3∗0 + 1∗1)/(3 + 1)
0.0625 = 0.54 ∗(3∗1 + 1∗1)/(3 + 1)
In general, a fuzzy XPath expression defines, w.r.t. an XML document, a sequence of subtrees
of the XML document where each subtree has an associated RSV. XPath conditions, which are
defined as fuzzy operators applied to XPath expressions, compute a new RSV from the RSVs of
the involved XPath expressions, which at the same time, provides a RSV to the node. In order to
illustrate these explanations, let us see some examples of our proposed fuzzy version of XPath
according to the XML document shown of Figure 2.
Example 1 Let us consider the fuzzy XPath query of Figure 3 requesting title’s penalizing the
occurrences from the document root by a proportion of 0.8 and 0.9 by nesting and ordering,
respectively, and for which we obtain the file listed in Figure 3. In such document we have
included as attribute of each subtree, its corresponding RSV. The highest RSVs correspond to
the main books of the document, and the lowest RSVs represent the books occurring in nested
positions (those annotated as related references).
Example 2 Figure 4 shows the answer associated to a search of books, possibly referenced
directly or indirectly from other books, whose publishing year and price are relevant but the year
is three times more important than the price. Finally, in Figure 5 we combine both kinds of
(structural/conditional) operators, and the ranked list of solutions is reversed.
Finally, we can use command «[FILTER = r]» at the beginning of a query for filtering its final set
of solutions in the sense that only those ones with RSV not lower than r will conform the output.
5 / 19 Volume 64 (2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
3 Fuzzy Logic Programming with MALP and FLOPER
Multi-Adjoint Logic Programming [MOV04], MALP in brief, can be thought as a fuzzy ex-
tension of Prolog and it is based on a first order language, L , containing variables, func-
tion/constant symbols, predicate symbols, and several arbitrary connectives such as implica-
tions (←1,←2,...,←m), conjunctions (&1,&2,...,&k), disjunctions (∨1,∨2,...,∨l ), and gen-
eral hybrid operators (“aggregators” @1,@2,...,@n), used for combining/propagating truth val-
ues through the rules, and thus increasing the language expressiveness. Additionally, our lan-
guage L contains the values of a multi-adjoint lattice in the form 〈L,�,←1,&1,...,←n,&n〉,
equipped with a collection of adjoint pairs 〈←i,&i〉 where each &i is a conjunctor intended to
the evaluation of modus ponens [SS83, KMP00, MOV04]. A rule is a formula “A ←i B with α ”,
where A is an atomic formula (usually called the head), B (which is called the body) is a formula
built from atomic formulas B1,...,Bn (n ≥ 0 ), truth values of L and conjunctions, disjunctions
and general aggregations, and finally α ∈ L is the “weight” or truth degree of the rule. The set
of truth values L may be the carrier of any complete bounded lattice, as for instance occurs with
the set of real numbers in the interval [0,1] with their corresponding ordering �R. Consider,
for instance, the following program, P, with associated multi-adjoint lattice 〈[0,1],�R,←P,&P〉
(where label P means for Product logic with the following connective definitions for implication
and conjunction symbols, respectively: “←P (x,y) = min(1,x/y)”, “&P(x,y) = x∗y”, as well as
“@aver(x,y) = (x + y)/2”):
R1 : oc(X) <- s(X) & prod ( f (X) @aver w(X)) with 1.
R2 : s(madrid) with 0.8. R5 : s(tokyo) with 0.9.
R3 : f (madrid) with 0.8. R6 : f (tokyo) with 0.7.
R4 : w(madrid) with 0.9. R7 : w(tokyo) with 0.6.
R8 : s(istambul) with 0.3. R11 : s(baku) with 0.3.
R9 : f (istambul) with 0.4. R12 : f (baku) with 0.2.
R10 : w(istambul) with 0.8. R13 : w(baku) with 0.5.
This program models, through predicate oc/1, the chances of a city for being an “olympic city”
(i.e., for hosting olympic games). Predicate oc/1 is defined in rule R1, whose body collects the
information from three other predicates, s/1, f/1 and w/1, modeling, respectively, the security
level, the f acilities and the good weather of a certain city (other criteria like continental rotation,
political/economical aspects, etc... can be easily “aggregated” to the definition of oc/1). These
predicates are defined in rules R2 to R13 for four cities (Madrid, Istambul, Tokyo and Baku), in
such a way that, for each city, the feature modeled by each predicate is better the greater the truth
value of the rule.
In order to run and manage MALP programs, during the last years we have designed the
FLOPER system [MM08, MMPV10, MV14], which is freely accessible from the Web site
http://dectau.uclm.es/floper/. The parser of our tool has been implemented by using the classical
DCG’s (Definite Clause Grammars) resource of the Prolog language, since it is a convenient
notation for expressing grammar rules. Once the application is loaded inside a Prolog interpreter,
it shows a menu which includes options for loading/compiling, parsing, listing and saving fuzzy
programs, as well as for executing/debugging fuzzy goals. All these actions are based on the
compilation of the fuzzy code into standard Prolog code.
Proc. PROLE 2013 6 / 19
http://dectau.uclm.es/floper/
ECEASST
Figure 6: Execution tree for program P and goal oc(X)
The FLOPER system is able to manage programs with very different lattices. In order to asso-
ciate a certain lattice with its corresponding program, such lattice must be loaded into the tool
as a pure Prolog program. As an example, the following clauses show the program modeling
the lattice of the real interval [0,1] with the usual ordering relation and connectives (where the
meaning of the mandatory predicates member, top, bot and leq is obvious):
member(X):- number(X), 0=
R0
oc(X)
{}
R1
and_prod(s(X),agr_aver(f(X),w(X)))
{X1/X}
R2
and_prod(0.8,agr_aver(f(madrid),w(madrid)))
{X/madrid,X1/madrid}
R3
and_prod(0.8,agr_aver(0.8,w(madrid)))
{X/madrid,X1/madrid}
Proc. PROLE 2013 8 / 19
ECEASST
R4
and_prod(0.8,agr_aver(0.8,0.9))
{X/madrid,X1/madrid}
result
0.6800000000000002
{X/madrid,X1/madrid}
...
result
0.585
{X/tokyo,X1/tokyo}
...
4 Exploring Derivation Trees with Fuzzy XPath
In this section we present a very powerful method to automatically exploring the behaviour of
a MALP program using the fuzzy XPath tool described in Section 2. The idea is to use fuzzy
XPath over the execution tree generated by FLOPER for a certain program and goal. That tree
is obtained through option “tree” using the XML format just explained before in Section 3.
For instance, an easy but interesting XPath query should be “//node/rule” which lists all
the rules exploited along the execution of a goal (in the case of the tree depicted in Figure 6, we
would obtain the whole set of rules defined in the program P of our running example).
Assume now that we plan to obtain the whole set of fuzzy computed answers for a given goal
and program. This information, always collected in the leaves of execution trees (even when
there exists the possibility of finding leaves non containing fuzzy computed answers, as we will
see afterwards) as illustrated in Figure 7, can be retrieved by means of the fuzzy XPath query
“//node[/rule/text()=result]”, meaning that, return each node such that the content
of its rule tag is “result”. The XML text shown below Figure 7 represents the output of our fuzzy
XPath interpreter for that query, where the selected nodes have been highlighted inside a blue
cloud into the drawn tree above. Note that the resuting XML file contains four solutions (one for
each city), where attribute “rsv” indicates how much each city fulfills the original query (in this
example, this value is the same in all cases, that is, just the maximum one 1).
9 / 19 Volume 64 (2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
Figure 7: Executing queries «//node[/rule/text()=result]» and «//node[children[not(text())]]»
result
0.6800000000000002
{X/madrid, X1/madrid}
result
0.585
{X/tokyo, X1/tokyo}
result
0.18000000000000002
{X/istambul, X1/istambul}
result
0.105
{X/baku, X1/baku}
Strongly related with the previous experiment, but not directly focusing now on fuzzy computed
answers, query “//node[children[not(text())]]” returns the leaves of the tree. Note
that, in the case of our current program P and goal “oc(X)”, the corresponding output for
this query is, once again, the same than the one reported previously in Figure 7 but, as said
Proc. PROLE 2013 10 / 19
ECEASST
Figure 8: Executing query «[FILTER=0.5][DEEP=0.9]//node/goal»
oc(X)
and_prod(s(X),agr_aver(f(X),w(X)))
and_prod(0.8,agr_aver(f(madrid),w(madrid)))
and_prod(0.9,agr_aver(f(tokyo),w(tokyo)))
and_prod(0.3,agr_aver(f(istambul),w(istambul)))
and_prod(0.3,agr_aver(f(baku),w(baku)))
and_prod(0.8,agr_aver(0.8,w(madrid)))
and_prod(0.9,agr_aver(0.7,w(tokyo)))
and_prod(0.3,agr_aver(0.4,w(istambul)))
and_prod(0.3,agr_aver(0.2,w(baku)))
in the previous paragraph, this is not the general case. In fact, we can formulate a query like
“//node[children[not(text())] and rule/text()<>"result"]/goal”, helping us
to know whether the tree has any partially evaluated leaf (i.e., non reporting a fuzzy computed
answer) since it returns nodes at the end of a branch that are not labeled with the rule tag con-
taining “result”. The important meaning of this query resides on its capability for finding
possible sources of infinite loops. So, consider the example of Figure 9, where an infinite branch
(leaf in orange) is clearly observable between two leaves (in yellow) containing fuzzy computed
answers. This figure corresponds to the execution tree (since it is infinite in depth, FLOPER
allows us to fix the number of levels to be drawn) for goal “p(X)” w.r.t. program:
p(a) with 0.8.
p(X)
0.8
and_prod(0.9,and_prod(0.9,and_prod(0.9,and_prod(0.9,and_prod(0.9,p(s(s(s(s(s
(s(s(s(s(s(s(s(s(s(s(X)))))))))))))))))))))
0.6
Executing query «//node[children[not(text())] and rule/text()<>"result"]/goal»
and_prod(0.9,and_prod(0.9,and_prod(0.9,and_prod(0.9,and_prod(0.9,p(s(s(s(s(s
(s(s(s(s(s(s(s(s(s(s(X)))))))))))))))))))))
Executing query «//node[rule/text()="result"]/goal»
0.8
0.6
Proc. PROLE 2013 12 / 19
ECEASST
Figure 10: Executing query «[FILTER=0.5][DOWN=0.7]//node/goal»
oc(X)
and_prod(s(X),agr_aver(f(X),w(X)))
and_prod(0.8,agr_aver(f(madrid),w(madrid)))
and_prod(0.8,agr_aver(0.8,w(madrid)))
and_prod(0.8,agr_aver(0.8,0.9))
0.6800000000000002
and_prod(0.9,agr_aver(f(tokyo),w(tokyo)))
and_prod(0.9,agr_aver(0.7,w(tokyo)))
and_prod(0.9,agr_aver(0.7,0.6))
0.585
Note that, in this figure, the search for nodes with an empty “children” field by using query
“//node[children[not(text())]]/goal” returns three solutions, i.e., the three leaves
of the tree without distinguishing whether they correspond to fully or partially evaluated goals.
Query “//node[rule/text()="result"]/goal” allows us to retrieve only the fca’s
of the tree, as seen in Figure 9. Finally, in order to obtain the final node in the central (infinite)
branch, we must use the more involved second query shown in the Figure, that is,
“//node[children[not(text())] and rule/text()<>"result"]/goal”.
In order to take advantage of the enrichments introduced in the fuzzy XPath language, the
following query makes use of “DEEP” and “FILTER” commands in order to perform a partial
breadth-first traversal on execution trees as shown in Figure 8. In the resulting XML output,
10 nodes have been selected from the execution tree with different “rsv” values, varying from
1 in the case of the original goal (that has not been penalized) till 0.531441 for the fourth row,
representing nodes whose depth (“DEEP-level”) remains above the filter. Note that the use of
the directive “DEEP” segregates the nodes of the tree from top to bottom, since lower nodes in
13 / 19 Volume 64 (2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
the tree are represented deeper in the input XML file.
Figure 11: «node[/goal[contains(text(),“w(”)] aver{1,2} substitution[contains(text(),“istambul”)]]//goal»
and_prod(0.3,agr_aver(f(istambul),w(istambul)))
and_prod(0.3,agr_aver(0.4,w(istambul)))
and_prod(0.3,agr_aver(0.4,0.8))
0.18000000000000002
and_prod(s(X),agr_aver(f(X),w(X)))
and_prod(0.8,agr_aver(f(madrid),w(madrid)))
and_prod(0.9,agr_aver(f(tokyo),w(tokyo)))
and_prod(0.3,agr_aver(f(baku),w(baku)))
and_prod(0.8,agr_aver(0.8,w(madrid)))
and_prod(0.9,agr_aver(0.7,w(tokyo)))
and_prod(0.3,agr_aver(0.2,w(baku)))
Analogously, in Figure 10 we use “DOWN” instead of “DEEP” for producing partial depth-first
traversals on execution trees. In this case, our query segregates the nodes from left to right in
columns, since the more left the node appears in the tree, the upper is it in the XML output
and, thus, the less penalized by “DOWN”. As previously, 10 nodes have been selected again with
“rsv” ranging from 1 -upper nodes in the XM file- in the left column, till 0.7, as shown in the
second column.
In order to illustrate the high expressive power of the fuzzy XPath language, in the following
we try to model queries joining several concepts (for instance, the topics of “weather” and “Is-
tambul” modeled in P as predicate “w” and constant “istambul”, respectively). Assume that we
are firstly interested on nodes informing about “weather”, i.e., focusing on the fourth rows of our
execution tree, thus meaning that sub-string “w(” must appear in tag “goal”, while our second
preference asks for nodes in the branch containing the word “istambul” in tag “substitution”.
Proc. PROLE 2013 14 / 19
ECEASST
In order to join these two constraints, instead of using crisp “or/and” operators (or even differ-
ent fuzzy variants of such connectives already implemented in fuzzy XPath), we prefer to use an
arithmetical average giving twice importance to the second requirement than to the first one. The
fuzzy XPath formulation of our query entitles Figure 11, where we graphically show the set of
solutions as well as the output in the resulting XML file.
We finish this section by commenting some related works. The investigation of fuzzy ex-
tensions of the XQuery/XPath language for providing flexible mechanisms to XML querying,
has provided a wide range of approaches in which the main goal is the handling of crisp in-
formation by fuzzy concepts [GT10, CDG+09, DMP07, FFP09, FFF10, LAAE06, DMP08],
as our proposal does. But an alternative way focuses on the introduction of fuzzy informa-
tion in data (similarity, proximity, vagueness, etc) [US12, ÜYG07, BDW06, BDHH06, GA06,
YML09, OP08, OP10] for which our recent advances described in [JMPV14] (devoted to ex-
tend the FLOPER platform with expressive resources to comfortably handle with similarity
relations), promise new improvements in the implementation of fuzzy XPath. Moreover, in
[ALM14] we have highlighted the benefits obtained with the FILTER command used along
this paper, for filtering the set of ranked answers in a dynamic way, in order to reduce the
runtime/complexity of computations when dealing with large files and connecting our frame-
work with the well-known “top-k ranking problem” (i.e. determining the top k answers to a
query without computing the -usually wider, possibly infinite- whole set of solutions) inspired
by [BCG02, CH02, CGM04, MBG04, RDS07, IBS08].
5 Conclusions and Future Work
In this paper we have shown the mutual benefits between two different fuzzy tools developed
in our research group, that is, the FLOPER programming environment and the fuzzy XPath
interpreter. Initially FLOPER was conceived as a tool for implementing flexible software ap-
plications -as it is the case of fuzzy XPath- coded with the fuzzy logic language MALP and
offering options for compiling fuzzy rules to standard Prolog clauses, running goals and drawing
execution trees. Such trees, once modeled in XML format inside the proper FLOPER tool, can
be then analyzed by the fuzzy XPath interpreter -by means of simple XPath queries augmented
with fuzzy commands- in order to discover details (such as fuzzy computed answers, possible
infinite branches and so on) of the computational behaviour of MALP programs after being exe-
cuted into FLOPER. In this sense, we plan to integrate an option inside the FLOPER menu for
allowing the possibility of performing debugging tasks based on fuzzy XPath.
On the other hand, in [ALM12b, ALM13] we have recently presented a fuzzy XPath debugger
(beyond the fuzzy XPath interpreter) that, for a given XPath expression, the tool offers a set
of alternative queries, each one associated to a chance degree indicating the deviations of each
proposal w.r.t. the original query (we use JUMP, DELETE and SWAP operators for covering the main
cases of programming errors when describing a path about an XML document). Thus, our tool is
focused on providing the programmer a repertoire of paths that (s)he can use to retrieve answers.
Since in this paper we have seen that the fuzzy XPath interpreter might act as a debugger of fuzzy
computations developed with FLOPER, for the near future we plan too to study the role that the
proper fuzzy XPath debugger should play for helping the design of applications using FLOPER.
15 / 19 Volume 64 (2013)
Analyzing Fuzzy Logic Computations with Fuzzy XPath
Acknowledgements:
Carlos Vázquez and Ginés Moreno received grants for International mobility from the Uni-
versity of Castilla-La Mancha (CYTEMA project and “Vicerrectorado de Profesorado”). This
research was also supported by the EU (FEDER), and the Spanish MINECO Ministry (Ministerio
de Economía y Competitividad) under grants TIN2013-45732-C4-2-P and TIN2013-44742-C4-
4-R, as well as Andalusian Regional Government (Spain) under Project P10-TIC-6114.
Bibliography
[ALM11] J. Almendros-Jiménez, A. Luna, G. Moreno. A Flexible XPath-based Query Lan-
guage Implemented with Fuzzy Logic Programming. In Proc. of 5th International
Symposium on Rules: Research Based, Industry Focused, RuleML’11. Barcelona,
Spain, July 19–21. Pp. 186–193. Springer Verlag, LNCS 6826, 2011.
[ALM12a] J. M. Almendros-Jiménez, A. Luna, G. Moreno. Fuzzy Logic Programming for Im-
plementing a Flexible XPath-based Query Language. Electr. Notes Theor. Comput.
Sci. 282:3–18, 2012.
[ALM12b] J. M. Almendros-Jiménez, A. Luna, G. Moreno. A XPath Debugger Based on Fuzzy
Chance Degrees. In On the Move to Meaningful Internet Systems: Proceedings
OTM 2012 Workshops, Rome, Italy, September 10-14. Pp. 669–672. Springer Ver-
lag, LNCS 7567, 2012.
[ALM13] J. Almendros-Jiménez, A. Luna, G. Moreno. Annotating Fuzzy Chance Degrees
when Debugging XPath Queries. In Advances in Computational Intelligence - Proc
of the 12th International Work-Conference on Artificial Neural Networks, IWANN
2013 (Special Session on Fuzzy Logic and Soft Computing Application), Tenerife,
Spain, June 12-14. Pp. 300–311. Springer Verlag, LNCS 7903, Part II, 2013.
[ALM14] J. Almendros-Jiménez, A. Luna, G. Moreno. Dynamic Filtering of Ranked Answers
When Evaluating Fuzzy XPath Queries. In Rough Sets and Current Trends in Soft
Computing 2014. Pp. 319–330. Springer Verlag, LNAI 8536, 2014.
[BBC+07] A. Berglund, S. Boag, D. Chamberlin, M. Fernandez, M. Kay, J. Robie, J. Siméon.
XML path language (XPath) 2.0. W3C, 2007.
[BCG02] N. Bruno, S. Chaudhuri, L. Gravano. Top-k selection queries over relational
databases: Mapping strategies and performance evaluation. ACM Trans. Database
Syst. 27(2):153–187, 2002.
[BDHH06] P. Buche, J. Dibie-Barthélemy, O. Haemmerlé, G. Hignette. Fuzzy semantic tag-
ging and flexible querying of XML documents extracted from the Web. Journal of
Intelligent Information Systems 26(1):25–40, 2006.
[BDW06] P. Buche, J. Dibie-Barthélemy, F. Wattez. Approximate querying of XML fuzzy
data. Flexible Query Answering Systems, pp. 26–38, 2006.
Proc. PROLE 2013 16 / 19
ECEASST
[BMP95] J. F. Baldwin, T. P. Martin, B. W. Pilsworth. Fril- Fuzzy and Evidential Reasoning
in Artificial Intelligence. John Wiley & Sons, Inc., 1995.
[CDG+09] A. Campi, E. Damiani, S. Guinea, S. Marrara, G. Pasi, P. Spoletini. A fuzzy ex-
tension of the XPath query language. Journal of Intelligent Information Systems
33(3):285–305, 2009.
[CGM04] S. Chaudhuri, L. Gravano, A. Marian. Optimizing Top-k Selection Queries over
Multimedia Repositories. IEEE Trans. Knowl. Data Eng. 16(8):992–1009, 2004.
[CH02] K. C.-C. Chang, S. won Hwang. Minimal probing: supporting expensive predi-
cates for top-k queries. In Franklin et al. (eds.), SIGMOD Conference. Pp. 346–357.
ACM, 2002.
[DMP07] E. Damiani, S. Marrara, G. Pasi. FuzzyXPath: Using fuzzy logic and IR features to
approximately query XML documents. Foundations of Fuzzy Logic and Soft Com-
puting, pp. 199–208, 2007.
[DMP08] E. Damiani, S. Marrara, G. Pasi. A flexible extension of XPath to improve XML
querying. In Proceedings of the 31st annual international ACM SIGIR conference
on Research and development in information retrieval. Pp. 849–850. 2008.
[FFF10] On the expressiveness of generalization rules for XPath query relaxation. 2010.
[FFP09] Top-k Answers to Fuzzy XPath Queries. 2009.
[GA06] A. Gaurav, R. Alhajj. Incorporating fuzziness in XML and mapping fuzzy relational
data into fuzzy XML. In Proceedings of the 2006 ACM symposium on Applied
computing. Pp. 456–460. 2006.
[GMV04] S. Guadarrama, S. Muñoz, C. Vaucheret. Fuzzy Prolog: A New Approach Using
Soft Constraints Propagation. Fuzzy Sets and Systems 144(1):127–150, 2004.
[GT10] M. Goncalves, L. Tineo. Fuzzy XQuery. In Soft Computing in XML Data Manage-
ment. Pp. 133–163. Springer, 2010.
[IBS08] I. F. Ilyas, G. Beskales, M. A. Soliman. A survey of top-k query processing tech-
niques in relational database systems. ACM Comput. Surv. 40(4), 2008.
[JMPV14] P. Julián-Iranzo, G. Moreno, J. Penabad, C. Vázquez. A Fuzzy Logic Programming
Environment for Managing Similarity and Truth Degrees. In PROLE’14 (submit-
ted). Pp. 1–10. Universidad de Cádiz, 2014.
[KMP00] E. Klement, R. Mesiar, E. Pap. Triangular Norms. Trends in logic, Studia logica
library. Springer, 2000.
http://books.google.es/books?id=rIyqcjfKMN4C
[KS92] M. Kifer, V. Subrahmanian. Theory of generalized annotated logic programming
and its applications. Journal of Logic Programming 12:335–367, 1992.
17 / 19 Volume 64 (2013)
http://books.google.es/books?id=rIyqcjfKMN4C
Analyzing Fuzzy Logic Computations with Fuzzy XPath
[LAAE06] H. Li, S. Aghili, D. Agrawal, A. El Abbadi. FLUX: fuzzy content and structure
matching of XML range queries. In Proceedings of the 15th international confer-
ence on World Wide Web. Pp. 1081–1082. 2006.
[Lee72] R. Lee. Fuzzy Logic and the Resolution Principle. Journal of the ACM 19(1):119–
129, 1972.
[Llo87] J. Lloyd. Foundations of Logic Programming. Springer-Verlag, Berlin, 1987.
[MBG04] A. Marian, N. Bruno, L. Gravano. Evaluating top-k queries over web-accessible
databases. ACM Trans. Database Syst. 29(2):319–362, 2004.
[MCS11] S. Muñoz-Hernández, V. P. Ceruelo, H. Strass. RFuzzy: Syntax, semantics and
implementation details of a simple and expressive fuzzy tool over Prolog. Inf. Sci.
181(10):1951–1970, 2011.
[MM08] P. Morcillo, G. Moreno. Programming with Fuzzy Logic Rules by using the
FLOPER Tool. In al. (ed.), Proc of the 2nd. Rule Representation, Interchange
and Reasoning on the Web, International Symposium, RuleML’08. Pp. 119–126.
Springer Verlag, LNCS 3521, 2008.
[MMPV10] P. Morcillo, G. Moreno, J. Penabad, C. Vázquez. A Practical Management of Fuzzy
Truth Degrees using FLOPER. In al. (ed.), Proc. of 4nd Intl Symposium on Rule In-
terchange and Applications, RuleML’10. Pp. 20–34. Springer Verlag, LNCS 6403,
2010.
[MOV04] J. Medina, M. Ojeda-Aciego, P. Vojtáš. Similarity-based Unification: a multi-
adjoint approach. Fuzzy Sets and Systems 146:43–62, 2004.
[MV14] G. Moreno, C. Vázquez. Fuzzy Logic Programming in Action with FLOPER. Jour-
nal of Software Engineering and Applications 7:237–298, 2014.
[OP08] B. Oliboni, G. Pozzani. Representing fuzzy information by using XML schema.
In Database and Expert Systems Application, 2008. DEXA’08. 19th International
Workshop on. Pp. 683–687. 2008.
[OP10] B. Oliboni, G. Pozzani. An XML Schema for Managing Fuzzy Documents. Soft
Computing in XML Data Management, pp. 3–34, 2010.
[RDS07] C. Re, N. N. Dalvi, D. Suciu. Efficient Top-k Query Evaluation on Probabilistic
Data. In Chirkova et al. (eds.), ICDE. Pp. 886–895. IEEE, 2007.
[RR10] M. Rodríguez, C. A. Romero. A declarative semantics for CLP with qualification
and proximity. Theory and Practice of Logic Programming 10(4-6):627–642, 2010.
[SS83] B. Schweizer, A. Sklar. Probabilistic Metric Spaces. Courier Dover Publ., 1983.
http://books.google.es/books?id=8LUd6Txuu5sC
Proc. PROLE 2013 18 / 19
http://books.google.es/books?id=8LUd6Txuu5sC
ECEASST
[Str08] U. Straccia. Managing Uncertainty and Vagueness in Description Logics, Logic
Programs and Description Logic Programs. In Reasoning Web, 4th International
Summer School, Tutorial Lectures. Pp. 54–103. Springer Verlag, LNCS 5224, 2008.
[US12] P. Ueng, S. Skrbic. Implementing XQuery fuzzy extensions using a native XML
database. In Computational Intelligence and Informatics (CINTI), 2012 IEEE 13th
International Symposium on. Pp. 305–309. 2012.
[ÜYG07] E. Üstünkaya, A. Yazici, R. George. Fuzzy data representation and querying in xml
database. International Journal of Uncertainty, Fuzziness and Knowledge-Based
Systems 15(supp01):43–57, 2007.
[Voj01] P. Vojtáš. Fuzzy Logic Programming. Fuzzy Sets and Systems 124(1):361–370,
2001.
[VP05] P. Vojtáš, L. Paulík. Query Answering in Normal Logic Programs Under Uncer-
tainty. In Godó (ed.), Proc. of 8th. European Conference on Symbolic and Quantita-
tive Approaches to Reasoning with Uncertainty (ECSQARU-05), Barcelona, Spain.
Pp. 687–700. Springer Verlag, LNCS 3571, 2005.
[YML09] L. Yan, Z. Ma, J. Liu. Fuzzy data modeling based on XML schema. In Proceedings
of the 2009 ACM symposium on Applied Computing. Pp. 1563–1567. 2009.
19 / 19 Volume 64 (2013)
Introduction
Fuzzy XPath
Fuzzy Logic Programming with MALP and FLOPER
Exploring Derivation Trees with Fuzzy XPath
Conclusions and Future Work