#+FINDEX: sweep-open-query
=sweep= provides the Elisp function =sweep-open-query= for invoking Prolog
predicates. The invoked predicate must be of arity two and will be
-called in mode =p(+In, -Out)= i.e. the predicate should treat the
-first argument as input and expect a variable for the second argument
-which should be unified with the some output. This restriction is
-placed in order to facilitate a natural calling convention between
-Elisp, a functional language, and Prolog, a logical one.
+called in mode =p(+In, -Out)= i.e. the predicate should treat the first
+argument as input and expect a variable for the second argument which
+should be unified with some output. This restriction is placed in
+order to facilitate a natural calling convention between Elisp, a
+functional language, and Prolog, a logical one.
The =sweep-open-query= function takes five arguments, the first three
are strings which denote:
term and used as the first argument of the predicate (see [[Conversion
of Elisp objects to Prolog terms]]). The fifth argument is an
optional "reverse" flag, when this flag is set to non-nil, the order
-of the arguments is reversed such the predicate is called in mode
+of the arguments is reversed such that the predicate is called in mode
=p(-Out, +In)= rather than =p(+In, -Out)=.
#+FINDEX: sweep-next-solution