This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/docs/yap.md

1279 lines
39 KiB
Markdown
Raw Normal View History

2014-07-03 13:56:08 +01:00
This file documents the YAP Prolog System version 6.3.4, a high-performance Prolog compiler developed at LIACC, Universidade do Porto. YAP is based on David H. D. Warren's WAM (Warren Abstract Machine), with several optimizations for better performance. YAP follows the Edinburgh tradition, and is largely compatible with DEC-10 Prolog, Quintus Prolog, and especially with C-Prolog.
2014-09-13 00:50:04 +01:00
+ @ref DownloadInstall
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref Run
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref YAPLoading
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref YAPBuiltins
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref YAPExtensions
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref YAPProgramming
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref ChYInterface
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref YAPLibrary
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref SWILibrary
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Packages
2014-07-03 13:56:08 +01:00
\author Vitor Santos Costa,
\author Luís Damas,
\author Rogério Reis
\author Rúben Azevedo
© 1989-2014 L. Damas, V. Santos Costa and Universidade
do Porto.
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
\htmlonly
This file contains extracts of the SWI-Prolog manual, as written by Jan
Wielemaker. Our thanks to the author for his kind permission in allowing
us to include his text in this document.
\endhtmlonly
@section Intro Introduction
This document provides User information on version 6.3.4 of
YAP (<em>Yet Another Prolog</em>). The YAP Prolog System is a
high-performance Prolog compiler developed at LIACC, Universidade do
Porto. YAP provides several important features:
2014-09-11 20:06:57 +01:00
+ Speed: YAP is widely considered one of the fastest available
2014-07-03 13:56:08 +01:00
Prolog systems.
2014-09-11 20:06:57 +01:00
+ Functionality: it supports stream Input/Output, sockets, modules,
2014-07-03 13:56:08 +01:00
exceptions, Prolog debugger, C-interface, dynamic code, internal
database, DCGs, saved states, co-routining, arrays, threads.
2014-09-11 20:06:57 +01:00
+ We explicitly allow both commercial and non-commercial use of YAP.
2014-07-03 13:56:08 +01:00
YAP is based on the David H. D. Warren's WAM (Warren Abstract Machine),
with several optimizations for better performance. YAP follows the
Edinburgh tradition, and was originally designed to be largely
compatible with DEC-10 Prolog, Quintus Prolog, and especially with
C-Prolog.
YAP implements most of the ISO-Prolog standard. We are striving at
full compatibility, and the manual describes what is still
missing. The manual also includes a (largely incomplete) comparison
with SICStus Prolog.
The document is intended neither as an introduction to Prolog nor to the
implementation aspects of the compiler. A good introduction to
programming in Prolog is the book @cite TheArtOfProlog , by
L. Sterling and E. Shapiro, published by "The MIT Press, Cambridge
MA". Other references should include the classical @cite ProgrammingInProlog , by W.F. Clocksin and C.S. Mellish, published by
Springer-Verlag.
YAP 4.3 is known to build with many versions of gcc (\<= gcc-2.7.2, \>=
gcc-2.8.1, \>= egcs-1.0.1, gcc-2.95.\*) and on a variety of Unixen:
SunOS 4.1, Solaris 2.\*, Irix 5.2, HP-UX 10, Dec Alpha Unix, Linux 1.2
and Linux 2.\* (RedHat 4.0 thru 5.2, Debian 2.\*) in both the x86 and
alpha platforms. It has been built on Windows NT 4.0 using Cygwin from
Cygnus Solutions (see README.nt) and using Visual C++ 6.0.
The overall copyright and permission notice for YAP4.3 can be found in
the Artistic file in this directory. YAP follows the Perl Artistic
license, and it is thus non-copylefted freeware.
If you have a question about this software, desire to add code, found a
bug, want to request a feature, or wonder how to get further assistance,
please send e-mail to <yap-users AT lists.sourceforge.net>. To
subscribe to the mailing list, visit the page
<https://lists.sourceforge.net/lists/listinfo/yap-users>.
On-line documentation is available for YAP at:
<http://www.ncc.up.pt/~vsc/YAP/>
Recent versions of YAP, including both source and selected binaries,
can be found from this same URL.
This manual was written by Vítor Santos Costa,
Luís Damas, Rogério Reis, and Rúben Azevedo. The
manual is largely based on the DECsystem-10 Prolog User's Manual by
D.L. Bowen, L. Byrd, F. C. N. Pereira, L. M. Pereira, and
D. H. D. Warren. We have used comments from the Edinburgh Prolog
library written by R. O'Keefe. Documentation from many built-ins is
originally from the SWI-Prolog manual, with the gracious uathorization
from
Jan Wielemaker. We would also like to gratefully
acknowledge the contributions from Ashwin Srinivasian.
We are happy to include in YAP several excellent packages developed
under separate licenses. Our thanks to the authors for their kind
authorization to include these packages.
The packages are, in alphabetical order:
2014-09-13 00:50:04 +01:00
+ The CHR package developed by Tom Schrijvers,
2014-07-03 13:56:08 +01:00
Christian Holzbaur, and Jan Wielemaker.
2014-09-11 20:06:57 +01:00
+ The CLP(BN) package and Horus toolkit developed by Tiago Gomes, and Vítor Santos Costa.
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ The CLP(R) package developed by Leslie De Koninck, Bart Demoen, Tom
2014-07-03 13:56:08 +01:00
Schrijvers, and Jan Wielemaker, based on the CLP(Q,R) implementation
by Christian Holzbaur.
2014-09-11 20:06:57 +01:00
+ The CPLint package developed by Fabrizio Riguzzi's research
2014-07-03 13:56:08 +01:00
laboratory at the University of Ferrara. Please see
<http://www.ing.unife.it/Docenti/FabrizioRiguzzi/>
2014-09-11 20:06:57 +01:00
+ The CUDA interface package developed by Carlos Martínez, Jorge
2014-07-03 13:56:08 +01:00
Buenabad, Inês Dutra and Vítor Santos Costa.
2014-09-11 20:06:57 +01:00
+ The GECODE interface package developed by Denys Duchier and Vítor Santos Costa.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The JPL (Java-Prolog Library) package developed by .
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The Logtalk Object-Oriented system is developed at the University
2014-07-03 13:56:08 +01:00
of Beira Interior, Portugal, by Paulo Moura:
2014-09-13 00:50:04 +01:00
<http://logtalk.org/>
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
Logtalk is no longer distributed with YAP. Please use the Logtalk standalone
2014-07-03 13:56:08 +01:00
installer for a smooth integration with YAP.
2014-09-11 20:06:57 +01:00
+ The minisat SAT solver interface developed by Michael Codish,
2014-07-03 13:56:08 +01:00
Vitaly Lagoon, and Peter J. Stuckey.
2014-09-11 20:06:57 +01:00
+ The MYDDAS relational data-base interface developed at the
2014-07-03 13:56:08 +01:00
Universidade do Porto by Tiago Soares, Michel Ferreira, and Ricardo Rocha.
2014-09-11 20:06:57 +01:00
+ The PRISM logic-based
2014-07-03 13:56:08 +01:00
programming system for statistical modeling developed at the Sato
Research Laboratory, TITECH, Japan.
2014-09-11 20:06:57 +01:00
+ The ProbLog 1 system developed by the ProbLog team in the
2014-07-03 13:56:08 +01:00
DTAI group of KULeuven. For general information on ProbLog 1 and 2, please see
<http://dtai.cs.kuleuven.be/problog>
2014-09-11 20:06:57 +01:00
+ The real R interface package developed by Nicos Angelopoulos,
2014-07-03 13:56:08 +01:00
Vítor Santos Costa, João Azevedo, Jan Wielemaker, and Rui Camacho.
</li>
2014-09-11 20:06:57 +01:00
+ YAP includes the yap2swi library that ports to YAP code from
2014-07-03 13:56:08 +01:00
of SWI's PL interface. This includes the Input/Output Layer, the SWI
Foreign Language Interface, and the RDF, archive, clib, http, odbc, plunit,
semweb, sgml, and zlib packages written by Jan Wielemaker. Please do refer to the SWI-Prolog home page:
<http://www.swi-prolog.org>
for more information on SWI-Prolog and the SWI packages.
2014-09-11 20:06:57 +01:00
@page DownloadInstall Downloading, Compiling, and Installing YAP
2014-07-03 13:56:08 +01:00
The latest development version of Yap-6 is yap-6.3.4 and can be
obtained from the repositories
<http://sourceforge.net/p/yap/yap-6.3>
and
<https://github.com/vscosta/yap-6.3>
Several packages are shared with SWI-Prolog and need to be obtained
from separate repositories. Proceed as follows:
~~~~~~
cd yap-6.3
git submodule init
git submodule update
~~~~~~
Most of these repositories are basically copies of the original
repositories at the SWI-Prolog site. YAP-6 will work either with or
without these packages.
2014-09-11 20:06:57 +01:00
@section CompilingYAP Compiling YAP
2014-07-03 13:56:08 +01:00
To compile YAP it should be sufficient to:
2014-09-11 20:06:57 +01:00
1 `autoconf`. Recent versions of YAP try to follow GNU
conventions on where to place software.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The main executable is placed at _$BINDIR_. This executa§ble is
actually a script that calls the Prolog engine, stored at _$LIBDIR_.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ _$LIBDIR_ is the directory where libraries are stored. YAPLIBDIR is a
subdirectory that contains the Prolog engine and a Prolog library.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ _$INCLUDEDIR_ is used if you want to use YAP as a library.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ _$INFODIR_ is where to store `info` files. Usually /usr/local/info, /usr/info, or /usr/share/info.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
2 `make`.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
3 If the compilation succeeds, try `./yap`.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
4 If you feel satisfied with the result, do `make install`.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
5 In most systems you will need to be superuser in order to do
`make install` and `make info` on the standard directories.
2014-07-03 13:56:08 +01:00
@section Configuration_Options Tuning the Functionality of YAP
Compiling YAP with the standard options give you a plain vanilla
Prolog. You can tune YAP to include extra functionality by calling
`configure` with the appropriate options:
2014-09-11 20:06:57 +01:00
+ `--enable-rational-trees=yes` gives you support for infinite
rational trees.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ `--enable-coroutining=yes` gives you support for coroutining,
including freezing of goals, attributed variables, and
2014-07-03 13:56:08 +01:00
constraints. This will also enable support for infinite rational
trees.
2014-09-11 20:06:57 +01:00
+ `--enable-depth-limit=yes` allows depth limited evaluation, say for
2014-07-03 13:56:08 +01:00
implementing iterative deepening.
2014-09-11 20:06:57 +01:00
+ `--enable-low-level-tracer=yes` allows support for tracing all calls,
2014-07-03 13:56:08 +01:00
retries, and backtracks in the system. This can help in debugging your
application, but results in performance loss.
2014-09-11 20:06:57 +01:00
+ `--enable-wam-profile=yes` allows profiling of abstract machine
2014-07-03 13:56:08 +01:00
instructions. This is useful when developing YAP, should not be so
useful for normal users.
2014-09-11 20:06:57 +01:00
+ `--enable-condor=yes` allows using the Condor system that
2014-07-03 13:56:08 +01:00
support High Throughput Computing (HTC) on large collections of
distributively owned computing resources.
2014-09-11 20:06:57 +01:00
+ `--enable-tabling=yes` allows tabling support. This option
2014-07-03 13:56:08 +01:00
is still experimental.
2014-09-11 20:06:57 +01:00
+ `--enable-parallelism={env-copy,sba,a-cow}` allows
2014-07-03 13:56:08 +01:00
or-parallelism supported by one of these three forms. This option is
still highly experimental.
2014-09-11 20:06:57 +01:00
+ `--with-max-workers` allows definition of the maximum
2014-07-03 13:56:08 +01:00
number of parallel processes (its value can be consulted at runtime
using the flag `max_workers`).
2014-09-11 20:06:57 +01:00
+ `--with-gmp[=DIR]` give a path to where one can find the
2014-07-03 13:56:08 +01:00
`GMP` library if not installed in the default path.
2014-09-11 20:06:57 +01:00
+ `--enable-threads` allows using of the multi-threading
2014-07-03 13:56:08 +01:00
predicates provided by YAP. Depending on the operating system, the
option `--enable-pthread-locking` may also need to be used.
2014-09-11 20:06:57 +01:00
+ `--with-max-threads` allows definition of the maximum
2014-07-03 13:56:08 +01:00
number of threads (the default value is 1024; its value can be consulted
at runtime using the flag [max_threads](@ref max_threads)).
2014-07-03 13:56:08 +01:00
Next section discusses machine dependent details.
@section Machine_Options Tuning YAP for a Particular Machine and Compiler
The default options should give you best performance under
`GCC`. Although the system is tuned for this compiler
we have been able to compile versions of YAP under lcc in Linux,
Sun's cc compiler, IBM's xlc, SGI's cc, and Microsoft's Visual C++
6.0.
@section Tuning_for_GCC Tuning YAP for `GCC`.
YAP has been developed to take advantage of `GCC` (but not to
depend on it). The major advantage of `GCC` is threaded code and
explicit register reservation.
YAP is set by default to compile with the best compilation flags we
know. Even so, a few specific options reduce portability. The option
2014-09-11 20:06:57 +01:00
+ `--enable-max-performance=yes` will try to support the best
2014-07-03 13:56:08 +01:00
available flags for a specific architectural model. Currently, the option
assumes a recent version of `GCC`.
2014-09-11 20:06:57 +01:00
+ `--enable-debug-yap` compiles YAP so that it can be debugged
2014-07-03 13:56:08 +01:00
by tools such as `dbx` or `gdb`.
2014-07-03 13:56:08 +01:00
Here follow a few hints:
On x86 machines the flags:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP_EXTRAS= ... -DBP_FREE=1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tells us to use the `%bp` register (frame-pointer) as the emulator's
program counter. This seems to be stable and is now default.
On Sparc/Solaris2 use:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP_EXTRAS= ... -mno-app-regs -DOPTIMISE_ALL_REGS_FOR_SPARC=1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
and YAP will get two extra registers! This trick does not work on
SunOS 4 machines.
Note that versions of GCC can be tweaked to recognize different
processors within the same instruction set, e.g. 486, Pentium, and
PentiumPro for the x86; or Ultrasparc, and Supersparc for
Sparc. Unfortunately, some of these tweaks do may make YAP run slower or
not at all in other machines with the same instruction set, so they
cannot be made default.
Last, the best options also depends on the version of GCC you are using, and
it is a good idea to consult the GCC manual under the menus "Invoking
GCC"/"Submodel Options". Specifically, you should check
`-march=XXX` for recent versions of GCC/EGCS. In the case of
`GCC2.7` and other recent versions of `GCC` you can check:
2014-09-11 20:06:57 +01:00
+ 486:
2014-07-03 13:56:08 +01:00
In order to take advantage of 486 specific optimizations in GCC 2.7.\*:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP_EXTRAS= ... -m486 -DBP_FREE=1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ Pentium:
2014-07-03 13:56:08 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP_EXTRAS= ... -m486 -malign-loops=2 -malign-jumps=2 \
-malign-functions=2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ PentiumPro and other recent Intel and AMD machines:
2014-07-03 13:56:08 +01:00
PentiumPros are known not to require alignment. Check your version of
`GCC` for the best `-march` option.
2014-09-11 20:06:57 +01:00
+ Super and UltraSparcs:
2014-07-03 13:56:08 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP_EXTRAS= ... -msupersparc
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ MIPS: if have a recent machine and you need a 64 bit wide address
2014-07-03 13:56:08 +01:00
space you can use the abi 64 bits or eabi option, as in:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC="gcc -mabi=64" ./configure --...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Be careful. At least for some versions of `GCC`, compiling with
`-g` seems to result in broken code.
2014-09-11 20:06:57 +01:00
+ WIN32: GCC is distributed in the MINGW32 and CYGWIN packages.
2014-07-03 13:56:08 +01:00
The Mingw32 environment is available from the URL:
<http://www.mingw.org>
You will need to install the `msys` and `mingw`
packages. You should be able to do configure, make and make install.
If you use mingw32 you may want to search the contributed packages for
the `gmp` multi-precision arithmetic library. If you do setup YAP
with `gmp` note that libgmp.dll must be in the path,
otherwise YAP will not be able to execute.
The CygWin environment is available from the URL:
<http://www.cygwin.com>
and mirrors. We suggest using recent versions of the cygwin shell. The
compilation steps under the cygwin shell are as follows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mkdir cyg
$YAPSRC/configure --enable-coroutining \\
--enable-depth-limit \\
--enable-max-performance
make
make install
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
By default, YAP will use the `-mno-cygwin` option to
disable the use of the cygwin dll and to enable the mingw32 subsystem
instead. YAP thus will not need the cygwin dll. It instead accesses
the system's CRTDLL.DLL `C` run time library supplied with
Win32 platforms through the mingw32 interface. Note that some older
WIN95 systems may not have CRTDLL.DLL, in this case it should
be sufficient to import the file from a newer WIN95 or WIN98 machine.
You should check the default installation path which is set to
/YAP in the standard Makefile. This string will usually
be expanded into c:\\YAP by Windows.
The cygwin environment does not provide <tt>gmp</tt> on the MINGW
subsystem. You can fetch a dll for the <tt>gmp</tt> library from
<http://www.sf.net/projects/mingwrep>.
It is also possible to configure YAP to be a part of the cygwin
environment. In this case you should use:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mkdir cyg
$YAPSRC/configure --enable-max-performance \\
--enable-cygwin=yes
make
make install
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
YAP will then compile using the cygwin library and will be installed
in cygwin's /usr/local. You can use YAP from a cygwin console,
or as a standalone application as long as it can find
cygwin1.dll in its path. Note that you may use to use
`--enable-depth-limit` for Aleph compatibility, and that you may
want to be sure that GMP is installed.
2014-07-03 13:56:08 +01:00
@subsection Compiling_Under_Visual_C Compiling Under Visual C++
YAP used to compile cleanly under Microsoft's Visual C++ release 6.0. We next
give a step-by-step review on how the core YAP compiled manually using this
environment.
First, it is a good idea to build YAP as a DLL:
2014-09-11 20:06:57 +01:00
+ create a project named yapdll using File.New. The project will be a
2014-07-03 13:56:08 +01:00
DLL project, initially empty.
Notice that either the project is named yapdll or you must replace the
preprocessors variable _$YAPDLL_EXPORTS_ to match your project names
in the files YAPInterface.h and `c_interface.c`.
2014-09-11 20:06:57 +01:00
+ add all .c files in the $YAPSRC/C directory and in the
2014-07-03 13:56:08 +01:00
$YAPSRC\\OPTYAP directory to the Project's `Source Files` (use
FileView).
2014-09-11 20:06:57 +01:00
+ add all .h files in the _$YAPSRC/H_ directory,
2014-07-03 13:56:08 +01:00
_$YAPSRC\\include_ directory and in the _$YAPSRC\\OPTYAP_
subdirectory to the Project's `Header Files`.
2014-09-11 20:06:57 +01:00
+ Ideally, you should now use `m4` to generate extra .h from .m4 files and use
2014-07-03 13:56:08 +01:00
`configure` to create a `config.h`. Or, you can be lazy, and
fetch these files from _$YAPSRC\\VC\\include_.
2014-09-11 20:06:57 +01:00
+ You may want to go to `Build.Set Active Configuration` and
2014-07-03 13:56:08 +01:00
set `Project Type` to `Release`
2014-09-11 20:06:57 +01:00
+ To use YAP's own include directories you have to set the Project
2014-07-03 13:56:08 +01:00
option `Project.Project Settings.C/C++.Preprocessor.Additional Include Directories` to include the directories _$YAPSRC\\H_,
_$YAPSRC\\VC\\include_, _$YAPSRC\\OPTYAP_ and
_$YAPSRC\\include_. The syntax is:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$YAPSRC\H, $YAPSRC\VC\include, $YAPSRC\OPTYAP, $YAPSRC\include
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ Build: the system should generate an yapdll.dll and an yapdll.lib.
2014-09-11 20:06:57 +01:00
+ Copy the file yapdll.dll to your path. The file
yapdll.lib should also be copied to a location where the linker can find it.
2014-07-03 13:56:08 +01:00
Now you are ready to create a console interface for YAP:
<ol>
<li>create a second project say `wyap` with `File.New`. The project will be a
WIN32 console project, initially empty.
2014-09-11 20:06:57 +01:00
+ add _$YAPSRC\\console\\yap.c_ to the `Source Files`.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ add _$YAPSRC\\VC\\include\\config.h_ and the files in _$YAPSRC\\include_ to
2014-07-03 13:56:08 +01:00
the `Header Files`.
2014-09-11 20:06:57 +01:00
+ You may want to go to `Build.Set Active Configuration` and set
2014-07-03 13:56:08 +01:00
`Project Type` to `Release`.
2014-09-11 20:06:57 +01:00
+ you will eventually need to bootstrap the system by booting from
2014-07-03 13:56:08 +01:00
`boot.yap`, so write:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-b $YAPSRC\pl\boot.yap
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
in `Project.Project Settings.Debug.Program Arguments`.
2014-09-11 20:06:57 +01:00
+ You need the sockets and yap libraries. Add
2014-07-03 13:56:08 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ws2_32.lib yapdll.lib
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
to `Project.Project Settings.Link.Object/Library Modules`
You may also need to set the `Link Path` so that VC++ will find `yapdll.lib`.
2014-09-11 20:06:57 +01:00
+ set `Project.Project Settings.C/C++.Preprocessor.Additional Include Directories` to include the
2014-07-03 13:56:08 +01:00
_$YAPSRC/VC/include_ and
_$YAPSRC/include_.
The syntax is:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$YAPSRC\VC\include, $YAPSRC\include
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ Build the system.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ Use `Build.Start Debug` to boot the system, and then create the saved state with
2014-07-03 13:56:08 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
['$YAPSRC\\pl\\init'].
qsave_program('startup.yss').
^Z
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
That's it, you've got YAP and the saved state!
</li>
</ol>
The $YAPSRC\\VC directory has the make files to build YAP4.3.17 under VC++ 6.0.
@subsection Tuning_for_SGI_cc Compiling Under SGI's cc
YAP should compile under the Silicon Graphic's `cc` compiler,
although we advise using the GNUCC compiler, if available.
2014-09-11 20:06:57 +01:00
+ 64 bit
2014-07-03 13:56:08 +01:00
Support for 64 bits should work by using (under Bourne shell syntax):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC="cc -64" $YAP_SRC_PATH/configure --...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-07-03 13:56:08 +01:00
@page Run Running YAP
We next describe how to invoke YAP in Unix systems.
@section Running_YAP_Interactively Running YAP Interactively
Most often you will want to use YAP in interactive mode. Assuming that
YAP is in the user's search path, the top-level can be invoked under
Unix with the following command:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
yap [-s n] [-h n] [-a n] [-c IP_HOST port ] [filename]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
All the arguments and flags are optional and have the following meaning:
2014-09-13 00:50:04 +01:00
+ -?
2014-07-03 13:56:08 +01:00
print a short error message.
2014-09-13 00:50:04 +01:00
+ -s _Size_
2014-07-03 13:56:08 +01:00
allocate _Size_ KBytes for local and global stacks. The user may
specify <tt>M</tt> bytes.
2014-09-13 00:50:04 +01:00
+ -h _Size_
2014-07-03 13:56:08 +01:00
allocate _Size_ KBytes for heap and auxiliary stacks
2014-09-13 00:50:04 +01:00
+ -t _Size_
2014-07-03 13:56:08 +01:00
allocate _Size_ KBytes for the trail stack
2014-09-13 00:50:04 +01:00
+ -L _Size_
2014-07-03 13:56:08 +01:00
SWI-compatible option to allocate _Size_ K bytes for local and global stacks, the local stack
cannot be expanded. To avoid confusion with the load option, _Size_
must immediately follow the letter `L`.
2014-09-13 00:50:04 +01:00
+ -G _Size_
2014-07-03 13:56:08 +01:00
SWI-compatible option to allocate _Size_ K bytes for local and global stacks; the global
stack cannot be expanded
2014-09-13 00:50:04 +01:00
+ -T _Size_
2014-07-03 13:56:08 +01:00
SWI-compatible option to allocate _Size_ K bytes for the trail stack; the trail cannot be expanded.
2014-09-13 00:50:04 +01:00
+ -l _YAP_FILE_
2014-07-03 13:56:08 +01:00
compile the Prolog file _YAP_FILE_ before entering the top-level.
2014-09-13 00:50:04 +01:00
+ -L _YAP_FILE_
2014-07-03 13:56:08 +01:00
compile the Prolog file _YAP_FILE_ and then halt. This option is
useful for implementing scripts.
2014-09-13 00:50:04 +01:00
+ -g _Goal_
2014-07-03 13:56:08 +01:00
run the goal _Goal_ before top-level. The goal is converted from
an atom to a Prolog term.
2014-09-13 00:50:04 +01:00
+ -z _Goal_
2014-07-03 13:56:08 +01:00
run the goal _Goal_ as top-level. The goal is converted from
an atom to a Prolog term.
2014-09-13 00:50:04 +01:00
+ -b _BOOT_FILE_
2014-07-03 13:56:08 +01:00
boot code is in Prolog file _BOOT_FILE_. The filename must define
the predicate `'$live'/0`.
2014-09-13 00:50:04 +01:00
+ -c <tt>IP_HOST</tt> <tt>port</tt>
2014-07-03 13:56:08 +01:00
connect standard streams to host <tt>IP_HOST</tt> at port <tt>port</tt>
2014-09-13 00:50:04 +01:00
+ filename
2014-07-03 13:56:08 +01:00
restore state saved in the given file
2014-09-13 00:50:04 +01:00
+ -f
2014-07-03 13:56:08 +01:00
do not consult initial files
2014-09-13 00:50:04 +01:00
+ -q
2014-07-03 13:56:08 +01:00
do not print informational messages
2014-09-13 00:50:04 +01:00
+ --
2014-07-03 13:56:08 +01:00
separator for arguments to Prolog code. These arguments are visible
2014-09-13 00:50:04 +01:00
through the unix/1 built-in predicate.
2014-07-03 13:56:08 +01:00
Note that YAP will output an error message on the following conditions:
2014-09-13 00:50:04 +01:00
+
2014-07-03 13:56:08 +01:00
a file name was given but the file does not exist or is not a saved
YAP state;
2014-09-13 00:50:04 +01:00
+
2014-07-03 13:56:08 +01:00
the necessary amount of memory could not be allocated;
2014-09-13 00:50:04 +01:00
+
the allocated memory is not enough to restore the state.
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
When restoring a saved state, YAP will allocate the
2014-07-03 13:56:08 +01:00
same amount of memory as that in use when the state was saved, unless a
different amount is specified by flags in the command line. By default,
YAP restores the file startup.yss from the current directory or from
the YAP library.
2014-09-13 00:50:04 +01:00
+
2014-07-03 13:56:08 +01:00
YAP usually boots from a saved state. The saved state will use the default
installation directory to search for the YAP binary unless you define
the environment variable YAPBINDIR.
2014-09-13 00:50:04 +01:00
+
2014-07-03 13:56:08 +01:00
YAP always tries to find saved states from the current directory
2014-09-13 00:50:04 +01:00
first. If it cannot it will use the environment variable YAPLIBDIR, if
defined, or search the default library directory.
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+
2014-07-03 13:56:08 +01:00
YAP will try to find library files from the YAPSHAREDIR/library
directory.
2014-07-03 13:56:08 +01:00
@section Running_Prolog_Files Running Prolog Files
YAP can also be used to run Prolog files as scripts, at least in
Unix-like environments. A simple example is shown next (do not forget
that the shell comments are very important):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/local/bin/yap -L --
#
# Hello World script file using YAP
#
# put a dot because of syntax errors .
:- write('Hello World'), nl.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The `#!` characters specify that the script should call the binary
file YAP. Notice that many systems will require the complete path to the
YAP binary. The `-L` flag indicates that YAP should consult the
current file when booting and then halt. The remaining arguments are
then passed to YAP. Note that YAP will skip the first lines if they
start with `#` (the comment sign for Unix's shell). YAP will
consult the file and execute any commands.
A slightly more sophisticated example is:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/yap -L --
#
# Hello World script file using YAP
# .
:- initialization(main).
main :- write('Hello World'), nl.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The `initialization` directive tells YAP to execute the goal main
after consulting the file. Source code is thus compiled and `main`
executed at the end. The `.` is useful while debugging the script
as a Prolog program: it guarantees that the syntax error will not
propagate to the Prolog code.
Notice that the `--` is required so that the shell passes the extra
arguments to YAP. As an example, consider the following script
`dump_args`:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/yap -L --
#.
main( [] ).
main( [H|T] ) :-
write( H ), nl,
main( T ).
:- unix( argv(AllArgs) ), main( AllArgs ).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you this run this script with the arguments:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./dump_args -s 10000
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
the script will start an YAP process with stack size `10MB`, and
the list of arguments to the process will be empty.
Often one wants to run the script as any other program, and for this it
is convenient to ignore arguments to YAP. This is possible by using
`L --` as in the next version of `dump_args`:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/yap -L --
main( [] ).
main( [H|T] ) :-
write( H ), nl,
main( T ).
:- unix( argv(AllArgs) ), main( AllArgs ).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The `--` indicates the next arguments are not for YAP. Instead,
they must be sent directly to the argv built-in. Hence, running
2014-07-03 13:56:08 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./dump_args test
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-13 00:50:04 +01:00
2014-07-03 13:56:08 +01:00
will write `test` on the standard output.
2014-09-11 20:06:57 +01:00
@defgroup YAPLoading Loading and Organising YAP Programs
2014-09-11 20:06:57 +01:00
@page LoadingInYap Using YAP Programs
2014-07-03 13:56:08 +01:00
Next, we present the main predicates and directives available to load
files and to control the Prolog environment.
2014-09-11 20:06:57 +01:00
+ \subpage YAPConsulting
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ \subpage YAPModules
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ \subpage YAPSaving
2014-07-03 13:56:08 +01:00
This chapter describes the predicates for controlling the execution of
Prolog programs.
2014-07-03 13:56:08 +01:00
In the description of the arguments of functors the following notation
will be used:
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ a preceding plus sign will denote an argument as an "input
argument" - it cannot be a free variable at the time of the call;
2014-09-11 20:06:57 +01:00
+ a preceding minus sign will denote an "output argument";
+ an argument with no preceding symbol can be used in both ways.
2014-07-03 13:56:08 +01:00
2014-09-15 19:10:49 +01:00
@defgroup YAPBuiltins YAP Built-Ins
2014-07-03 13:56:08 +01:00
2014-09-15 19:10:49 +01:00
@page Core Prolog Built-Ins
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref YAPControl
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref arithmetic
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref YAPChars
2014-09-13 00:50:04 +01:00
+ @ref YAP_Terms
2014-07-03 13:56:08 +01:00
2014-09-15 19:10:49 +01:00
+ @ref InputOutput
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref YAPOS
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Database
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Sets
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Grammars
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Term_Modification
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref LoadForeign
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Predicates_on_Atoms
2014-07-03 13:56:08 +01:00
2014-09-15 19:10:49 +01:00
+ @ref Flags
2014-09-13 00:50:04 +01:00
+ @ref Deb_Preds
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
@defgroup ChYInterface Foreign Language interface to YAP
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
YAP provides the user with three facilities for writing
predicates in a language other than Prolog. Under Unix systems,
most language implementations were linkable to `C`, and the first interface exported the YAP machinery to the C language. YAP also implements most of the SWI-Prolog foreign language interface.
This gives portability with a number of SWI-Prolog packages and avoids garnage collection by using @ref slotInterface. Last, a new C++ based interface is
being designed to work with the swig (@url(www.swig.org}) interface compiler.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The @ref c-interface exports the YAP engine.
+ The @ref swi-c-interface emulates Jan Wielemaker's SWI foreign language interface.
+ The @ref yap-cplus-interface is desiged to interface with Object-Oriented systems.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
@defgroup YAPExtensions Extensions to core Prolog.
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+@ref Rational_Trees
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref CohYroutining
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Attributed_Variables
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref DepthLimited
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Tabling
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Threads
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Profiling
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref YAPArrays
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Parallelism
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
@defgroup YAPLibrary The YAP Library
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
@page LIbrary The YAP Library
2014-08-23 20:47:40 +01:00
2014-09-15 19:42:35 +01:00
+ @ref maplist
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Apply Apply Macros
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Association_Lists
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref AVL_Trees
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Exo_Intervals
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Heaps
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Lists
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref LineUtilities
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref matrix
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref NonhYBacktrackable_Data_Structures
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Ordered_Sets
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Pseudo_Random
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Queues Queues
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref PseudoRandom
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref RedhYBlack_Trees
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref RegExp
+ @ref Splay_Trees
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref System
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Terms
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Tries
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Cleanup
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Timeout
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Trees
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref UGraphs
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref DGraphs
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref UnDGraphs
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref DBUsage
2014-09-11 20:06:57 +01:00
2014-09-15 20:57:46 +01:00
+ @ref lambda
+ @ref clpfd
2014-09-11 20:06:57 +01:00
2014-09-15 19:42:35 +01:00
+ @ref Block_Diagram
2014-09-11 20:06:57 +01:00
@defgroup YAPProgramming Programming in YAP
2014-08-23 20:47:40 +01:00
2014-09-15 09:13:50 +01:00
@page Programming Programming in YAP
2014-09-13 00:50:04 +01:00
+ @ref Syntax
2014-08-23 20:47:40 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Indexing
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Deb_Interaction
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
@defgroup SWILibrary SWI-Prolog Libraries and Packages
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
@page SWICode The SWI-Prolog Libraries and Packages
2014-09-15 19:42:35 +01:00
+ @ref aggregate
2014-09-15 09:13:50 +01:00
+ @ref date
+ @ref debug
+ @ref persistence
+ @ref pio
+ @ref predicate_options
+ @ref prolog_clause
+ @ref prolog_colour
+ @ref prolog_main
+ @ref prolog_source
+ @ref quasi_quotations
+ @ref swi_option
+ @ref read_util
+ @ref record
2014-09-11 20:06:57 +01:00
2014-09-15 09:13:50 +01:00
+ @ref settings
+ @ref shlib
2014-09-15 19:10:49 +01:00
+ @ref SWIclib
2014-09-13 00:50:04 +01:00
+ @ref archive
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref CHR
2014-09-11 20:06:57 +01:00
2014-09-13 06:26:46 +01:00
+ @ref clpr
2014-09-11 20:06:57 +01:00
2014-09-15 09:13:50 +01:00
+ @ref http
2014-09-13 00:50:04 +01:00
+ @ref zlib
2014-07-03 13:56:08 +01:00
2014-09-15 19:10:49 +01:00
2014-09-11 20:06:57 +01:00
@defgroup YAPPackages The YAP packages
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
@page Packages The YAP Packages
2014-07-03 13:56:08 +01:00
2014-09-13 06:26:46 +01:00
+ @ref real
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref BDDs
2014-09-11 20:06:57 +01:00
2014-09-13 00:50:04 +01:00
+ @ref Gecode
2014-07-03 13:56:08 +01:00
2014-09-13 00:50:04 +01:00
+ @ref MYDDAS
2014-07-03 13:56:08 +01:00
2014-09-15 09:13:50 +01:00
+ @ref PFL
+ @ref ProbLog1
+ @ref YAPRaptor
+ @ref YAP-LBFGS
2014-09-15 19:10:49 +01:00
@defgroup SWIclib The SWI Extended Operating System Support Package
@ingroup SWILibrary
The HTTP package is a series of libraries developed by Jan Wielmaker
and the SWI-Prolog community for extended Operating System support.
Please consult clib.doc for the complete documentation.
2014-09-15 09:13:50 +01:00
@defgroup http The SWI http packages
@ingroup SWILibrary
2014-09-13 06:26:46 +01:00
2014-09-15 19:10:49 +01:00
The HTTP package is a series of libraries developed by Jan Wielmaker
2014-09-13 06:26:46 +01:00
and the SWI-Prolog community for accessing and serving data on the
web. It supports lower-level transport protocols, but also
data-representation primitives, and more.
The port to YAP focussed on the client-side support. The server
package has not been as widely tested.
@page Compatibility Compatibility with Other Prolog systems
2014-07-03 13:56:08 +01:00
YAP has been designed to be as compatible as possible with
other Prolog systems, and initially with C-Prolog. More recent work on
YAP has included features initially proposed for the Quintus
and SICStus Prolog systems.
2014-07-03 13:56:08 +01:00
Developments since `YAP4.1.6` we have striven at making
YAP compatible with the ISO-Prolog standard.
@section ChYProlog Compatibility with the C-Prolog interpreter
@subsection Major_Differences_with_ChYProlog Major Differences between YAP and C-Prolog.
YAP includes several extensions over the original C-Prolog system. Even
so, most C-Prolog programs should run under YAP without changes.
The most important difference between YAP and C-Prolog is that, being
YAP a compiler, some changes should be made if predicates such as
`assert`, `clause` and `retract` are used. First
predicates which will change during execution should be declared as
`dynamic` by using commands like:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- dynamic f/n.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
where `f` is the predicate name and n is the arity of the
predicate. Note that several such predicates can be declared in a
single command:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- dynamic f/2, ..., g/1.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Primitive predicates such as `retract` apply only to dynamic
predicates. Finally note that not all the C-Prolog primitive predicates
are implemented in YAP. They can easily be detected using the
`unknown` system predicate provided by YAP.
Last, by default YAP enables character escapes in strings. You can
disable the special interpretation for the escape character by using:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- yap_flag(character_escapes,off).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
or by using:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- yap_flag(language,cprolog).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@subsection Fully_ChYProlog_Compatible YAP predicates fully compatible with C-Prolog
These are the Prolog built-ins that are fully compatible in both
C-Prolog and YAP:
@subsection Not_Strictly_ChYProlog_Compatible YAP predicates not strictly compatible with C-Prolog
These are YAP built-ins that are also available in C-Prolog, but
that are not fully compatible:
@subsection Not_in_ChYProlog YAP predicates not available in C-Prolog
These are YAP built-ins not available in C-Prolog.
@subsection Not_in_YAP YAP predicates not available in C-Prolog
These are C-Prolog built-ins not available in YAP:
2014-09-11 20:06:57 +01:00
+ 'LC'
2014-07-03 13:56:08 +01:00
The following Prolog text uses lower case letters.
2014-09-11 20:06:57 +01:00
+ 'NOLC'
2014-07-03 13:56:08 +01:00
The following Prolog text uses upper case letters only.
2014-07-03 13:56:08 +01:00
@section SICStus_Prolog Compatibility with the Quintus and SICStus Prolog systems
The Quintus Prolog system was the first Prolog compiler to use Warren's
Abstract Machine. This system was very influential in the Prolog
community. Quintus Prolog implemented compilation into an abstract
machine code, which was then emulated. Quintus Prolog also included
several new built-ins, an extensive library, and in later releases a
garbage collector. The SICStus Prolog system, developed at SICS (Swedish
Institute of Computer Science), is an emulator based Prolog system
largely compatible with Quintus Prolog. SICStus Prolog has evolved
through several versions. The current version includes several
extensions, such as an object implementation, co-routining, and
constraints.
Recent work in YAP has been influenced by work in Quintus and
SICStus Prolog. Wherever possible, we have tried to make YAP
compatible with recent versions of these systems, and specifically of
SICStus Prolog. You should use
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- yap_flag(language, sicstus).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
for maximum compatibility with SICStus Prolog.
@subsection Major_Differences_with_SICStus Major Differences between YAP and SICStus Prolog.
Both YAP and SICStus Prolog obey the Edinburgh Syntax and are based on
the WAM. Even so, there are quite a few important differences:
2014-09-11 20:06:57 +01:00
+ Differently from SICStus Prolog, YAP does not have a
2014-07-03 13:56:08 +01:00
notion of interpreted code. All code in YAP is compiled.
2014-09-11 20:06:57 +01:00
+ YAP does not support an intermediate byte-code
2014-07-03 13:56:08 +01:00
representation, so the `fcompile/1` and `load/1` built-ins are
not available in YAP.
2014-09-11 20:06:57 +01:00
+ YAP implements escape sequences as in the ISO standard. SICStus
2014-07-03 13:56:08 +01:00
Prolog implements Unix-like escape sequences.
2014-09-11 20:06:57 +01:00
+ YAP implements initialization/1 as per the ISO
standard. Use prolog_initialization/1 for the SICStus Prolog
2014-07-03 13:56:08 +01:00
compatible built-in.
2014-09-11 20:06:57 +01:00
+ Prolog flags are different in SICStus Prolog and in YAP.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The SICStus Prolog `on_exception/3` and
2014-07-03 13:56:08 +01:00
`raise_exception` built-ins correspond to the ISO built-ins
catch/3 and throw/1.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ The following SICStus Prolog v3 built-ins are not (currently)
2014-07-03 13:56:08 +01:00
implemented in YAP (note that this is only a partial list):
file_search_path/2,
2014-07-03 13:56:08 +01:00
`stream_interrupt/3`, `reinitialize/0`, `help/0`,
`help/1`, `trimcore/0`, `load_files/1`,
load_files/2, and `require/1`.
2014-07-03 13:56:08 +01:00
The previous list is incomplete. We also cannot guarantee full
compatibility for other built-ins (although we will try to address any
such incompatibilities). Last, SICStus Prolog is an evolving system, so
one can be expect new incompatibilities to be introduced in future
releases of SICStus Prolog.
2014-09-11 20:06:57 +01:00
+ YAP allows asserting and abolishing static code during
execution through the assert_static/1 and abolish/1
2014-07-03 13:56:08 +01:00
built-ins. This is not allowed in Quintus Prolog or SICStus Prolog.
2014-09-11 20:06:57 +01:00
+ The socket predicates, although designed to be compatible with
2014-07-03 13:56:08 +01:00
SICStus Prolog, are built-ins, not library predicates, in YAP.
2014-09-11 20:06:57 +01:00
+ This list is incomplete.
2014-07-03 13:56:08 +01:00
The following differences only exist if the language flag is set
2014-07-03 13:56:08 +01:00
to `yap` (the default):
2014-09-11 20:06:57 +01:00
+ The consult/1 predicate in YAP follows C-Prolog
2014-07-03 13:56:08 +01:00
semantics. That is, it adds clauses to the data base, even for
preexisting procedures. This is different from consult/1 in
2014-07-03 13:56:08 +01:00
SICStus Prolog or SWI-Prolog.
2014-09-11 20:06:57 +01:00
+
2014-07-03 13:56:08 +01:00
By default, the data-base in YAP follows "logical update semantics", as
Quintus Prolog or SICStus Prolog do. Previous versions followed
"immediate update semantics". The difference is depicted in the next
example:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- dynamic a/1.
?- assert(a(1)).
?- retract(a(X)), X1 is X +1, assertz(a(X)).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
With immediate semantics, new clauses or entries to the data base are
visible in backtracking. In this example, the first call to
retract/1 will succeed. The call to *assertz/1* will then
2014-07-03 13:56:08 +01:00
succeed. On backtracking, the system will retry
retract/1. Because the newly asserted goal is visible to
retract/1, it can be retracted from the data base, and
2014-07-03 13:56:08 +01:00
`retract(a(X))` will succeed again. The process will continue
generating integers for ever. Immediate semantics were used in C-Prolog.
With logical update semantics, any additions or deletions of clauses
for a goal
<em>will not affect previous activations of the goal</em>. In the example,
the call to assertz/1 will not see the
update performed by the assertz/1, and the query will have a
2014-07-03 13:56:08 +01:00
single solution.
Calling `yap_flag(update_semantics,logical)` will switch
YAP to use logical update semantics.
2014-09-11 20:06:57 +01:00
+ dynamic/1 is a built-in, not a directive, in YAP.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ By default, YAP fails on undefined predicates. To follow default
2014-07-03 13:56:08 +01:00
SICStus Prolog use:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:- yap_flag(unknown,error).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-09-11 20:06:57 +01:00
+ By default, directives in YAP can be called from the top level.
2014-07-03 13:56:08 +01:00
@subsection Fully_SICStus_Compatible YAP predicates fully compatible with SICStus Prolog
These are the Prolog built-ins that are fully compatible in both SICStus
Prolog and YAP:
@subsection Not_Strictly_SICStus_Compatible YAP predicates not strictly compatible with SICStus Prolog
These are YAP built-ins that are also available in SICStus Prolog, but
that are not fully compatible:
@subsection Not_in_SICStus_Prolog YAP predicates not available in SICStus Prolog
These are YAP built-ins not available in SICStus Prolog.
@section ISO_Prolog Compatibility with the ISO Prolog standard
The Prolog standard was developed by ISO/IEC JTC1/SC22/WG17, the
international standardization working group for the programming language
Prolog. The book "Prolog: The Standard" by Deransart, Ed-Dbali and
Cervoni gives a complete description of this standard. Development in
YAP from YAP4.1.6 onwards have striven at making YAP
compatible with ISO Prolog. As such:
2014-09-11 20:06:57 +01:00
+ YAP now supports all of the built-ins required by the
2014-07-03 13:56:08 +01:00
ISO-standard, and,
2014-09-11 20:06:57 +01:00
+ Error-handling is as required by the standard.
2014-07-03 13:56:08 +01:00
YAP by default is not fully ISO standard compliant. You can set the
language flag to `iso` to obtain very good
2014-07-03 13:56:08 +01:00
compatibility. Setting this flag changes the following:
2014-09-11 20:06:57 +01:00
+ By default, YAP uses "immediate update semantics" for its
2014-07-03 13:56:08 +01:00
database, and not "logical update semantics", as per the standard,
( (see SICStus Prolog)). This affects assert/1,
retract/1, and friends.
2014-07-03 13:56:08 +01:00
Calling `set_prolog_flag(update_semantics,logical)` will switch
YAP to use logical update semantics.
2014-09-11 20:06:57 +01:00
+ By default, YAP implements the
atom_chars/2( (see Testing Terms)), and
number_chars/2, ( (see Testing Terms)),
2014-07-03 13:56:08 +01:00
built-ins as per the original Quintus Prolog definition, and
not as per the ISO definition.
Calling `set_prolog_flag(to_chars_mode,iso)` will switch
YAP to use the ISO definition for
atom_chars/2 and number_chars/2.
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ By default, YAP allows executable goals in directives. In ISO mode
2014-07-03 13:56:08 +01:00
most directives can only be called from top level (the exceptions are
set_prolog_flag/2 and op/3).
2014-07-03 13:56:08 +01:00
2014-09-11 20:06:57 +01:00
+ Error checking for meta-calls under ISO Prolog mode is stricter
2014-07-03 13:56:08 +01:00
than by default.
2014-09-11 20:06:57 +01:00
+ The strict_iso flag automatically enables the ISO Prolog
2014-07-03 13:56:08 +01:00
standard. This feature should disable all features not present in the
standard.
2014-07-03 13:56:08 +01:00
The following incompatibilities between YAP and the ISO standard are
known to still exist:
<ul>
<li>Currently, YAP does not handle overflow errors in integer
operations, and handles floating-point errors only in some
architectures. Otherwise, YAP follows IEEE arithmetic.
2014-07-03 13:56:08 +01:00
Please inform the authors on other incompatibilities that may still
exist.
## Predicate Index ##
## Concept Index ##