2011-01-04 03:55:42 +00:00
\input texinfo @c -*- mode: texinfo; coding: latin-1; -*-
2001-04-09 20:54:03 +01:00
@c %**start of header
@setfilename yap.info
@setcontentsaftertitlepage
@settitle YAP Prolog User's Manual
@c For double-sided printing, uncomment:
@c @setchapternewpage odd
@c %**end of header
2011-03-07 22:26:28 +00:00
@set VERSION 6.3.0
2010-10-28 18:05:18 +01:00
@set EDITION 4.2.9
@set UPDATED Oct 2010
2001-04-09 20:54:03 +01:00
@c Index for C-Prolog compatible predicate
@defindex cy
@c Index for predicates not in C-Prolog
@defindex cn
@c Index for predicates sort of (almost) in C-Prolog
@defindex ca
@c Index for SICStus Prolog compatible predicate
@defindex sy
@c Index for predicates not in SICStus Prolog
@defindex sn
@c Index for predicates sort of (almost) in SICStus Prolog
@defindex sa
@setchapternewpage odd
@c @smallbook
@comment %** end of header
2004-11-24 04:13:50 +00:00
@ifnottex
2001-04-09 20:54:03 +01:00
@format
2004-11-24 04:13:50 +00:00
@dircategory The YAP Prolog System
@direntry
2007-02-18 00:26:36 +00:00
* YAP: (yap). YAP Prolog User's Manual.
2004-11-24 04:13:50 +00:00
@end direntry
2001-04-09 20:54:03 +01:00
@end format
2004-11-24 04:13:50 +00:00
@end ifnottex
2001-04-09 20:54:03 +01:00
@titlepage
@title YAP User's Manual
@subtitle Version @value{ VERSION}
@author V@'{ @dotless{ i} } tor Santos Costa,
@author Lu@'{ @dotless{ i} } s Damas,
@author Rog@'erio Reis, and
@author R@'uben Azevedo
@page
@vskip 2pc
Copyright @copyright{ } 1989-2000 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.
@end titlepage
2004-11-24 04:13:50 +00:00
@ifnottex
2001-04-09 20:54:03 +01:00
@node Top, , , (dir)
@top YAP Prolog
This file documents the YAP Prolog System version @value{ VERSION} , 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.
2004-03-05 17:27:53 +00:00
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.
2001-04-09 20:54:03 +01:00
@menu
* Intro:: Introduction
* Install:: Installation
* Run:: Running YAP
* Syntax:: The syntax of YAP
* Loading Programs:: Loading Prolog programs
* Modules:: Using Modules in YAP
2007-02-18 00:26:36 +00:00
* Built-ins:: Built In Predicates
2001-04-09 20:54:03 +01:00
* Library:: Library Predicates
2005-10-31 18:12:51 +00:00
* SWI-Prolog:: SWI-Prolog emulation
2010-03-12 10:19:55 +00:00
* Global Variables :: Global Variables for Prolog
2001-04-09 20:54:03 +01:00
* Extensions:: Extensions to Standard YAP
* Rational Trees:: Working with Rational Trees
2007-02-18 00:26:36 +00:00
* Co-routining:: Changing the Execution of Goals
2001-04-09 20:54:03 +01:00
* Attributed Variables:: Using attributed Variables
2005-11-01 18:19:44 +00:00
* CLPR:: The CLP(R) System
2001-04-09 20:54:03 +01:00
* CHR:: The CHR System
2001-05-21 21:03:51 +01:00
* Logtalk:: The Logtalk Object-Oriented System
2010-09-07 15:51:59 +01:00
* MYDDAS:: The YAP Database Interface
2004-03-05 17:27:53 +00:00
* Threads:: Thread Library
2001-04-09 20:54:03 +01:00
* Parallelism:: Running in Or-Parallel
* Tabling:: Storing Intermediate Solutions of programs
* Low Level Profiling:: Profiling Abstract Machine Instructions
* Low Level Tracing:: Tracing at Abstract Machine Level
* Debugging:: Using the Debugger
* Efficiency:: Efficiency Considerations
* C-Interface:: Interfacing predicates written in C
2007-02-18 00:26:36 +00:00
* YAPLibrary:: Using YAP as a library in other programs
2001-04-09 20:54:03 +01:00
* Compatibility:: Compatibility with other Prolog systems
* Predicate Index:: An item for each predicate
* Concept Index:: An item for each concept
Built In Predicates
* Control:: Controlling the execution of Prolog programs
* Undefined Procedures:: Handling calls to Undefined Procedures
2008-02-22 15:08:37 +00:00
* Messages:: Message Handling in YAP
2001-04-09 20:54:03 +01:00
* Testing Terms:: Predicates on Terms
2007-12-29 12:26:41 +00:00
* Predicates on Atoms:: Manipulating Atoms
* Predicates on Characters:: Manipulating Characters
2001-04-09 20:54:03 +01:00
* Comparing Terms:: Comparison of Terms
* Arithmetic:: Arithmetic in YAP
* I/O:: Input/Output with YAP
* Database:: Modifying Prolog's Database
* Sets:: Finding All Possible Solutions
* Grammars:: Grammar Rules
* Preds:: Predicate Information
* OS:: Access to Operating System Functionality
* Term Modification:: Updating Prolog Terms
2007-09-21 15:18:12 +01:00
* Global Variables:: Manipulating Global Variables
2001-04-09 20:54:03 +01:00
* Profiling:: Profiling Prolog Execution
2002-09-03 21:14:13 +01:00
* Call Counting:: Limiting the Maximum Number of Reductions
2001-04-09 20:54:03 +01:00
* Arrays:: Supporting Global and Local Arrays
* Preds:: Information on Predicates
* Misc:: Miscellaneous Predicates
2001-04-16 17:41:04 +01:00
Subnodes of Running
2007-02-18 00:26:36 +00:00
* Running YAP Interactively:: Interacting with YAP
2002-01-23 15:17:56 +00:00
* Running Prolog Files:: Running Prolog files as scripts
2001-04-16 17:41:04 +01:00
2001-04-09 20:54:03 +01:00
Subnodes of Syntax
* Formal Syntax:: Syntax of Terms
* Tokens:: Syntax of Prolog tokens
2007-04-03 16:03:11 +01:00
* Encoding:: How characters are encoded and Wide Character Support
2001-04-09 20:54:03 +01:00
Subnodes of Tokens
* Numbers:: Integer and Floating-Point Numbers
* Strings:: Sequences of Characters
* Atoms:: Atomic Constants
* Variables:: Logical Variables
* Punctuation Tokens:: Tokens that separate other tokens
* Layout:: Comments and Other Layout Rules
Subnodes of Numbers
* Integers:: How Integers are read and represented
* Floats:: Floating Point Numbers
2007-04-03 16:03:11 +01:00
Subnodes of Encoding
* Stream Encoding:: How Prolog Streams can be coded
* BOM:: The Byte Order Mark
2001-04-09 20:54:03 +01:00
Subnodes of Loading Programs
* Compiling:: Program Loading and Updating
* Setting the Compiler:: Changing the compiler's parameters
2007-10-21 09:48:06 +01:00
* Conditional Compilation:: Compiling program fragments
2001-04-09 20:54:03 +01:00
* Saving:: Saving and Restoring Programs
Subnodes of Modules
* Module Concepts:: The Key Ideas in Modules
* Defining Modules:: How To Define a New Module
* Using Modules:: How to Use a Module
* Meta-Predicates in Modules:: How to Handle New Meta-Predicates
2007-12-05 12:17:25 +00:00
* Re-Exporting Modules:: How to Re-export Predicates From Other Modules
2001-04-09 20:54:03 +01:00
Subnodes of Input/Output
* Streams and Files:: Handling Streams and Files
* C-Prolog File Handling:: C-Prolog Compatible File Handling
* I/O of Terms:: Input/Output of terms
* I/O of Characters:: Input/Output of Characters
* I/O for Streams:: Input/Output using Streams
* C-Prolog to Terminal:: C-Prolog compatible Character I/O to terminal
* I/O Control:: Controlling your Input/Output
* Sockets:: Using Sockets from YAP
Subnodes of Database
* Modifying the Database:: Asserting and Retracting
* Looking at the Database:: Finding out what is in the Data Base
* Database References:: Using Data Base References
* Internal Database:: YAP's Internal Database
* BlackBoard:: Storing and Fetching Terms in the BlackBoard
Subnodes of Library
2010-04-20 23:06:41 +01:00
* Aggregate :: SWI and SICStus compatible aggregate library
2008-05-15 14:41:48 +01:00
* Apply:: SWI-Compatible Apply library.
2001-08-09 19:00:45 +01:00
* Association Lists:: Binary Tree Implementation of Association Lists.
2001-04-09 20:54:03 +01:00
* AVL Trees:: Predicates to add and lookup balanced binary trees.
* Heaps:: Labelled binary tree where the key of each node is less
2001-08-09 19:00:45 +01:00
than or equal to the keys of its children.
2010-08-04 23:26:50 +01:00
* Lambda:: Ulrich Neumerkel's Lambda Library
2008-09-01 02:41:09 +01:00
* LineUtilities:: Line Manipulation Utilities
2001-04-09 20:54:03 +01:00
* Lists:: List Manipulation
2010-04-20 23:06:41 +01:00
* MapList:: SWI-Compatible Apply library.
2007-07-03 16:24:20 +01:00
* matrix:: Matrix Objects
2007-06-29 02:33:35 +01:00
* MATLAB:: Matlab Interface
2006-08-26 00:22:12 +01:00
* Non-Backtrackable Data Structures:: Queues, Heaps, and Beams.
2001-04-09 20:54:03 +01:00
* Ordered Sets:: Ordered Set Manipulation
* Pseudo Random:: Pseudo Random Numbers
* Queues:: Queue Manipulation
* Random:: Random Numbers
2006-08-02 19:18:31 +01:00
* Read Utilities:: SWI inspired utilities for fast stream scanning.
2002-06-18 05:23:15 +01:00
* Red-Black Trees:: Predicates to add, lookup and delete in red-black binary trees.
2001-04-09 20:54:03 +01:00
* RegExp:: Regular Expression Manipulation
2010-06-17 00:32:52 +01:00
* shlib:: SWI Prolog shlib library
2001-04-09 20:54:03 +01:00
* Splay Trees:: Splay Trees
* String I/O:: Writing To and Reading From Strings
2001-05-24 16:26:41 +01:00
* System:: System Utilities
2001-04-09 20:54:03 +01:00
* Terms:: Utilities on Terms
2002-10-11 04:39:11 +01:00
* Cleanup:: Call With registered Cleanup Calls
2001-04-09 20:54:03 +01:00
* Timeout:: Call With Timeout
* Trees:: Updatable Binary Trees
2007-09-16 21:27:57 +01:00
* Tries:: Trie Data Structure
2001-04-09 20:54:03 +01:00
* UGraphs:: Unweighted Graphs
2006-04-10 20:24:52 +01:00
* DGraphs:: Directed Graphs Implemented With Red-Black Trees
* UnDGraphs:: Undirected Graphs Using DGraphs
2006-06-02 05:23:09 +01:00
* LAM:: LAM MPI
2010-12-02 19:57:55 +00:00
* Block Diagram:: Block Diagrams of Prolog code
2006-06-02 05:23:09 +01:00
2001-04-09 20:54:03 +01:00
Subnodes of Debugging
* Deb Preds:: Debugging Predicates
* Deb Interaction:: Interacting with the debugger
Subnodes of Compatibility
* C-Prolog:: Compatibility with the C-Prolog interpreter
* SICStus Prolog:: Compatibility with the Quintus and SICStus Prolog systems
* ISO Prolog:: Compatibility with the ISO Prolog standard
Subnodes of Attributes
* Attribute Declarations:: Declaring New Attributes
* Attribute Manipulation:: Setting and Reading Attributes
* Attributed Unification:: Tuning the Unification Algorithm
* Displaying Attributes:: Displaying Attributes in User-Readable Form
* Projecting Attributes:: Obtaining the Attributes of Interest
* Attribute Examples:: Two Simple Examples of how to use Attributes.
2005-10-31 18:12:51 +00:00
Subnodes of SWI-Prolog
* Invoking Predicates on all Members of a List :: maplist and friends
* SWI-Prolog Global Variables :: Emulating SWI-like attributed variables
2005-11-01 18:19:44 +00:00
@c Subnodes of CLP(Q,R)
@c * Introduction to CLPQ:: The CLP(Q,R) System
@c * Referencing CLPQR:: How to Reference CLP(Q,R)
@c * CLPQR Acknowledgments:: Acknowledgments for CLP(Q,R)
@c * Solver Interface:: Using the CLP(Q,R) System
@c * Notational Conventions:: The CLP(Q,R) Notation
@c * Solver Predicates:: The CLP(Q,R) Interface Predicates
@c * Unification:: Unification and CLP(Q,R)
@c * Feedback and Bindings:: Information flow in CLP(Q,R)
@c * Linearity and Nonlinear Residues:: Linear and Nonlinear Constraints
@c * How Nonlinear Residues are made to disappear:: Handling Nonlinear Residues
@c * Isolation Axioms:: Isolating the Variable to be Solved
@c * Numerical Precision and Rationals:: Reals and Rationals
@c * Projection and Redundancy Elimination:: Presenting Bindings for Query Variables
@c * Variable Ordering:: Linear Relationships between Variables
@c * Turning Answers into Terms:: using @code{ call_ residue/2}
@c * Projecting Inequalities:: How to project linear inequations
@c * Why Disequations:: Using Disequations in CLP(Q,R)
@c * Syntactic Sugar:: An easier syntax
@c * Monash Examples:: The Monash Library
@c * Compatibility Notes:: CLP(Q,R) and the clp(R) interpreter
@c * A Mixed Integer Linear Optimization Example:: MIP models
@c * Implementation Architecture:: CLP(Q,R) Components
@c * Fragments and Bits:: Final Last Words on CLP(Q,R)
@c * CLPQR Bugs:: Bugs in CLP(Q,R)
@c * CLPQR References:: References for CLP(Q,R)
Subnodes of CLPR
* CLPR Solver Predicates::
* CLPR Syntax::
* CLPR Unification::
* CLPR Non-linear Constraints::
2001-04-09 20:54:03 +01:00
Subnodes of CHR
* CHR Introduction::
2005-11-01 18:19:44 +00:00
* CHR Syntax and Semantics::
* CHR in YAP Programs::
2001-04-09 20:54:03 +01:00
* CHR Debugging::
2005-11-01 18:19:44 +00:00
* CHR Examples::
* CHR Compatibility::
* CHR Guidelines::
2001-04-09 20:54:03 +01:00
2001-05-24 16:26:41 +01:00
Subnodes of C-Interface
* Manipulating Terms:: Primitives available to the C programmer
2007-12-05 12:17:25 +00:00
* Manipulating Terms:: Primitives available to the C programmer
2001-05-24 16:26:41 +01:00
* Unifying Terms:: How to Unify Two Prolog Terms
* Manipulating Strings:: From character arrays to Lists of codes and back
2007-02-18 00:26:36 +00:00
* Memory Allocation:: Stealing Memory From YAP
* Controlling Streams:: Control How YAP sees Streams
2010-08-02 19:48:17 +01:00
* Utility Functions:: From character arrays to Lists of codes and back
2007-02-18 00:26:36 +00:00
* Calling YAP From C:: From C to YAP to C to YAP
2007-12-05 12:17:25 +00:00
* Module Manipulation in C:: Create and Test Modules from within C
2010-08-31 04:25:56 +01:00
* Miscellaneous C-Functions:: Other Helpful Interface Functions
2001-05-24 16:26:41 +01:00
* Writing C:: Writing Predicates in C
* Loading Objects:: Loading Object Files
2007-02-18 00:26:36 +00:00
* Save& Rest:: Saving and Restoring
* YAP4 Notes:: Changes in Foreign Predicates Interface
2001-05-24 16:26:41 +01:00
2001-04-09 20:54:03 +01:00
Subnodes of C-Prolog
2005-10-31 18:12:51 +00:00
* Major Differences with C-Prolog:: Major Differences between YAP and C-Prolog
2007-02-18 00:26:36 +00:00
* Fully C-Prolog Compatible:: YAP predicates fully compatible with
2001-04-09 20:54:03 +01:00
C-Prolog
2007-02-18 00:26:36 +00:00
* Not Strictly C-Prolog Compatible:: YAP predicates not strictly as C-Prolog
* Not in C-Prolog:: YAP predicates not available in C-Prolog
2001-04-09 20:54:03 +01:00
* Not in YAP:: C-Prolog predicates not available in YAP
Subnodes of SICStus Prolog
2005-10-31 18:12:51 +00:00
* Major Differences with SICStus:: Major Differences between YAP and SICStus Prolog
2007-02-18 00:26:36 +00:00
* Fully SICStus Compatible:: YAP predicates fully compatible with
2001-04-09 20:54:03 +01:00
SICStus Prolog
2007-02-18 00:26:36 +00:00
* Not Strictly SICStus Compatible:: YAP predicates not strictly as
2001-04-09 20:54:03 +01:00
SICStus Prolog
2007-02-18 00:26:36 +00:00
* Not in SICStus Prolog:: YAP predicates not available in SICStus Prolog
2001-04-09 20:54:03 +01:00
Tables
* Operators:: Predefined operators
@end menu
2004-11-24 04:13:50 +00:00
@end ifnottex
2001-04-09 20:54:03 +01:00
@node Intro, Install, , Top
@unnumbered Introduction
This document provides User information on version @value{ VERSION} of
2007-02-18 00:26:36 +00:00
YAP (@emph{ Yet Another Prolog} ). The YAP Prolog System is a
2001-04-09 20:54:03 +01:00
high-performance Prolog compiler developed at LIACC, Universidade do
Porto. YAP provides several important features:
@itemize @bullet
2007-02-18 00:26:36 +00:00
@item Speed: YAP is widely considered one of the fastest available
Prolog systems.
2001-04-09 20:54:03 +01:00
@item Functionality: it supports stream I/O, sockets, modules,
exceptions, Prolog debugger, C-interface, dynamic code, internal
2008-02-02 03:35:35 +00:00
database, DCGs, saved states, co-routining, arrays, threads.
2001-04-09 20:54:03 +01:00
@item We explicitly allow both commercial and non-commercial use of YAP.
@end itemize
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{ The Art of Prolog} , by
L. Sterling and E. Shapiro, published by "The MIT Press, Cambridge
MA". Other references should include the classical @cite{ Programming in
Prolog} , by W.F. Clocksin and C.S. Mellish, published by
Springer-Verlag.
2005-10-28 18:55:30 +01:00
YAP 4.3 is known to build with many versions of gcc (<= gcc-2.7.2, >=
2001-04-09 20:54:03 +01:00
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
2005-10-28 18:55:30 +01:00
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.
2001-04-09 20:54:03 +01:00
2005-10-28 18:55:30 +01:00
The overall copyright and permission notice for YAP4.3 can be found in
2001-04-09 20:54:03 +01:00
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,
2007-02-18 00:26:36 +00:00
please send e-mail to @email{ yap-users AT lists.sourceforge.net} . To
subscribe to the mailing list, visit the page
@url{ https://lists.sourceforge.net/lists/listinfo/yap-users} .
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
On-line documentation is available for YAP at:
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@url{ http://www.ncc.up.pt/~vsc/YAP/}
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
Recent versions of YAP, including both source and selected binaries,
2001-04-09 20:54:03 +01:00
can be found from this same URL.
This manual was written by V@'{ @dotless{ i} } tor Santos Costa,
Lu@'{ @dotless{ i} } s Damas, Rog@'erio Reis, and R@'uben 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 also used comments from the Edinburgh Prolog
library written by R. O'Keefe. 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
2002-10-11 04:39:11 +01:00
authorization to include these packages.
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
The packages are, in alphabetical order:
2001-04-09 20:54:03 +01:00
@itemize @bullet
2005-11-01 18:19:44 +00:00
@item The CHR package developed by Tom Schrijvers,
Christian Holzbaur, and Jan Wielemaker.
2001-04-09 20:54:03 +01:00
2006-12-30 14:50:27 +00:00
@item The CLP(R) package developed by Leslie De Koninck, Bart Demoen, Tom
Schrijvers, and Jan Wielemaker, based on the CLP(Q,R) implementation
2009-04-25 16:59:23 +01:00
by Christian Holzbaur.
2001-04-09 20:54:03 +01:00
2001-05-21 21:03:51 +01:00
@item The Logtalk Object-Oriented system is developed at the University
2006-12-30 14:50:27 +00:00
of Beira Interior, Portugal, by Paulo Moura:
2001-05-21 21:03:51 +01:00
2006-12-30 14:50:27 +00:00
@url{ http://logtalk.org/}
2008-06-07 11:11:44 +01:00
Logtalk is no longer distributed with YAP. Please use the Logtalk standalone
installer for a smooth integration with YAP.
2001-05-21 21:03:51 +01:00
@item The Pillow WEB library developed at Universidad Politecnica de
2001-04-09 20:54:03 +01:00
Madrid by the CLIP group. This package is distributed under the FSF's
LGPL. Documentation on this package is distributed separately from
yap.tex.
2002-05-24 01:13:15 +01:00
2006-12-30 14:50:27 +00:00
@item The @code{ yap2swi} library implements some of the functionality of
2002-05-24 01:13:15 +01:00
SWI's PL interface. Please do refer to the SWI-Prolog home page:
2005-11-01 18:19:44 +00:00
@url{ http://www.swi-prolog.org}
2002-05-24 01:13:15 +01:00
for more information on SWI-Prolog and for a detailed description of its
2006-12-30 14:50:27 +00:00
foreign language interface.
2002-05-24 01:13:15 +01:00
2001-04-09 20:54:03 +01:00
@end itemize
@node Install, Run, Intro, Top
@chapter Installing YAP
@cindex installation
@menu
* Configuration Options:: Tuning the Functionality of YAP Machine
* Machine Options:: Tuning YAP for a Particular Machine and Compiler
@end menu
To compile YAP it should be sufficient to:
@enumerate
@item @code{ mkdir ARCH} .
@item @code{ cd ARCH} .
2002-04-06 05:23:37 +01:00
@item @code{ ../configure ...options...} .
Notice that by default @code{ configure} gives you a vanilla
2007-02-18 00:26:36 +00:00
configuration. For instance, in order to use co-routining and/or CLP
2002-04-06 05:23:37 +01:00
you need to do
@example
../configure --enable-coroutining ...options...
@end example
Please @pxref{ Configuration Options} for extra options.
2001-04-09 20:54:03 +01:00
@item check the Makefile for any extensions or changes you want to
make.
2007-02-18 00:26:36 +00:00
YAP uses @code{ autoconf} . Recent versions of YAP try to follow GNU
2001-04-09 20:54:03 +01:00
conventions on where to place software.
@itemize @bullet
@item The main executable is placed at @code{ BINDIR} . This executable is
actually a script that calls the Prolog engine, stored at @code{ LIBDIR} .
@item @code{ LIBDIR} is the directory where libraries are stored. YAPLIBDIR is a
2002-10-11 04:39:11 +01:00
subdirectory that contains the Prolog engine and a Prolog library.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@item @code{ INCLUDEDIR} is used if you want to use YAP as a library.
2001-04-09 20:54:03 +01:00
@item @code{ INFODIR} is where to store @code{ info} files. Usually
@code{ /usr/local/info} , @code{ /usr/info} , or @code{ /usr/share/info} .
@end itemize
@item @code{ make} .
@item If the compilation succeeds, try @code{ ./yap} .
@item If you feel satisfied with the result, do @code{ make install} .
@item @code{ make install-info} will create the info files in the
standard info directory.
@item @code{ make html} will create documentation in html format in the
predefined directory.
In most systems you will need to be superuser in order to do @code{ make
install} and @code{ make info} on the standard directories.
@end enumerate
@node Configuration Options, Machine Options, ,Install
@section Tuning the Functionality of YAP
@cindex syntax
2007-02-18 00:26:36 +00:00
Compiling YAP with the standard options give you a plain vanilla
Prolog. You can tune YAP to include extra functionality by calling
2001-04-09 20:54:03 +01:00
@code{ configure} with the appropriate options:
@itemize @bullet
@item @code{ --enable-rational-trees=yes} gives you support for infinite
rational trees.
@item @code{ --enable-coroutining=yes} gives you support for coroutining,
including freezing of goals, attributed variables, and
constraints. This will also enable support for infinite rational
trees.
@item @code{ --enable-depth-limit=yes} allows depth limited evaluation, say for
implementing iterative deepening.
@item @code{ --enable-low-level-tracer=yes} allows support for tracing all calls,
retries, and backtracks in the system. This can help in debugging your
application, but results in performance loss.
@item @code{ --enable-wam-profile=yes} allows profiling of abstract machine
instructions. This is useful when developing YAP, should not be so
useful for normal users.
2002-08-19 00:18:18 +01:00
@item @code{ --enable-condor=yes} allows using the Condor system that
support High Throughput Computing (HTC) on large collections of
distributively owned computing resources.
2005-04-07 18:56:58 +01:00
@item @code{ --enable-tabling=yes} allows tabling support. This option
is still experimental.
2001-04-16 17:41:04 +01:00
2001-04-09 20:54:03 +01:00
@item @code{ --enable-parallelism=@{ env-copy,sba,a-cow@} } allows
or-parallelism supported by one of these three forms. This option is
still highly experimental.
2007-02-26 19:03:19 +00:00
@item @code{ --with-max-workers} allows definition of the maximum
2008-04-02 23:59:52 +01:00
number of parallel processes (its value can be consulted at runtime
using the flag @code{ max_ workers} ).
2007-02-26 19:03:19 +00:00
2001-04-16 17:41:04 +01:00
@item @code{ --with-gmp[=DIR]} give a path to where one can find the
@code{ GMP} library if not installed in the default path.
2006-05-25 23:56:25 +01:00
@item @code{ --enable-threads} allows using of the multi-threading
predicates provided by YAP. Depending on the operating system, the
option @code{ --enable-pthread-locking} may also need to be used.
2007-02-26 19:03:19 +00:00
@item @code{ --with-max-threads} allows definition of the maximum
2008-04-02 23:45:55 +01:00
number of threads (the default value is 1024; its value can be consulted
at runtime using the flag @code{ max_ threads} ).
2007-02-26 19:03:19 +00:00
2001-04-09 20:54:03 +01:00
@end itemize
2006-05-25 23:56:25 +01:00
Next section discusses machine dependent details.
2001-04-09 20:54:03 +01:00
@node Machine Options, , Configuration Options,Install
@section Tuning YAP for a Particular Machine and Compiler
@cindex machine optimizations
The default options should give you best performance under
@code{ GCC} . Although the system is tuned for this compiler
2007-02-18 00:26:36 +00:00
we have been able to compile versions of YAP under lcc in Linux,
2001-04-09 20:54:03 +01:00
Sun's cc compiler, IBM's xlc, SGI's cc, and Microsoft's Visual C++
6.0.
@menu
2002-10-11 04:39:11 +01:00
* Tuning for GCC:: Using the GNUCC compiler
2001-04-09 20:54:03 +01:00
* Compiling Under Visual C++:: Using Microsoft's Visual C++ environment
* Tuning for SGI cc:: Compiling Under SGI's @code{ cc}
@end menu
@node Tuning for GCC, Compiling Under Visual C++, , Machine Options
@section Tuning YAP for @code{ GCC} .
2007-02-18 00:26:36 +00:00
YAP has been developed to take advantage of @code{ GCC} (but not to
2001-04-09 20:54:03 +01:00
depend on it). The major advantage of @code{ 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
@itemize @bullet
@item @code{ --enable-max-performance=yes} will try to support the best
2002-10-11 04:39:11 +01:00
available flags for a specific architectural model. Currently, the option
2001-04-09 20:54:03 +01:00
assumes a recent version of @code{ GCC} .
2007-02-18 00:26:36 +00:00
@item @code{ --enable-debug-yap} compiles YAP so that it can be debugged
2001-04-09 20:54:03 +01:00
by tools such as @code{ dbx} or @code{ gdb} .
@end itemize
Here follow a few hints:
On x86 machines the flags:
@example
YAP_ EXTRAS= ... -DBP_ FREE=1
@end example
tells us to use the @code{ %bp} register (frame-pointer) as the emulator's
program counter. This seems to be stable and is now default.
On Sparc/Solaris2 use:
@example
YAP_ EXTRAS= ... -mno-app-regs -DOPTIMISE_ ALL_ REGS_ FOR_ SPARC=1
@end example
and YAP will get two extra registers! This trick does not work on
SunOS 4 machines.
2002-10-11 04:39:11 +01:00
Note that versions of GCC can be tweaked to recognize different
2006-02-08 19:13:11 +00:00
processors within the same instruction set, e.g. 486, Pentium, and
2001-04-09 20:54:03 +01:00
PentiumPro for the x86; or Ultrasparc, and Supersparc for
2007-02-18 00:26:36 +00:00
Sparc. Unfortunately, some of these tweaks do may make YAP run slower or
2001-04-09 20:54:03 +01:00
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
@code{ -march=XXX} for recent versions of GCC/EGCS. In the case of
@code{ GCC2.7} and other recent versions of @code{ GCC} you can check:
@table @code
@item 486:
2002-10-11 04:39:11 +01:00
In order to take advantage of 486 specific optimizations in GCC 2.7.*:
2001-04-09 20:54:03 +01:00
@example
YAP_ EXTRAS= ... -m486 -DBP_ FREE=1
@end example
@item Pentium:
@example
2001-04-16 17:41:04 +01:00
YAP_ EXTRAS= ... -m486 -malign-loops=2 -malign-jumps=2 \
-malign-functions=2
@end example
2001-04-09 20:54:03 +01:00
@item PentiumPro and other recent Intel and AMD machines:
PentiumPros are known not to require alignment. Check your version of
@code{ GCC} for the best @code{ -march} option.
@item Super and UltraSparcs:
@example
YAP_ EXTRAS= ... -msupersparc
@end example
@item MIPS: if have a recent machine and you need a 64 bit wide address
space you can use the abi 64 bits or eabi option, as in:
@example
CC="gcc -mabi=64" ./configure --...
@end example
Be careful. At least for some versions of @code{ GCC} , compiling with
@code{ -g} seems to result in broken code.
2002-11-12 19:53:52 +00:00
@item WIN32: GCC is distributed in the MINGW32 and CYGWIN packages.
The Mingw32 environment is available from the URL:
@code{ http://www.mingw.org}
You will need to install the @code{ msys} and @code{ 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
2007-02-18 00:26:36 +00:00
the @code{ gmp} multi-precision arithmetic library. If you do setup YAP
2002-11-12 19:53:52 +00:00
with @code{ gmp} note that @code{ libgmp.dll} must be in the path,
2007-02-18 00:26:36 +00:00
otherwise YAP will not be able to execute.
2002-11-12 19:53:52 +00:00
2001-04-16 17:41:04 +01:00
CygWin environment is available from the URL:
2002-11-12 19:53:52 +00:00
@code{ http://www.cygwin.com}
2001-04-16 17:41:04 +01:00
@noindent
2002-11-12 19:53:52 +00:00
and mirrors. We suggest using recent versions of the cygwin shell. The
compilation steps under the cygwin shell are as follows:
2001-04-09 20:54:03 +01:00
@example
mkdir cyg
2001-04-16 17:41:04 +01:00
$ YAPSRC / configure - - enable - coroutining \\
2002-11-12 19:53:52 +00:00
--enable-depth-limit \\
2001-04-16 17:41:04 +01:00
--enable-max-performance
2001-04-09 20:54:03 +01:00
make
make install
@end example
2007-05-06 10:55:12 +01:00
By default, YAP will use the @code{ -mno-cygwin} option to
2002-03-12 06:35:11 +00:00
disable the use of the cygwin dll and to enable the mingw32 subsystem
2007-02-18 00:26:36 +00:00
instead. YAP thus will not need the cygwin dll. It instead accesses
2002-03-12 06:35:11 +00:00
the system's @code{ CRTDLL.DLL} @code{ C} run time library supplied with
Win32 platforms through the mingw32 interface. Note that some older
WIN95 systems may not have @code{ CRTDLL.DLL} , in this case it should
be sufficient to import the file from a newer WIN95 or WIN98 machine.
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
You should check the default installation path which is set to
2007-02-18 00:26:36 +00:00
@code{ /YAP} in the standard Makefile. This string will usually
be expanded into @code{ c:\YAP } by Windows.
2001-04-09 20:54:03 +01:00
2007-05-06 10:55:12 +01:00
The cygwin environment does not provide @t{ gmp} on the MINGW
subsystem. You can fetch a dll for the @t{ gmp} library from
@url{ http://www.sf.net/projects/mingwrep} .
2002-03-12 06:35:11 +00:00
2007-02-18 00:26:36 +00:00
It is also possible to configure YAP to be a part of the cygwin
2002-03-12 06:35:11 +00:00
environment. In this case you should use:
@example
mkdir cyg
2007-05-06 10:55:12 +01:00
$ YAPSRC / configure - - enable - max - performance \\
2002-03-12 06:35:11 +00:00
--enable-cygwin=yes
make
make install
@end example
2007-02-18 00:26:36 +00:00
YAP will then compile using the cygwin library and will be installed
in cygwin's @code{ /usr/local} . You can use YAP from a cygwin console,
2002-11-12 19:53:52 +00:00
or as a standalone application as long as it can find
2007-05-06 10:55:12 +01:00
@code{ cygwin1.dll} in its path. Note that you may use to use
@code{ --enable-depth-limit} for Aleph compatibility, and that you may
want to be sure that GMP is installed.
2002-03-12 06:35:11 +00:00
2001-04-09 20:54:03 +01:00
@end table
@node Compiling Under Visual C++, Tuning for SGI cc, Tuning for GCC, Machine Options
2001-06-19 18:47:45 +01:00
@subsection Compiling Under Visual C++
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
YAP compiles cleanly under Microsoft's Visual C++ release 6.0. We next
give a step-by-step tutorial on how to compile YAP manually using this
2001-04-09 20:54:03 +01:00
environment.
2007-02-18 00:26:36 +00:00
First, it is a good idea to build YAP as a DLL:
2001-04-09 20:54:03 +01:00
@enumerate
@item create a project named yapdll using File.New. The project will be a
DLL project, initially empty.
Notice that either the project is named yapdll or you must replace the
2002-10-11 04:39:11 +01:00
preprocessors variable @var{ YAPDLL_ EXPORTS} to match your project names
2007-02-18 00:26:36 +00:00
in the files @code{ YAPInterface.h} and @code{ c_ interface.c} .
2001-04-09 20:54:03 +01:00
@item add all .c files in the @var{ $ YAPSRC / C } directory and in the
2007-02-18 00:26:36 +00:00
@var{ $ YAPSRC \OPTYAP } directory to the Project's @code { Source Files } ( use
2001-04-09 20:54:03 +01:00
FileView).
@item add all .h files in the @var{ $ YAPSRC / H } directory,
2007-02-18 00:26:36 +00:00
@var{ $ YAPSRC \include } directory and in the @var { $ YAPSRC\OPTYAP }
2001-04-09 20:54:03 +01:00
subdirectory to the Project's @code{ Header Files} .
@item Ideally, you should now use @code{ m4} to generate extra .h from .m4 files and use
@code{ configure} to create a @code{ config.h} . Or, you can be lazy, and
fetch these files from @var{ $ YAPSRC \VC \include } .
@item You may want to go to @code{ Build.Set Active Configuration} and set @code{ Project
Type} to @code{ Release}
2007-02-18 00:26:36 +00:00
@item To use YAP's own include directories you have to set the Project
2001-04-16 17:41:04 +01:00
option @code{ Project.Project Settings.C/C++.Preprocessor.Additional
Include Directories} to include the directories @var{ $ YAPSRC \H } ,
2007-02-18 00:26:36 +00:00
@var{ $ YAPSRC \VC \include } , @var { $ YAPSRC\OPTYAP } and
2001-04-16 17:41:04 +01:00
@var{ $ YAPSRC \include } . The syntax is:
2001-04-09 20:54:03 +01:00
@example
2007-02-18 00:26:36 +00:00
$ YAPSRC \H , $ YAPSRC\VC \include , $ YAPSRC \OPTYAP , $ YAPSRC\include
2001-04-09 20:54:03 +01:00
@end example
@item Build: the system should generate an @code{ yapdll.dll} and an @code{ yapdll.lib} .
@item Copy the file @code{ yapdll.dll} to your path. The file
@code{ yapdll.lib} should also be copied to a location where the linker can find it.
@end enumerate
2007-02-18 00:26:36 +00:00
Now you are ready to create a console interface for YAP:
2001-04-09 20:54:03 +01:00
@enumerate
@item create a second project say @code{ wyap} with @code{ File.New} . The project will be a
WIN32 console project, initially empty.
@item add @var{ $ YAPSRC \console \yap .c } to the @code { Source Files } .
@item add @var{ $ YAPSRC \VC \include \config .h } and the files in @var { $ YAPSRC\include } to
the @code{ Header Files} .
@item You may want to go to @code{ Build.Set Active Configuration} and set
@code{ Project Type} to @code{ Release} .
@item you will eventually need to bootstrap the system by booting from
@code{ boot.yap} , so write:
@example
2001-06-12 15:07:59 +01:00
-b $ YAPSRC \pl \boot .yap
2001-04-09 20:54:03 +01:00
@end example
2001-06-12 15:07:59 +01:00
in @code{ Project.Project Settings.Debug.Program Arguments} .
2001-04-09 20:54:03 +01:00
@item You need the sockets and yap libraries. Add
@example
ws2_ 32.lib yapdll.lib to
@end example
to
to @code{ Project.Project Settings.Link.Object/Library Modules}
You may also need to set the @code{ Link Path} so that VC++ will find @code{ yapdll.lib} .
@item set @code{ Project.Project Settings.C/C++.Preprocessor.Additional
Include Directories} to include the @var{ $ YAPSRC / VC / include } and
@var{ $ YAPSRC / include } .
The syntax is:
@example
$ YAPSRC \VC \include , $ YAPSRC\include
@end example
@item Build the system.
@item Use @code{ Build.Start Debug} to boot the system, and then create the saved state with
@example
['$ YAPSRC \\ pl \\ init' ] .
2009-05-02 20:06:24 +01:00
save_ program('startup.yss').
2001-04-09 20:54:03 +01:00
^ Z
@end example
2007-02-18 00:26:36 +00:00
That's it, you've got YAP and the saved state!
2001-04-09 20:54:03 +01:00
@end enumerate
2007-02-18 00:26:36 +00:00
The $ YAPSRC \VC directory has the make files to build YAP 4 . 3 . 17 under VC + + 6 . 0 .
2001-04-09 20:54:03 +01:00
@node Tuning for SGI cc, , Compiling Under Visual C++ ,Machine Options
@subsection Compiling Under SGI's cc
YAP should compile under the Silicon Graphic's @code{ cc} compiler,
although we advise using the GNUCC compiler, if available.
@table @code
2001-04-16 17:41:04 +01:00
@item 64 bit
Support for 64 bits should work by using (under Bourne shell syntax):
2001-04-09 20:54:03 +01:00
@example
CC="cc -64" $ YAP _ SRC _ PATH / configure - - ...
@end example
@end table
2002-01-23 15:17:56 +00:00
2001-04-09 20:54:03 +01:00
@node Run, Syntax, Install, Top
@chapter Running YAP
2001-04-16 17:41:04 +01:00
@menu
2007-02-18 00:26:36 +00:00
* Running YAP Interactively:: Interacting with YAP
2002-01-23 15:17:56 +00:00
* Running Prolog Files:: Running Prolog files as scripts
2001-04-16 17:41:04 +01:00
@end menu
2001-04-09 20:54:03 +01:00
@cindex booting
2007-02-18 00:26:36 +00:00
We next describe how to invoke YAP in Unix systems.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@node Running YAP Interactively, ,Running Prolog Files,Run
@section Running YAP Interactively
2001-04-16 17:41:04 +01:00
2007-02-18 00:26:36 +00:00
Most often you will want to use YAP in interactive mode. Assuming that
2001-04-16 17:41:04 +01:00
YAP is in the user's search path, the top-level can be invoked under
Unix with the following command:
2001-04-09 20:54:03 +01:00
@example
yap [-s n] [-h n] [-a n] [-c IP_ HOST port ] [filename]
@end example
@noindent
2001-04-16 17:41:04 +01:00
All the arguments and flags are optional and have the following meaning:
2001-04-09 20:54:03 +01:00
@table @code
@item -?
print a short error message.
2010-04-12 17:22:03 +01:00
@item -s@var{ Size}
allocate @var{ Size} K bytes for local and global stacks. The user may
specify @t{ M} bytes.
@item -h@var{ Size}
allocate @var{ Size} K bytes for heap and auxiliary stacks
@item -t@var{ Size}
allocate @var{ Size} K bytes for the trail stack
@item -L@var{ Size}
SWI-compatible option to allocate @var{ Size} K bytes for local and global stacks, the local stack
cannot be expanded. To avoid confusion with the load option, @var{ Size}
must immediately follow the letter @code{ L} .
@item -G@var{ Size}
SWI-compatible option to allocate @var{ Size} K bytes for local and global stacks; the global
stack cannot be expanded
@item -T@var{ Size}
SWI-compatible option to allocate @var{ Size} K bytes for the trail stack; the trail cannot be expanded.
2001-04-09 20:54:03 +01:00
@item -l @var{ YAP_ FILE}
compile the Prolog file @var{ YAP_ FILE} before entering the top-level.
@item -L @var{ YAP_ FILE}
compile the Prolog file @var{ YAP_ FILE} and then halt. This option is
useful for implementing scripts.
2005-10-28 18:55:30 +01:00
@item -g @var{ Goal}
run the goal @var{ Goal} before top-level. The goal is converted from
an atom to a Prolog term.
@item -z @var{ Goal}
run the goal @var{ Goal} as top-level. The goal is converted from
an atom to a Prolog term.
2001-04-09 20:54:03 +01:00
@item -b @var{ BOOT_ FILE}
2001-04-16 17:41:04 +01:00
boot code is in Prolog file @var{ BOOT_ FILE} . The filename must define
2008-04-04 23:05:34 +01:00
the predicate @code{ '$ live' / 0 } .
2001-04-09 20:54:03 +01:00
@item -c @t{ IP_ HOST} @t{ port}
connect standard streams to host @t{ IP_ HOST} at port @t{ port}
@item filename
restore state saved in the given file
2008-03-13 18:41:52 +00:00
@item -f
do not consult initial files
@item -q
do not print informational messages
2001-04-09 20:54:03 +01:00
@item --
separator for arguments to Prolog code. These arguments are visible
2008-04-04 23:05:34 +01:00
through the @code{ unix/1} built-in predicate.
2001-04-09 20:54:03 +01:00
@end table
Note that YAP will output an error message on the following conditions:
@itemize @bullet
@item
a file name was given but the file does not exist or is not a saved
YAP state;
@item
the necessary amount of memory could not be allocated;
@item
the allocated memory is not enough to restore the state.
@end itemize
When restoring a saved state, YAP will allocate the
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,
2009-05-02 20:06:24 +01:00
YAP restores the file @samp{ startup.yss} from the current directory or from
2001-04-09 20:54:03 +01:00
the YAP library.
@cindex environment variables
@findex YAPBINDIR
2002-01-23 15:17:56 +00:00
@itemize @bullet
@item
YAP usually boots from a saved state. The saved state will use the default
2001-04-09 20:54:03 +01:00
installation directory to search for the YAP binary unless you define
the environment variable YAPBINDIR.
@findex YAPLIBDIR
2002-01-23 15:17:56 +00:00
@item
2001-04-09 20:54:03 +01:00
YAP always tries to find saved states from the current directory
first. If it cannot it will use the environment variable YAPLIBDIR, if
defined, or search the default library directory.
2002-01-23 15:17:56 +00:00
@findex YAPSHAREDIR
@item
YAP will try to find library files from the YAPSHAREDIR/library
directory.
@end itemize
2007-02-18 00:26:36 +00:00
@node Running Prolog Files, Running YAP Interactively, , Run
2002-01-23 15:17:56 +00:00
@section Running Prolog Files
2001-04-16 17:41:04 +01:00
YAP can also be used to run Prolog files as scripts, at least in
2008-08-01 22:44:25 +01:00
Unix-like environments. A simple example is shown next (do not forget
that the shell comments are very important):
2001-04-09 20:54:03 +01:00
@example
@cartouche
2006-03-03 23:11:30 +00:00
#!/usr/local/bin/yap -L --
2001-04-09 20:54:03 +01:00
#
2007-02-18 00:26:36 +00:00
# Hello World script file using YAP
2001-04-09 20:54:03 +01:00
#
2006-03-20 19:51:44 +00:00
# put a dot because of syntax errors .
2001-04-09 20:54:03 +01:00
:- write('Hello World'), nl.
@end cartouche
@end example
2001-04-16 17:41:04 +01:00
The @code{ #!} characters specify that the script should call the binary
2007-02-18 00:26:36 +00:00
file YAP. Notice that many systems will require the complete path to the
YAP binary. The @code{ -L} flag indicates that YAP should consult the
2001-05-28 20:54:53 +01:00
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 @code{ #} (the comment sign for Unix's shell). YAP will
consult the file and execute any commands.
2001-04-16 17:41:04 +01:00
A slightly more sophisticated example is:
@example
@cartouche
2003-02-07 12:05:39 +00:00
#!/usr/bin/yap -L --
2001-04-16 17:41:04 +01:00
#
2007-02-18 00:26:36 +00:00
# Hello World script file using YAP
2002-10-22 05:38:26 +01:00
# .
2001-04-16 17:41:04 +01:00
:- initialization(main).
main :- write('Hello World'), nl.
@end cartouche
@end example
2007-02-18 00:26:36 +00:00
The @code{ initialization} directive tells YAP to execute the goal main
2001-04-16 17:41:04 +01:00
after consulting the file. Source code is thus compiled and @code{ main}
2002-10-22 05:38:26 +01:00
executed at the end. The @code{ .} is useful while debugging the script
as a Prolog program: it guarantees that the syntax error will not
propagate to the Prolog code.
2001-04-09 20:54:03 +01:00
2002-10-22 05:38:26 +01:00
Notice that the @code{ --} is required so that the shell passes the extra
arguments to YAP. As an example, consider the following script
@code{ dump_ args} :
2001-05-28 20:54:53 +01:00
@example
@cartouche
2002-10-22 05:38:26 +01:00
#!/usr/bin/yap -L --
#.
2001-05-28 20:54:53 +01:00
main( [] ).
main( [H|T] ) :-
write( H ), nl,
main( T ).
:- unix( argv(AllArgs) ), main( AllArgs ).
@end cartouche
@end example
If you this run this script with the arguments:
@example
./dump_ args -s 10000
@end example
@noindent
the script will start an YAP process with stack size @code{ 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
@code{ L --} as in the next version of @code{ dump_ args} :
@example
@cartouche
#!/usr/bin/yap -L --
main( [] ).
main( [H|T] ) :-
write( H ), nl,
main( T ).
:- unix( argv(AllArgs) ), main( AllArgs ).
@end cartouche
@end example
The @code{ --} indicates the next arguments are not for YAP. Instead,
2006-02-08 19:13:11 +00:00
they must be sent directly to the @code{ argv} built-in. Hence, running
2001-05-28 20:54:53 +01:00
@example
./dump_ args test
@end example
@noindent
will write @code{ test} on the standard output.
2001-04-09 20:54:03 +01:00
@node Syntax, Loading Programs, Run, Top
@chapter Syntax
We will describe the syntax of YAP at two levels. We first will
describe the syntax for Prolog terms. In a second level we describe
the @i{ tokens} from which Prolog @i{ terms} are
built.
@menu
* Formal Syntax:: Syntax of terms
* Tokens:: Syntax of Prolog tokens
2007-04-03 16:03:11 +01:00
* Encoding:: How characters are encoded and Wide Character Support
2001-04-09 20:54:03 +01:00
@end menu
@node Formal Syntax, Tokens, ,Syntax
@section Syntax of Terms
@cindex syntax
Below, we describe the syntax of YAP terms from the different
classes of tokens defined above. The formalism used will be @emph{ BNF} ,
extended where necessary with attributes denoting integer precedence or
operator type.
@example
@code{
term ----> subterm(1200) end_ of_ term_ marker
subterm(N) ----> term(M) [M <= N]
term(N) ----> op(N, fx) subterm(N-1)
| op(N, fy) subterm(N)
| subterm(N-1) op(N, xfx) subterm(N-1)
| subterm(N-1) op(N, xfy) subterm(N)
| subterm(N) op(N, yfx) subterm(N-1)
| subterm(N-1) op(N, xf)
| subterm(N) op(N, yf)
term(0) ----> atom '(' arguments ')'
| '(' subterm(1200) ')'
| '@{ ' subterm(1200) '@} '
| list
| string
| number
| atom
| variable
arguments ----> subterm(999)
| subterm(999) ',' arguments
list ----> '[]'
| '[' list_ expr ']'
list_ expr ----> subterm(999)
| subterm(999) list_ tail
list_ tail ----> ',' list_ expr
| ',..' subterm(999)
| '|' subterm(999)
}
@end example
@noindent
Notes:
@itemize @bullet
@item
@i{ op(N,T)} denotes an atom which has been previously declared with type
@i{ T} and base precedence @i{ N} .
@item
Since ',' is itself a pre-declared operator with type @i{ xfy} and
precedence 1000, is @i{ subterm} starts with a '(', @i{ op} must be
followed by a space to avoid ambiguity with the case of a functor
2006-02-08 19:13:11 +00:00
followed by arguments, e.g.:
2001-04-09 20:54:03 +01:00
@example
@code{ + (a,b) [the same as '+'(','(a,b)) of arity one]}
@end example
versus
@example
@code{ +(a,b) [the same as '+'(a,b) of arity two]}
@end example
@item
In the first rule for term(0) no blank space should exist between
@i{ atom} and '('.
@item
@cindex end of term
Each term to be read by the YAP parser must end with a single
dot, followed by a blank (in the sense mentioned in the previous
paragraph). When a name consisting of a single dot could be taken for
the end of term marker, the ambiguity should be avoided by surrounding the
dot with single quotes.
@end itemize
2007-04-03 16:03:11 +01:00
@node Tokens, Encoding, Formal Syntax, Syntax
2001-04-09 20:54:03 +01:00
@section Prolog Tokens
@cindex token
Prolog tokens are grouped into the following categories:
@menu
* Numbers:: Integer and Floating-Point Numbers
* Strings:: Sequences of Characters
* Atoms:: Atomic Constants
* Variables:: Logical Variables
* Punctuation Tokens:: Tokens that separate other tokens
* Layout:: Comments and Other Layout Rules
@end menu
@node Numbers, Strings, ,Tokens
@subsection Numbers
@cindex number
Numbers can be further subdivided into integer and floating-point numbers.
@menu
* Integers:: How Integers are read and represented
* Floats:: Floating Point Numbers
@end menu
@node Integers, Floats, ,Numbers
@subsubsection Integers
@cindex integer
Integer numbers
are described by the following regular expression:
@example
@code{
<integer> := @{ <digit>+<single-quote>|0@{ xXo@} @} <alpha_ numeric_ char>+
}
@end example
@noindent
where @{ ...@} stands for optionality, @i{ +} optional repetition (one or
more times), @i{ <digit>} denotes one of the characters 0 ... 9, @i{ |}
denotes or, and @i{ <single-quote>} denotes the character "'". The digits
before the @i{ <single-quote>} character, when present, form the number
basis, that can go from 0, 1 and up to 36. Letters from @code{ A} to
@code{ Z} are used when the basis is larger than 10.
Note that if no basis is specified then base 10 is assumed. Note also
that the last digit of an integer token can not be immediately followed
by one of the characters 'e', 'E', or '.'.
Following the ISO standard, YAP also accepts directives of the
form @code{ 0x} to represent numbers in hexadecimal base and of the form
@code{ 0o} to represent numbers in octal base. For usefulness,
YAP also accepts directives of the form @code{ 0X} to represent
numbers in hexadecimal base.
Example:
the following tokens all denote the same integer
@example
@code{ 10 2'1010 3'101 8'12 16'a 36'a 0xa 0o12}
@end example
Numbers of the form @code{ 0'a} are used to represent character
constants. So, the following tokens denote the same integer:
@example
@code{ 0'd 100}
@end example
YAP (version @value{ VERSION} ) supports integers that can fit
the word size of the machine. This is 32 bits in most current machines,
but 64 in some others, such as the Alpha running Linux or Digital
Unix. The scanner will read larger or smaller integers erroneously.
@node Floats, , Integers,Numbers
@subsubsection Floating-point Numbers
@cindex floating-point number
Floating-point numbers are described by:
@example
@code{
<float> := <digit>+@{ <dot><digit>+@}
<exponent-marker>@{ <sign>@} <digit>+
|<digit>+<dot><digit>+
@{ <exponent-marker>@{ <sign>@} <digit>+@}
}
@end example
@noindent
where @i{ <dot>} denotes the decimal-point character '.',
@i{ <exponent-marker>} denotes one of 'e' or 'E', and @i{ <sign>} denotes
one of '+' or '-'.
Examples:
@example
@code{ 10.0 10e3 10e-3 3.1415e+3}
@end example
Floating-point numbers are represented as a double in the target
machine. This is usually a 64-bit number.
@node Strings, Atoms, Numbers,Tokens
@subsection Character Strings
@cindex string
Strings are described by the following rules:
@example
string --> '"' string_ quoted_ characters '"'
string_ quoted_ characters --> '"' '"' string_ quoted_ characters
2001-04-16 17:41:04 +01:00
string_ quoted_ characters --> '\'
escape_ sequence string_ quoted_ characters
string_ quoted_ characters -->
string_ character string_ quoted_ characters
2001-04-09 20:54:03 +01:00
escape_ sequence --> 'a' | 'b' | 'r' | 'f' | 't' | 'n' | 'v'
escape_ sequence --> '\' | '"' | ''' | '`'
escape_ sequence --> at_ most_ 3_ octal_ digit_ seq_ char '\'
escape_ sequence --> 'x' at_ most_ 2_ hexa_ digit_ seq_ char '\'
@end example
where @code{ string_ character} in any character except the double quote
and escape characters.
Examples:
@example
@code{ "" "a string" "a double-quote:""" }
@end example
The first string is an empty string, the last string shows the use of
double-quoting. The implementation of YAP represents strings as
2008-02-02 03:35:35 +00:00
lists of integers. Since YAP 4.3.0 there is no static limit on string
2001-04-09 20:54:03 +01:00
size.
Escape sequences can be used to include the non-printable characters
@code{ a} (alert), @code{ b} (backspace), @code{ r} (carriage return),
@code{ f} (form feed), @code{ t} (horizontal tabulation), @code{ n} (new
line), and @code{ v} (vertical tabulation). Escape sequences also be
include the meta-characters @code{ \} , @code{ "} , @code{ '} , and
@code{ `} . Last, one can use escape sequences to include the characters
either as an octal or hexadecimal number.
The next examples demonstrates the use of escape sequences in YAP:
@example
@code{ "\x 0c\" "\0 1\" "\f " "\\ " }
@end example
The first three examples return a list including only character 12 (form
feed). The last example escapes the escape character.
2002-10-11 04:39:11 +01:00
Escape sequences were not available in C-Prolog and in original
2001-04-09 20:54:03 +01:00
versions of YAP up to 4.2.0. Escape sequences can be disable by using:
@example
@code{ :- yap_ flag(character_ escapes,off).}
@end example
@node Atoms, Variables, Strings, Tokens
@subsection Atoms
@cindex atom
Atoms are defined by one of the following rules:
@example
atom --> solo-character
atom --> lower-case-letter name-character*
atom --> symbol-character+
atom --> single-quote single-quote
atom --> ''' atom_ quoted_ characters '''
atom_ quoted_ characters --> ''' ''' atom_ quoted_ characters
atom_ quoted_ characters --> '\' atom_ sequence string_ quoted_ characters
atom_ quoted_ characters --> character string_ quoted_ characters
@end example
where:
@example
<solo-character> denotes one of: ! ;
<symbol-character> denotes one of: # & * + - . / : <
= > ? @@ \ ^ ` ~
<lower-case-letter> denotes one of: a...z
<name-character> denotes one of: _ a...z A...Z 0....9
<single-quote> denotes: '
@end example
and @code{ string_ character} denotes any character except the double quote
and escape characters. Note that escape sequences in strings and atoms
follow the same rules.
Examples:
@example
@code{ a a12x '$ a' ! = > ' 1 2 ' }
@end example
Version @code{ 4.2.0} of YAP removed the previous limit of 256
characters on an atom. Size of an atom is now only limited by the space
available in the system.
@node Variables, Punctuation Tokens, Atoms, Tokens
@subsection Variables
@cindex variable
Variables are described by:
@example
<variable-starter><variable-character>+
@end example
where
@example
<variable-starter> denotes one of: _ A...Z
<variable-character> denotes one of: _ a...z A...Z
@end example
@cindex anonymous variable
If a variable is referred only once in a term, it needs not to be named
and one can use the character @code{ _ } to represent the variable. These
variables are known as anonymous variables. Note that different
occurrences of @code{ _ } on the same term represent @emph{ different}
anonymous variables.
@node Punctuation Tokens, Layout, Variables, Tokens
@subsection Punctuation Tokens
@cindex punctuation token
Punctuation tokens consist of one of the following characters:
@example
2010-09-24 14:00:53 +01:00
( ) , [ ] @{ @} |
2001-04-09 20:54:03 +01:00
@end example
These characters are used to group terms.
@node Layout, ,Punctuation Tokens, Tokens
@subsection Layout
@cindex comment
Any characters with ASCII code less than or equal to 32 appearing before
a token are ignored.
All the text appearing in a line after the character @i{ %} is taken to
be a comment and ignored (including @i{ %}). Comments can also be
inserted by using the sequence @code{ /*} to start the comment and
@code{ */} to finish it. In the presence of any sequence of comments or
layout characters, the YAP parser behaves as if it had found a
single blank character. The end of a file also counts as a blank
character for this purpose.
2007-04-03 16:03:11 +01:00
@node Encoding, , Tokens, Syntax
@section Wide Character Support
@cindex encodings
@menu
* Stream Encoding:: How Prolog Streams can be coded
* BOM:: The Byte Order Mark
@end menu
@cindex UTF-8
@cindex Unicode
@cindex UCS
@cindex internationalization
YAP now implements a SWI-Prolog compatible interface to wide
characters and the Universal Character Set (UCS). The following text
was adapted from the SWI-Prolog manual.
YAP now supports wide characters, characters with character
codes above 255 that cannot be represented in a single byte.
@emph{ Universal Character Set} (UCS) is the ISO/IEC 10646 standard
that specifies a unique 31-bits unsigned integer for any character in
any language. It is a superset of 16-bit Unicode, which in turn is
a superset of ISO 8859-1 (ISO Latin-1), a superset of US-ASCII. UCS
can handle strings holding characters from multiple languages and
character classification (uppercase, lowercase, digit, etc.) and
operations such as case-conversion are unambiguously defined.
For this reason YAP, following SWI-Prolog, has two representations for
atoms. If the text fits in ISO Latin-1, it is represented as an array
of 8-bit characters. Otherwise the text is represented as an array of
wide chars, which may take 16 or 32 bits. This representational issue
is completely transparent to the Prolog user. Users of the foreign
language interface sometimes need to be aware of these issues though.
Character coding comes into view when characters of strings need to be
read from or written to file or when they have to be communicated to
other software components using the foreign language interface. In this
section we only deal with I/O through streams, which includes file I/O
as well as I/O through network sockets.
@node Stream Encoding, , BOM, Encoding
@subsection Wide character encodings on streams
Although characters are uniquely coded using the UCS standard
internally, streams and files are byte (8-bit) oriented and there are a
variety of ways to represent the larger UCS codes in an 8-bit octet
stream. The most popular one, especially in the context of the web, is
UTF-8. Bytes 0...127 represent simply the corresponding US-ASCII
character, while bytes 128...255 are used for multi-byte
encoding of characters placed higher in the UCS space. Especially on
MS-Windows the 16-bit Unicode standard, represented by pairs of bytes is
also popular.
Prolog I/O streams have a property called @emph{ encoding} which
specifies the used encoding that influence @code{ get_ code/2} and
@code{ put_ code/2} as well as all the other text I/O predicates.
The default encoding for files is derived from the Prolog flag
@code{ encoding} , which is initialised from the environment. If the
environment variable @env{ LANG} ends in "UTF-8", this encoding is
assumed. Otherwise the default is @code{ text} and the translation is
left to the wide-character functions of the C-library (note that the
Prolog native UTF-8 mode is considerably faster than the generic
2007-09-27 14:32:30 +01:00
@code{ mbrtowc()} one). The encoding can be specified explicitly in
2007-04-03 16:03:11 +01:00
@code{ load_ files/2} for loading Prolog source with an alternative
2007-09-27 14:32:30 +01:00
encoding, @code{ open/4} when opening files or using @code{ set_ stream/2} on
2007-04-03 16:03:11 +01:00
any open stream (not yet implemented). For Prolog source files we also
provide the @code{ encoding/1} directive that can be used to switch
between encodings that are compatible to US-ASCII (@code{ ascii} ,
@code{ iso_ latin_ 1} , @code{ utf8} and many locales).
@c See also
@c \secref { intsrcfile} for writing Prolog files with non-US-ASCII
@c characters and \secref { unicodesyntax} for syntax issues.
For
additional information and Unicode resources, please visit
@uref{ http://www.unicode.org/} .
YAP currently defines and supports the following encodings:
@table @code
@item octet
Default encoding for @emph{ binary} streams. This causes
the stream to be read and written fully untranslated.
@item ascii
7-bit encoding in 8-bit bytes. Equivalent to @code{ iso_ latin_ 1} ,
but generates errors and warnings on encountering values above
127.
@item iso_ latin_ 1
8-bit encoding supporting many western languages. This causes
the stream to be read and written fully untranslated.
@item text
C-library default locale encoding for text files. Files are read and
written using the C-library functions @code{ mbrtowc()} and
@code{ wcrtomb()} . This may be the same as one of the other locales,
notably it may be the same as @code{ iso_ latin_ 1} for western
languages and @code{ utf8} in a UTF-8 context.
@item utf8
Multi-byte encoding of full UCS, compatible to @code{ ascii} .
See above.
@item unicode_ be
Unicode Big Endian. Reads input in pairs of bytes, most
significant byte first. Can only represent 16-bit characters.
@item unicode_ le
Unicode Little Endian. Reads input in pairs of bytes, least
significant byte first. Can only represent 16-bit characters.
@end table
Note that not all encodings can represent all characters. This implies
that writing text to a stream may cause errors because the stream
cannot represent these characters. The behaviour of a stream on these
errors can be controlled using @code{ open/4} or @code{ set_ stream/2} (not
implemented). Initially the terminal stream write the characters using
Prolog escape sequences while other streams generate an I/O exception.
@node BOM, Stream Encoding, , Encoding
@subsection BOM: Byte Order Mark
@cindex BOM
@cindex Byte Order Mark
From @ref{ Stream Encoding} , you may have got the impression text-files are
complicated. This section deals with a related topic, making live often
easier for the user, but providing another worry to the programmer.
@strong{ BOM} or @emph{ Byte Order Marker} is a technique for
identifying Unicode text-files as well as the encoding they use. Such
files start with the Unicode character @code{ 0xFEFF} , a non-breaking,
zero-width space character. This is a pretty unique sequence that is not
likely to be the start of a non-Unicode file and uniquely distinguishes
the various Unicode file formats. As it is a zero-width blank, it even
doesn't produce any output. This solves all problems, or ...
Some formats start of as US-ASCII and may contain some encoding mark to
switch to UTF-8, such as the @code{ encoding="UTF-8"} in an XML header.
Such formats often explicitly forbid the the use of a UTF-8 BOM. In
other cases there is additional information telling the encoding making
the use of a BOM redundant or even illegal.
The BOM is handled by the @code{ open/4} predicate. By default, text-files are
probed for the BOM when opened for reading. If a BOM is found, the
encoding is set accordingly and the property @code{ bom(true)} is
available through @code{ stream_ property/2} . When opening a file for
writing, writing a BOM can be requested using the option
@code{ bom(true)} with @code{ open/4} .
2001-04-09 20:54:03 +01:00
@node Loading Programs, Modules, Syntax, Top
@chapter Loading Programs
@menu
Loading Programs
* Compiling:: Program Loading and Updating
* Setting the Compiler:: Changing the compiler's parameters
2007-10-21 09:48:06 +01:00
* Conditional Compilation:: Compiling program fragments
2001-04-09 20:54:03 +01:00
* Saving:: Saving and Restoring Programs
@end menu
@node Compiling, Setting the Compiler, , Loading Programs
@section Program loading and updating
@table @code
@item consult(@var{ +F} )
@findex consult/1
@snindex consult/1
@cyindex consult/1
Adds the clauses written in file @var{ F} or in the list of files @var{ F}
to the program.
In YAP @code{ consult/1} does not remove previous clauses for
the procedures defined in @var{ F} . Moreover, note that all code in YAP
is compiled.
@item reconsult(@var{ +F} )
@findex reconsult/1
@snindex reconsult/1
@cyindex reconsult/1
Updates the program replacing the
previous definitions for the predicates defined in @var{ F} .
@item [@var{ +F} ]
@findex []/1
@saindex []/1
@cyindex []/1
The same as @code{ consult(F)} .
@item [-@var{ +F} ]
@findex [-]/1
@saindex [-]/1
@cyindex [-]/1
The same as @code{ reconsult(F)}
Example:
@example
?- [file1, -file2, -file3, file4].
@end example
@noindent
will consult @code{ file1} @code{ file4} and reconsult @code{ file2} and
@code{ file3} .
@item compile(@var{ +F} )
@findex compile/1
@syindex compile/1
@cnindex compile/1
@noindent
In YAP, the same as @code{ reconsult/1} .
2007-11-06 17:02:13 +00:00
@item load_ files(@var{ +Files} , @var{ +Options} )
@findex load_ files/2
@syindex load_ files/2
@cnindex load_ files/2
@noindent
General implementation of @code{ consult} . Execution is controlled by the
following flags:
@table @code
@item autoload(+@var{ Autoload} )
SWI-compatible option where if @var{ Autoload} is @code{ true} predicates
are loaded on first call. Currently
not supported.
@item derived_ from(+@var{ File} )
SWI-compatible option to control make. Currently
not supported.
@item encoding(+@var{ Encoding} )
Character encoding used in consulting files. Please @pxref{ Encoding} for
supported encodings.
@item expand(+@var{ Bool} )
Not yet implemented. In SWI-Prolog, if @code{ true} , run the
filenames through @code{ expand_ file_ name/2} and load the returned
files. Default is false, except for @code{ consult/1} which is
intended for interactive use.
@item if(+@var{ Condition} )
Load the file only if the specified @var{ Condition} is
satisfied. The value @code{ true} the file unconditionally,
@code{ changed} loads the file if it was not loaded before, or has
been modified since it was loaded the last time, @code{ not_ loaded}
loads the file if it was not loaded before.
@item imports(+@var{ ListOrAll} )
If @code{ all} and the file is a module file, import all public
predicates. Otherwise import only the named predicates. Each
predicate is referred to as @code{ <name>/<arity>} . This option has
no effect if the file is not a module file.
@item must_ be_ module(+@var{ Bool} )
If true, raise an error if the file is not a module file. Used by
@code{ use_ module/[1,2]} .
@c qcompile(Bool)
@c If this call appears in a directive of a file that is compiled into Quick Load Format using qcompile/1 and this flag is true, the contents of the argument files are included in the .qlf file instead of the loading directive.
@item silent(+@var{ Bool} )
If true, load the file without printing a message. The specified value is the default for all files loaded as a result of loading the specified files.
@item stream(+@var{ Input} )
This SWI-Prolog extension compiles the data from the stream
@var{ Input} . If this option is used, @var{ Files} must be a single
atom which is used to identify the source-location of the loaded
clauses as well as remove all clauses if the data is re-consulted.
This option is added to allow compiling from non-file locations such as databases, the web, the user (see consult/1) or other servers.
2007-11-08 11:22:05 +00:00
@item compilation_ mode(+@var{ Mode} )
This extension controls how procedures are compiled. If @var{ Mode}
2008-07-11 18:02:10 +01:00
is @code{ compact} clauses are compiled and no source code is stored;
if it is @code{ source} clauses are compiled and source code is stored;
if it is @code{ assert_ all} clauses are asserted into the data-base.
2007-11-06 17:02:13 +00:00
@end table
2001-04-09 20:54:03 +01:00
@item ensure_ loaded(@var{ +F} ) [ISO]
@findex ensure_ loaded/1
@syindex compile/1
@cnindex compile/1
When the files specified by @var{ F} are module files,
@code{ ensure_ loaded/1} loads them if they have note been previously
loaded, otherwise advertises the user about the existing name clashes
and prompts about importing or not those predicates. Predicates which
are not public remain invisible.
When the files are not module files, @code{ ensure_ loaded/1} loads them
if they have not been loaded before, does nothing otherwise.
@var{ F} must be a list containing the names of the files to load.
2010-09-27 23:32:45 +01:00
@item make
2009-10-15 12:56:16 +01:00
@findex make/0
@snindex make/0
@cnindex make/0
SWI-Prolog built-in to consult all source files that have been
changed since they were consulted. It checks all loaded source
files. make/0 can be combined with the compiler to speed up the
development of large packages. In this case compile the package
using
@example
sun% pl -g make -o my_program -c file ...
@end example
If `my_ program' is started it will first reconsult all source files
that have changed since the compilation.
2001-04-09 20:54:03 +01:00
@item include(@var{ +F} ) [ISO]
@findex include/1 (directive)
@snindex compile/1 (directive)
@cnindex compile/1 (directive)
The @code{ include} directive includes the text files or sequence of text
files specified by @var{ F} into the file being currently consulted.
@end table
2007-10-21 09:48:06 +01:00
@node Setting the Compiler, Conditional Compilation, Compiling, Loading Programs
2002-10-11 04:39:11 +01:00
@section Changing the Compiler's Behavior
2001-04-09 20:54:03 +01:00
This section presents a set of built-ins predicates designed to set the
environment for the compiler.
@table @code
@item source_ mode(-@var{ O} ,+@var{ N} )
@findex source_ mode/2
@snindex source_ mode/2
@cnindex source_ mode/2
The state of source mode can either be on or off. When the source mode
is on, all clauses are kept both as compiled code and in a "hidden"
database. @var{ O} is unified with the previous state and the mode is set
according to @var{ N} .
@item source
@findex source/0
@snindex source/0
@cnindex source/0
After executing this goal, YAP keeps information on the source
of the predicates that will be consulted. This enables the use of
@code{ listing/0} , @code{ listing/1} and @code{ clause/2} for those
clauses.
The same as @code{ source_ mode(_ ,on)} or as declaring all newly defined
static procedures as @code{ public} .
@item no_ source
@findex no_ source/0
@snindex no_ source/0
@cnindex no_ source/0
The opposite to @code{ source} .
The same as @code{ source_ mode(_ ,off)} .
@item compile_ expressions
@findex compile_ expressions/0
@snindex compile_ expressions/0
@cnindex compile_ expressions/0
After a call to this predicate, arithmetical expressions will be compiled.
2002-10-11 04:39:11 +01:00
(see example below). This is the default behavior.
2001-04-09 20:54:03 +01:00
@item do_ not_ compile_ expressions
@findex do_ not_ compile_ expressions/0
@snindex do_ not_ compile_ expressions/0
@cnindex do_ not_ compile_ expressions/0
After a call to this predicate, arithmetical expressions will not be compiled.
@example
?- source, do_ not_ compile_ expressions.
yes
?- [user].
| p(X) :- X is 2 * (3 + 8).
| :- end_ of_ file.
?- compile_ expressions.
yes
?- [user].
| q(X) :- X is 2 * (3 + 8).
| :- end_ of_ file.
:- listing.
p(A):-
A is 2 * (3 + 8).
q(A):-
A is 22.
@end example
2002-08-14 17:00:54 +01:00
@item hide(+@var{ Atom} )
@findex hide/1
@snindex hide/1
@cnindex hide/1
Make atom @var{ Atom} invisible.
@item unhide(+@var{ Atom} )
@findex unhide/1
@snindex unhide/1
@cnindex unhide/1
Make hidden atom @var{ Atom} visible.
@item hide_ predicate(+@var{ Pred} )
@findex hide_ predicate/1
@snindex hide_ predicate/1
@cnindex hide_ predicate/1
2002-08-15 17:43:01 +01:00
Make predicate @var{ Pred} invisible to @code{ current_ predicate/2} ,
@code{ listing} , and friends.
2002-08-14 17:00:54 +01:00
2001-04-09 20:54:03 +01:00
@item expand_ exprs(-@var{ O} ,+@var{ N} )
@findex expand_ exprs/2
@snindex expand_ exprs/2
@cyindex expand_ exprs/2
Puts YAP in state @var{ N} (@code{ on} or @code{ off} ) and unify
@var{ O} with the previous state, where @var{ On} is equivalent to
@code{ compile_ expressions} and @code{ off} is equivalent to
@code{ do_ not_ compile_ expressions} . This predicate was kept to maintain
compatibility with C-Prolog.
@item path(-@var{ D} )
@findex path/1
@snindex path/1
@cnindex path/1
Unifies @var{ D} with the current directory search-path of YAP.
Note that this search-path is only used by YAP to find the
files for @code{ consult/1} , @code{ reconsult/1} and @code{ restore/1} and
should not be taken for the system search path.
@item add_ to_ path(+@var{ D} )
@findex add_ to_ path/1
@snindex path/1
@cnindex path/1
Adds @var{ D} to the end of YAP's directory search path.
@item add_ to_ path(+@var{ D} ,+@var{ N} )
@findex add_ to_ path/2
@snindex path/1
@cnindex path/1
2002-10-11 04:39:11 +01:00
Inserts @var{ D} in the position, of the directory search path of
2001-04-09 20:54:03 +01:00
YAP, specified by @var{ N} . @var{ N} must be either of
@code{ first} or @code{ last} .
@item remove_ from_ path(+@var{ D} )
@findex remove_ from_ path/1
@snindex remove_ from_ path/1
@cnindex remove_ from_ path/1
Remove @var{ D} from YAP's directory search path.
@item style_ check(+@var{ X} )
@findex style_ check/1
@snindex style_ check/1
@cnindex style_ check/1
Turns on style checking according to the attribute specified by @var{ X} ,
which must be one of the following:
@table @code
@item single_ var
Checks single occurrences of named variables in a clause.
@item discontiguous
Checks non-contiguous clauses for the same predicate in a file.
@item multiple
Checks the presence of clauses for the same predicate in more than one
file when the predicate has not been declared as @code{ multifile}
@item all
Performs style checking for all the cases mentioned above.
@end table
By default, style checking is disabled in YAP unless we are in
@code{ sicstus} or @code{ iso} language mode.
The @code{ style_ check/1} built-in is now deprecated. Please use the
@code{ set_ prolog_ flag/1} instead.
@item no_ style_ check(+@var{ X} )
@findex no_ style_ check/1
@snindex style_ check/1
@cnindex style_ check/1
Turns off style checking according to the attribute specified by
@var{ X} , which has the same meaning as in @code{ style_ check/1} .
The @code{ no_ style_ check/1} built-in is now deprecated. Please use the
@code{ set_ prolog_ flag/1} instead.
@item multifile @var{ P} [ISO]
@findex multifile/1 (directive)
@syindex multifile/1 (directive)
@cnindex multifile/1 (directive)
Instructs the compiler about the declaration of a predicate @var{ P} in
more than one file. It must appear in the first of the loaded files
where the predicate is declared, and before declaration of any of its
clauses.
Multifile declarations affect @code{ reconsult/1} and @code{ compile/1} :
when a multifile predicate is reconsulted, only the clauses from the
same file are removed.
2007-02-18 00:26:36 +00:00
Since YAP4.3.0 multifile procedures can be static or dynamic.
2001-04-09 20:54:03 +01:00
@item discontiguous(+@var{ G} ) [ISO]
@findex discontiguous/1 (directive)
@syindex discontiguous/1 (directive)
@cnindex discontiguous/1 (directive)
Declare that the arguments are discontiguous procedures, that is,
clauses for discontigous procedures may be separated by clauses from
other procedures.
@item initialization(+@var{ G} ) [ISO]
@findex initialization/1 (directive)
@snindex initialization/1 (directive)
@cnindex initialization/1 (directive)
The compiler will execute goals @var{ G} after consulting the current
file.
2010-01-15 16:21:29 +00:00
@item initialization(+@var{ Goal} ,+@var{ When} )
@findex initialization/2 (directive)
@snindex initialization/2 (directive)
@cnindex initialization/2 (directive)
Similar to @code{ initialization/1} , but allows for specifying when
@var{ Goal} is executed while loading the program-text:
@table @code
@item now
Execute @var{ Goal} immediately.
@item after_ load
Execute @var{ Goal} after loading program-text. This is the same as initialization/1.
@item restore
Do not execute @var{ Goal} while loading the program, but only when
restoring a state (not implemented yet).
@end table
2001-04-09 20:54:03 +01:00
@item library_ directory(+@var{ D} )
@findex library_ directory/1
@snindex library_ directory/1
@cnindex library_ directory/1
Succeeds when @var{ D} is a current library directory name. Library
directories are the places where files specified in the form
@code{ library(@var{ File} )} are searched by the predicates
@code{ consult/1} , @code{ reconsult/1} , @code{ use_ module/1} or
@code{ ensure_ loaded/1} .
2002-02-08 22:19:24 +00:00
@item file_ search_ path(+@var{ NAME} ,-@var{ DIRECTORY} )
@findex file_ search_ path/2
@syindex file_ search_ path/2
@cnindex file_ search_ path/2
Allows writing file names as compound terms. The @var{ NAME} and
@var{ DIRECTORY} must be atoms. The predicate may generate multiple
solutions. The predicate is originally defined as follows:
@example
file_ search_ path(library,A) :-
library_ directory(A).
file_ search_ path(system,A) :-
prolog_ flag(host_ type,A).
@end example
2007-09-16 21:09:24 +01:00
Thus, @code{ [library(A)]} will search for a file using
@code{ library_ directory/1} to obtain the prefix.
2002-02-08 22:19:24 +00:00
@item library_ directory(+@var{ D} )
@findex library_ directory/1
@snindex library_ directory/1
@cnindex library_ directory/1
Succeeds when @var{ D} is a current library directory name. Library
directories are the places where files specified in the form
@code{ library(@var{ File} )} are searched by the predicates
@code{ consult/1} , @code{ reconsult/1} , @code{ use_ module/1} or
@code{ ensure_ loaded/1} .
2001-05-28 20:54:53 +01:00
@item prolog_ file_ name(+@var{ Name} ,-@var{ FullPath} )
@findex prolog_ file_ name/2
@syindex prolog_ file_ name/1
@cnindex prolog_ file_ name/2
Unify @var{ FullPath} with the absolute path YAP would use to consult
file @var{ Name} .
2010-12-02 19:57:55 +00:00
@item prolog_ to_ os_ filename(+@var{ PrologPath} ,-@var{ OsPath} )
@findex prolog_ to_ os_ filename/2
@snindex prolog_ to_ os_ filename/2
@cnindex prolog_ to_ os_ filename/2
This is an SWI-Prolog built-in. Converts between the internal Prolog
pathname conventions and the operating-system pathname conventions. The
internal conventions are Unix and this predicates is equivalent to =/2
(unify) on Unix systems. On DOS systems it will change the
directory-separator, limit the filename length map dots, except for the
last one, onto underscores.
@item expand_ file_ name(+@var{ WildCard} ,-@var{ List} )
@findex expand_ file_ name/2
@snindex expand_ file_ name/2
@cnindex expand_ file_ name/2
This is an SWI-Prolog built-in. Unify @var{ List} with a sorted list of
files or directories matching @var{ WildCard} . The normal Unix wildcard
constructs @t{ ?} , @t{ *} , @t{ [ ... ]} and @t{ @{ ...@} } are recognised. The
interpretation of @t{ @{ ...@} } is interpreted slightly different from the
C shell (csh(1)). The comma separated argument can be arbitrary
patterns, including @t{ @{ ...@} } patterns. The empty pattern is legal as
well: @t{ @{ .pl,@} } matches either @t{ .pl} or the empty string.
If the pattern contains wildcard characters, only existing files and
directories are returned. Expanding a @emph{ pattern'} without wildcard
characters returns the argument, regardless on whether or not it exists.
Before expanding wildcards, the construct $ var is expanded to the value
of the environment variable var and a possible leading ~ character is
expanded to the user's home directory. In Windows, the home directory is
determined as follows: if the environment variable @code{ HOME} exists,
this is used. If the variables @code{ HOMEDRIVE} and @code{ HOMEPATH}
exist (Windows-NT), these are used. At initialisation, the system will
set the environment variable @code{ HOME} to point to the YAP home
directory if neither @code{ HOME} nor @code{ HOMEPATH} and
@code{ HOMEDRIVE} are defined.
2009-04-25 16:59:23 +01:00
@item public @var{ P} [ISO extension]
2001-04-09 20:54:03 +01:00
@findex public/1 (directive)
@snindex public/1 (directive)
@cnindex public/1 (directive)
Instructs the compiler that the source of a predicate of a list of
predicates @var{ P} must be kept. This source is then accessible through
the @code{ clause/2} procedure and through the @code{ listing} family of
built-ins.
Note that all dynamic procedures are public. The @code{ source} directive
defines all new or redefined predicates to be public.
2007-02-18 00:26:36 +00:00
Since YAP4.3.0 multifile procedures can be static or dynamic.
2001-04-09 20:54:03 +01:00
@end table
2007-10-21 09:48:06 +01:00
@node Conditional Compilation, Saving, Setting the Compiler, Loading Programs
@section Conditional Compilation
@c \index { if, directive} %
Conditional compilation builds on the same principle as
@code{ term_ expansion/2} , @code{ goal_ expansion/2} and the expansion of
grammar rules to compile sections of the source-code
conditionally. One of the reasons for introducing conditional
compilation is to simplify writing portable code.
@c See \secref { dialect}
@c for more information. Here is a simple example:
@c @table code
@c :- if(\+ source_ exports(library(lists), suffix/2)).
@c suffix(Suffix, List) :-
@c append(_ , Suffix, List).
@c :- endif.
@c \end { code}
Note that these directives can only be appear as separate terms in the
input. Typical usage scenarios include:
@itemize @bullet
@item Load different libraries on different dialects
@item Define a predicate if it is missing as a system predicate
@item Realise totally different implementations for a particular
part of the code due to different capabilities.
@item Realise different configuration options for your software.
@end itemize
@table @code
@item if(+@var{ Goal} )
@findex if/1 directive
@snindex if/1
@cnindex if/1
Compile subsequent code only if @var{ Goal} succeeds. For enhanced
portability, @var{ Goal} is processed by @code{ expand_ goal/2} before execution.
If an error occurs, the error is printed and processing proceeds as if
@var{ Goal} has failed.
@item else
@findex else/0 directive
@snindex else/0
@cnindex else/0
Start `else' branch.
@item endif
@findex endif/0 directive
@snindex endif/0
@cnindex endif/0
End of conditional compilation.
@item elif(+@var{ Goal} )
@findex elif/1 directive
@snindex elif/1
@cnindex elif/1
Equivalent to @code{ :- else. :-if(Goal) ... :- endif.} In a sequence
as below, the section below the first matching elif is processed, If
no test succeeds the else branch is processed.
@example
:- if(test1).
section_ 1.
:- elif(test2).
section_ 2.
:- elif(test3).
section_ 3.
:- else.
section_ else.
:- endif.
@end example
@end table
@node Saving, , Conditional Compilation, Loading Programs
2001-04-09 20:54:03 +01:00
@section Saving and Loading Prolog States
@table @code
@item save(+@var{ F} )
@findex save/1
@snindex save/1
@cyindex save/1
Saves an image of the current state of YAP in file @var{ F} . From
2007-02-18 00:26:36 +00:00
@strong{ YAP4.1.3} onwards, YAP saved states are executable
2001-04-09 20:54:03 +01:00
files in the Unix ports.
@item save(+@var{ F} ,-@var{ OUT} )
@findex save/2
@snindex save/2
@cnindex save/2
Saves an image of the current state of YAP in file @var{ F} . From
2007-02-18 00:26:36 +00:00
@strong{ YAP4.1.3} onwards, YAP saved states are executable
2001-04-09 20:54:03 +01:00
files in the Unix ports.
Unify @var{ OUT} with 1 when saving the file and @var{ OUT} with 0 when
restoring the saved state.
@item save_ program(+@var{ F} )
@findex save_ program/1
@syindex save_ program/1
@cnindex save_ program/1
Saves an image of the current state of the YAP database in file
@var{ F} .
@item save_ program(+@var{ F} , :@var{ G} )
@findex save_ program/2
@syindex save_ program/2
@cnindex save_ program/2
Saves an image of the current state of the YAP database in file
@var{ F} , and guarantee that execution of the restored code will start by
trying goal @var{ G} .
@item restore(+@var{ F} )
@findex restore/1
@syindex restore/1
@cnindex restore/1
Restores a previously saved state of YAP from file @var{ F} .
YAP always tries to find saved states from the current directory
first. If it cannot it will use the environment variable YAPLIBDIR, if
defined, or search the default library directory.
@end table
2007-02-18 00:26:36 +00:00
@node Modules, Built-ins, Loading Programs, Top
2001-04-09 20:54:03 +01:00
@chapter The Module System
Module systems are quite important for the development of large
applications. YAP implements a module system compatible with the Quintus
Prolog module system.
The YAP module system is predicate-based. This means a module consists
of a set of predicates (or procedures), such that some predicates are
public and the others are local to a module. Atoms and terms in general
are global to the system. Moreover, the module system is flat, meaning
2009-04-25 16:59:23 +01:00
that we do not support a hierarchy of modules. Modules can
2001-04-09 20:54:03 +01:00
automatically import other modules, though. For compatibility with other
module systems the YAP module system is non-strict, meaning both that
2009-06-08 23:32:01 +01:00
there is a way to access predicates private to a module and that it
2009-04-25 16:59:23 +01:00
is possible to declare predicates for a module from some other module.
2001-04-09 20:54:03 +01:00
YAP allows one to ignore the module system if one does not want to use
it. Last note that using the module system does not introduce any
2009-06-08 23:32:01 +01:00
significant overheads.
2001-04-09 20:54:03 +01:00
@menu
* Module Concepts:: The Key Ideas in Modules
* Defining Modules:: How To Define a New Module
* Using Modules:: How to Use a Module
* Meta-Predicates in Modules:: How to Handle New Meta-Predicates
2007-12-05 12:17:25 +00:00
* Re-Exporting Modules:: How to Re-export Predicates From Other Modules
2001-04-09 20:54:03 +01:00
@end menu
@node Module Concepts, Defining Modules, , Modules
@section Module Concepts
The YAP module system applies to predicates. All predicates belong to a
module. System predicates belong to the module @code{ primitives} , and by
default new predicates belong to the module @code{ user} . Predicates from
the module @code{ primitives} are automatically visible to every module.
Every predicate must belong to a module. This module is called its
@emph{ source module} .
By default, the source module for a clause occurring in a source file
with a module declaration is the declared module. For goals typed in
a source file without module declarations, their module is the module
the file is being loaded into. If no module declarations exist, this is
the current @emph{ type-in module} . The default type-in module is
@code{ user} , but one can set the current module by using the built-in
@code{ module/1} .
Note that in this module system one can explicitly specify the source
mode for a clause by prefixing a clause with its module, say:
@example
user:(a :- b).
@end example
@noindent
In fact, to specify the source module for a clause it is sufficient to
specify the source mode for the clause's head:
@example
user:a :- b.
@end example
@noindent
The rules for goals are similar. If a goal appears in a text file with a
module declaration, the goal's source module is the declared
module. Otherwise, it is the module the file is being loaded into or the
type-in module.
One can override this rule by prefixing a goal with the module it is
2009-06-08 23:32:01 +01:00
supposed to be executed in, say:
2001-04-09 20:54:03 +01:00
@example
nasa:launch(apollo,13).
@end example
will execute the goal @code{ launch(apollo,13)} as if the current source
module was @code{ nasa} .
Note that this rule breaks encapsulation and should be used with care.
@node Defining Modules, Using Modules, Module Concepts, Modules
@section Defining a New Module
A new module is defined by a @code{ module} declaration:
@table @code
@item module(+@var{ M} ,+@var{ L} )
@findex module/2 (directive)
@syindex module/2 (directive)
@cnindex module/2 (directive)
2009-06-08 23:32:01 +01:00
This directive defines the file where it appears as a module file; it
2001-04-09 20:54:03 +01:00
must be the first declaration in the file.
@var{ M} must be an atom specifying the module name; @var{ L} must be a list
containing the module's public predicates specification, in the form
@code{ [predicate_ name/arity,...]} .
The public predicates of a module file can be made accessible by other
2009-06-08 23:32:01 +01:00
files through the directives @code{ use_ module/1} , @code{ use_ module/2} ,
@code{ ensure_ loaded/1} and the predicates @code{ consult/1} or
@code{ reconsult/1} . The non-public predicates
2001-04-09 20:54:03 +01:00
of a module file are not visible by other files; they can, however, be
2009-06-08 23:32:01 +01:00
accessed by prefixing the module name with the
2001-04-09 20:54:03 +01:00
@code{ :/2} operator.
@end table
The built-in @code{ module/1} sets the current source module:
@table @code
2001-04-19 18:12:18 +01:00
@item module(+@var{ M} ,+@var{ L} , +@var{ Options} )
@findex module/3 (directive)
@syindex module/3 (directive)
@cnindex module/3 (directive)
2009-06-08 23:32:01 +01:00
Similar to @code{ module/2} , this directive defines the file where it
appears in as a module file; it must be the first declaration in the file.
2001-04-19 18:12:18 +01:00
@var{ M} must be an atom specifying the module name; @var{ L} must be a
list containing the module's public predicates specification, in the
form @code{ [predicate_ name/arity,...]} .
The last argument @var{ Options} must be a list of options, which can be:
@table @code
@item filename
the filename for a module to import into the current module.
@item library(file)
a library file to import into the current module.
@item hide(@var{ Opt} )
if @var{ Opt} is @code{ false} , keep source code for current module, if
@code{ true} , disable.
@end table
2001-04-09 20:54:03 +01:00
@item module(+@var{ M} )
@findex module/1
@syindex module/1
@cnindex module/1
Defines @var{ M} to be the current working or type-in module. All files
2009-04-25 16:59:23 +01:00
which are not bound to a module are assumed to belong to the working
2001-04-09 20:54:03 +01:00
module (also referred to as type-in module). To compile a non-module
file into a module which is not the working one, prefix the file name
with the module name, in the form @code{ @var{ Module} :@var{ File} } , when
loading the file.
@end table
@node Using Modules, Meta-Predicates in Modules, Defining Modules, Modules
@section Using Modules
By default, all procedures to consult a file will load the modules
defined therein. The two following declarations allow one to import a
module explicitly. They differ on whether one imports all predicate
declared in the module or not.
@table @code
@item use_ module(+@var{ F} )
@findex use_ module/1
@syindex use_ module/1
@cnindex use_ module/1
Loads the files specified by @var{ F} , importing all their public
predicates. Predicate name clashes are resolved by asking the user about
importing or not the predicate. A warning is displayed when @var{ F} is
not a module file.
@item use_ module(+@var{ F} ,+@var{ L} )
@findex use_ module/2
@syindex use_ module/2
@cnindex use_ module/2
Loads the files specified by @var{ F} , importing the predicates specified
in the list @var{ L} . Predicate name clashes are resolved by asking the
user about importing or not the predicate. A warning is displayed when
@var{ F} is not a module file.
@item use_ module(?@var{ M} ,?@var{ F} ,+@var{ L} )
@findex use_ module/3
@syindex use_ module/3
@cnindex use_ module/3
If module @var{ M} has been defined, import the procedures in @var{ L} to
the current module. Otherwise, load the files specified by @var{ F} ,
importing the predicates specified in the list @var{ L} .
@end table
2007-12-05 12:17:25 +00:00
@node Meta-Predicates in Modules, Re-Exporting Modules, Using Modules, Modules
2001-04-09 20:54:03 +01:00
@section Meta-Predicates in Modules
The module system must know whether predicates operate on goals or
clauses. Otherwise, such predicates would call a goal in the module they
were defined, instead of calling it in the module they are currently
2009-06-08 23:32:01 +01:00
executing. So, for instance, consider a file example.pl:
2001-04-09 20:54:03 +01:00
@example
:- module(example,[a/1]).
a(G) :- call(G)
@end example
2009-06-08 23:32:01 +01:00
We import this module with @code{ use_ module(example)} into module
@code{ user} . The expected behavior for a goal @code{ a(p)} is to
execute goal @code{ p} within the module @code{ user} . However,
@code{ a/1} will call @code{ p} within module @code{ example} .
2001-04-09 20:54:03 +01:00
2006-02-08 19:13:11 +00:00
The @code{ meta_ predicate/1} declaration informs the system that some
2009-06-08 23:32:01 +01:00
arguments of a predicate are goals, clauses, clauses heads or other
terms related to a module, and that these arguments must be prefixed
with the current source module:
2001-04-09 20:54:03 +01:00
@table @code
@item meta_ predicate @var{ G1} ,....,@var{ Gn}
@findex meta_ predicate/1 (directive)
@syindex meta_ predicate/1 (directive)
@cnindex meta_ predicate/1 (directive)
2009-06-08 23:32:01 +01:00
Each @var{ Gi} is a mode specification.
2010-11-05 22:25:32 +00:00
If the argument is @code{ :} , it does not refer directly to a predicate
but must be module expanded. If the argument is an integer, the argument
is a goal or a closure and must be expanded. Otherwise, the argument is
not expanded. Note that the system already includes declarations for all
built-ins.
2009-06-08 23:32:01 +01:00
For example, the declaration for @code{ call/1} and @code{ setof/3} are:
2001-04-09 20:54:03 +01:00
@example
2010-11-05 22:25:32 +00:00
:- meta_ predicate call(0), setof(?,0,?).
2001-04-09 20:54:03 +01:00
@end example
@end table
2009-06-08 23:32:01 +01:00
The previous example is expanded to the following code which explains,
why the goal @code{ a(p)} calls @code{ p} in @code{ example} and not in
@code{ user} . The goal @code{ call(G)} is expanded because of the
meta-predicate declaration for @code{ call/1} .
2001-04-09 20:54:03 +01:00
@example
:- module(example,[a/1]).
a(G) :- call(example:G)
2009-06-08 23:32:01 +01:00
@end example
2001-04-09 20:54:03 +01:00
2009-06-08 23:32:01 +01:00
By adding a meta-predicate declaration for @code{ a/1} , the goal
@code{ a(p)} in module user will be expanded to @code{ a(user:p)}
thereby preserving the module information.
2001-04-09 20:54:03 +01:00
2009-06-08 23:32:01 +01:00
@example
:- module(example,[a/1]).
:- meta_ predicate a(:).
a(G) :- call(G)
2001-04-09 20:54:03 +01:00
@end example
2009-06-08 23:32:01 +01:00
An alternate mechanism is the directive @code{ module_ transparent/1}
offered for compatibility with SWI-Prolog.
2008-02-12 17:03:59 +00:00
@table @code
@item module_ transparent +@var{ Preds}
@findex module_ transparent/1 (directive)
@syindex module_ transparent/1 (directive)
@cnindex module_ transparent/1 (directive)
2009-06-08 23:32:01 +01:00
@var{ Preds} is a comma separated sequence of name/arity predicate
indicators (like
2008-02-12 17:03:59 +00:00
@code{ dynamic/1} ). Each goal associated with a transparent declared
predicate will inherit the context module from its parent goal.
@end table
2007-12-05 12:17:25 +00:00
@node Re-Exporting Modules, , Meta-Predicates in Modules, Modules
@section Re-Exporting Predicates From Other Modules
It is sometimes convenient to re-export predicates originally defined in
a different module. This is often useful if you are adding to the
functionality of a module, or if you are composing a large module with
several small modules. The following declarations can be used for that purpose:
@table @code
@item reexport(+@var{ F} )
@findex reexport/1
@snindex reexport/1
@cnindex reexport/1
Export all predicates defined in file @var{ F} as if they were defined in
2008-02-13 14:42:55 +00:00
the current module.
2007-12-05 12:17:25 +00:00
@item reexport(+@var{ F} ,+@var{ Decls} )
@findex reexport/2
@snindex reexport/2
@cnindex reexport/2
Export predicates defined in file @var{ F} according to @var{ Decls} . The
declarations may be of the form:
@itemize @bullet
@item A list of predicate declarations to be exported. Each declaration
may be a predicate indicator or of the form ``@var{ PI} @code{ as}
@var{ NewName} '', meaning that the predicate with indicator @var{ PI} is
to be exported under name @var{ NewName} .
@item @code{ except} (@var{ List} )
In this case, all predicates not in @var{ List} are exported. Moreover,
if ``@var{ PI} @code{ as} @var{ NewName} '' is found, the predicate with
indicator @var{ PI} is to be exported under name @var{ NewName} @ as
before.
@end itemize
@end table
Re-exporting predicates must be used with some care. Please, take into
account the following observations:
@itemize @bullet
@item
The @code{ reexport} declarations must be the first declarations to
follow the @code{ module} declaration.
@item
It is possible to use both @code{ reexport} and @code{ use_ module} , but
all predicates reexported are automatically available for use in the
current module.
@item
In order to obtain efficient execution, YAP compiles dependencies
between re-exported predicates. In practice, this means that changing a
@code{ reexport} declaration and then @strong{ just} recompiling the file
may result in incorrect execution.
@end itemize
2007-02-18 00:26:36 +00:00
@node Built-ins, Library, Modules, Top
2001-04-09 20:54:03 +01:00
@chapter Built-In Predicates
@menu
2007-02-18 00:26:36 +00:00
Built-ins, Debugging, Syntax, Top
2001-04-09 20:54:03 +01:00
* Control:: Controlling the Execution of Prolog Programs
* Undefined Procedures:: Handling calls to Undefined Procedures
2008-02-22 15:08:37 +00:00
* Messages:: Message Handling in YAP
2001-04-09 20:54:03 +01:00
* Testing Terms:: Predicates on Terms
2007-12-29 12:26:41 +00:00
* Predicates on Atoms:: Manipulating Atoms
* Predicates on Characters:: Manipulating Characters
2001-04-09 20:54:03 +01:00
* Comparing Terms:: Comparison of Terms
2007-02-18 00:26:36 +00:00
* Arithmetic:: Arithmetic in YAP
* I/O:: Input/Output with YAP
2001-04-09 20:54:03 +01:00
* Database:: Modifying Prolog's Database
* Sets:: Finding All Possible Solutions
* Grammars:: Grammar Rules
* Preds:: Predicate Information
* OS:: Access to Operating System Functionality
* Term Modification:: Updating Prolog Terms
2007-09-21 15:18:12 +01:00
* Global Variables:: Manipulating Global Variables
2001-04-09 20:54:03 +01:00
* Profiling:: Profiling Prolog Execution
2002-09-03 21:14:13 +01:00
* Call Counting:: Limiting the Maximum Number of Reductions
2001-04-09 20:54:03 +01:00
* Arrays:: Supporting Global and Local Arrays
* Preds:: Information on Predicates
* Misc:: Miscellaneous Predicates
@end menu
@node Control, Undefined Procedures, , Top
@section Control Predicates
This chapter describes the predicates for controlling the execution of
Prolog programs.
In the description of the arguments of functors the following notation
will be used:
@itemize @bullet
@item
2002-01-09 17:23:18 +00:00
a preceding plus sign will denote an argument as an "input argument" -
2001-04-09 20:54:03 +01:00
it cannot be a free variable at the time of the call;
@item
2002-01-09 17:23:18 +00:00
a preceding minus sign will denote an "output argument";
2001-04-09 20:54:03 +01:00
@item
an argument with no preceding symbol can be used in both ways.
@end itemize
@table @code
@item +@var{ P} , +@var{ Q} [ISO]
@findex ,/2
@syindex ,/2
@cyindex ,/2
Conjunction of goals (and).
@noindent
Example:
@example
p(X) :- q(X), r(X).
@end example
@noindent
should be read as "p(@var{ X} ) if q(@var{ X} ) and r(@var{ X} )".
@item +@var{ P} ; +@var{ Q} [ISO]
@findex ;/2
@syindex ;/2
@cyindex ;/2
Disjunction of goals (or).
@noindent
Example:
@example
p(X) :- q(X); r(X).
@end example
@noindent
should be read as "p(@var{ X} ) if q(@var{ X} ) or r(@var{ X} )".
@item true [ISO]
@findex true/0
@syindex true/0
@cyindex true/0
Succeeds once.
@item fail [ISO]
@findex fail/0
@syindex fail/0
@cyindex fail/0
Fails always.
@item false
@findex false/0
@syindex false/0
@cnindex false/0
The same as fail
@item ! [ISO]
@findex !/0
@syindex !/0
@cyindex !/0
Read as "cut". Cuts any choices taken in the current procedure.
When first found "cut" succeeds as a goal, but if backtracking should
later return to it, the parent goal (the one which matches the head of
the clause containing the "cut", causing the clause activation) will
fail. This is an extra-logical predicate and cannot be explained in
terms of the declarative semantics of Prolog.
example:
@example
member(X,[X|_ ]).
member(X,[_ |L]) :- member(X,L).
@end example
@noindent
With the above definition
@example
?- member(X,[1,2,3]).
@end example
@noindent
will return each element of the list by backtracking. With the following
definition:
@example
member(X,[X|_ ]) :- !.
member(X,[_ |L]) :- member(X,L).
@end example
@noindent
the same query would return only the first element of the
list, since backtracking could not "pass through" the cut.
@item \+ +@var{ P} [ISO]
@findex \+ /1
@syindex \+ /1
@cyindex \+ /1
Goal @var{ P} is not provable. The execution of this predicate fails if
and only if the goal @var{ P} finitely succeeds. It is not a true logical
negation, which is impossible in standard Prolog, but
"negation-by-failure".
@noindent
This predicate might be defined as:
@example
\+ (P) :- P, !, fail.
\+ (_ ).
@end example
@noindent
if @var{ P} did not include "cuts".
@item not +@var{ P}
@findex not/1
@snindex not/1
@cyindex not/1
Goal @var{ P} is not provable. The same as @code{ '\+ @var{ P} '} .
This predicate is kept for compatibility with C-Prolog and previous
versions of YAP. Uses of @code{ not/1} should be replace by
@code{ (\+ )/1} , as YAP does not implement true negation.
@item +@var{ P} -> +@var{ Q} [ISO]
@findex ->/2
@syindex ->/2
@cnindex ->/2
Read as "if-then-else" or "commit". This operator is similar to the
conditional operator of imperative languages and can be used alone or
with an else part as follows:
@table @code
@item +P -> +Q
"if P then Q".
@item +P -> +Q; +R
"if P then Q else R".
@end table
@noindent
These two predicates could be defined respectively in Prolog as:
@example
(P -> Q) :- P, !, Q.
@end example
@noindent
and
@example
(P -> Q; R) :- P, !, Q.
(P -> Q; R) :- R.
@end example
@noindent
if there were no "cuts" in @var{ P} , @var{ Q} and @var{ R} .
Note that the commit operator works by "cutting" any alternative
solutions of @var{ P} .
Note also that you can use chains of commit operators like:
@example
P -> Q ; R -> S ; T.
@end example
@noindent
Note that @code{ (->)/2} does not affect the scope of cuts in its
arguments.
2010-10-04 19:35:22 +01:00
@item +@var{ Condition} *-> +@var{ Action} ; +@var{ Else}
2008-02-12 17:03:59 +00:00
@findex ->*/2
@snindex ->*/2
@cnindex ->*/2
This construct implements the so-called @emph{ soft-cut} . The control is
defined as follows: If @var{ Condition} succeeds at least once, the
2008-03-12 16:19:02 +00:00
semantics is the same as (@var{ Condition} , @var{ Action} ). If
2008-02-12 17:03:59 +00:00
@var{ Condition} does not succeed, the semantics is that of (\+
@var{ Condition} , @var{ Else} ). In other words, If @var{ Condition}
succeeds at least once, simply behave as the conjunction of
@var{ Condition} and @var{ Action} , otherwise execute @var{ Else} .
The construct @var{ A *-> B} , i.e. without an @var{ Else} branch, is
translated as the normal conjunction @var{ A} , @var{ B} .
2001-04-09 20:54:03 +01:00
@item repeat [ISO]
@findex repeat/0
@syindex repeat/0
@cyindex repeat/0
Succeeds repeatedly.
In the next example, @code{ repeat} is used as an efficient way to implement
a loop. The next example reads all terms in a file:
@example
a :- repeat, read(X), write(X), nl, X=end_ of_ file, !.
@end example
@noindent
the loop is effectively terminated by the cut-goal, when the test-goal
@code{ X=end} succeeds. While the test fails, the goals @code{ read(X)} ,
@code{ write(X)} , and @code{ nl} are executed repeatedly, because
backtracking is caught by the @code{ repeat} goal.
The built-in @code{ repeat/1} could be defined in Prolog by:
@example
repeat.
repeat :- repeat.
@end example
2008-02-02 03:35:35 +00:00
@item call(+@var{ P} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex call/1
@syindex call/1
@cyindex call/1
If @var{ P} is instantiated to an atom or a compound term, the goal
@code{ call(@var{ P} )} is executed as if the value of @code{ P} was found
instead of the call to @code{ call/1} , except that any "cut" occurring in
@var{ P} only cuts alternatives in the execution of @var{ P} .
@item incore(+@var{ P} )
@findex incore/1
@syindex incore/1
@cnindex incore/1
The same as @code{ call/1} .
2008-07-23 12:43:15 +01:00
@item call(+@var{ Closure} ,...,?@var{ Ai} ,...)
@findex call/n
@snindex call/n
@cnindex call/n
Meta-call where @var{ Closure} is a closure that is converted into a goal by
appending the @var{ Ai} additional arguments. The number of arguments varies
between 0 and 10.
2001-04-09 20:54:03 +01:00
@item call_ with_ args(+@var{ Name} ,...,?@var{ Ai} ,...)
@findex call_ with_ args/n
@snindex call_ with_ args/n
@cnindex call_ with_ args/n
Meta-call where @var{ Name} is the name of the procedure to be called and
the @var{ Ai} are the arguments. The number of arguments varies between 0
2010-09-27 23:32:45 +01:00
and 10. New code should use @code{ call/N} for better portability.
2001-04-09 20:54:03 +01:00
2002-07-17 21:25:30 +01:00
If @var{ Name} is a complex term, then @code{ call_ with_ args/n} behaves as
@code{ call/n} :
@example
call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).
@end example
2001-04-09 20:54:03 +01:00
@item +@var{ P}
The same as @code{ call(@var{ P} )} . This feature has been kept to provide
compatibility with C-Prolog. When compiling a goal, YAP
generates a @code{ call(@var{ X} )} whenever a variable @var{ X} is found as
a goal.
@example
a(X) :- X.
@end example
@noindent
is converted to:
@example
a(X) :- call(X).
@end example
2008-02-02 03:35:35 +00:00
@item if(?@var{ G} ,?@var{ H} ,?@var{ I} )
2001-04-24 17:40:11 +01:00
@findex if/3
@syindex if/3
@cnindex if/3
Call goal @var{ H} once per each solution of goal @var{ H} . If goal
@var{ H} has no solutions, call goal @var{ I} .
2006-02-08 19:13:11 +00:00
The built-in @code{ if/3} is similar to @code{ ->/3} , with the difference
2001-04-24 17:40:11 +01:00
that it will backtrack over the test goal. Consider the following
small data-base:
@example
a(1). b(a). c(x).
a(2). b(b). c(y).
@end example
Execution of an @code{ if/3} query will proceed as follows:
@example
?- if(a(X),b(Y),c(Z)).
X = 1,
Y = a ? ;
X = 1,
Y = b ? ;
X = 2,
Y = a ? ;
X = 2,
Y = b ? ;
no
@end example
@noindent
The system will backtrack over the two solutions for @code{ a/1} and the
two solutions for @code{ b/1} , generating four solutions.
Cuts are allowed inside the first goal @var{ G} , but they will only prune
over @var{ G} .
If you want @var{ G} to be deterministic you should use if-then-else, as
it is both more efficient and more portable.
2008-02-02 03:35:35 +00:00
@item once(:@var{ G} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex once/1
@snindex once/1
@cnindex once/1
Execute the goal @var{ G} only once. The predicate is defined by:
@example
once(G) :- call(G), !.
@end example
@noindent
Note that cuts inside @code{ once/1} can only cut the other goals inside
@code{ once/1} .
2008-05-15 14:41:48 +01:00
@item forall(:@var{ Cond} ,:@var{ Action} )
@findex forall/2
@snindex forall/2
@cnindex forall/2
For all alternative bindings of @var{ Cond} @var{ Action} can be
proven. The example verifies that all arithmetic statements in the list
@var{ L} are correct. It does not say which is wrong if one proves wrong.
@example
?- forall(member(Result = Formula, [2 = 1 + 1, 4 = 2 * 2]),
Result =:= Formula).
@end example
@item ignore(:@var{ Goal} )
@findex ignore/1
@snindex ignore/1
@cnindex ignore/1
Calls @var{ Goal} as @code{ once/1} , but succeeds, regardless of whether
@code{ Goal} succeeded or not. Defined as:
@example
ignore(Goal) :-
Goal, !.
ignore(_ ).
@end example
2001-04-09 20:54:03 +01:00
@item abort
@findex abort/0
@syindex abort/0
@cyindex abort/0
Abandons the execution of the current goal and returns to top level. All
break levels (see @code{ break/0} below) are terminated. It is mainly
used during debugging or after a serious execution error, to return to
the top-level.
@item break
@findex break/0
@syindex break/0
@cyindex break/0
Suspends the execution of the current goal and creates a new execution
level similar to the top level, displaying the following message:
@example
[ Break (level <number>) ]
@end example
@noindent
telling the depth of the break level just entered. To return to the
previous level just type the end-of-file character or call the
end_ of_ file predicate. This predicate is especially useful during
debugging.
@item halt [ISO]
@findex halt/0
@syindex halt/0
@cyindex halt/0
Halts Prolog, and exits to the calling application. In YAP,
@code{ halt/0} returns the exit code @code{ 0} .
@item halt(+ @var{ I} ) [ISO]
@findex halt/1
@syindex halt/1
@cnindex halt/1
Halts Prolog, and exits to the calling application returning the code
given by the integer @var{ I} .
2008-02-02 03:35:35 +00:00
@item catch(+@var{ Goal} ,+@var{ Exception} ,+@var{ Action} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex catch/3
@snindex catch/3
@cnindex catch/3
The goal @code{ catch(@var{ Goal} ,@var{ Exception} ,@var{ Action} )} tries to
execute goal @var{ Goal} . If during its execution, @var{ Goal} throws an
exception @var{ E'} and this exception unifies with @var{ Exception} , the
exception is considered to be caught and @var{ Action} is executed. If
the exception @var{ E'} does not unify with @var{ Exception} , control
again throws the exception.
The top-level of YAP maintains a default exception handler that
is responsible to capture uncaught exceptions.
@item throw(+@var{ Ball} ) [ISO]
@findex throw/1
@snindex throw/1
@cnindex throw/1
The goal @code{ throw(@var{ Ball} )} throws an exception. Execution is
stopped, and the exception is sent to the ancestor goals until reaching
a matching @code{ catch/3} , or until reaching top-level.
@item garbage_ collect
@findex garbage_ collect/0
@syindex garbage_ collect/0
@cnindex garbage_ collect/0
The goal @code{ garbage_ collect} forces a garbage collection.
2002-06-05 13:54:11 +01:00
@item garbage_ collect_ atoms
@findex garbage_ collect_ atoms/0
@syindex garbage_ collect_ atoms/0
@cnindex garbage_ collect_ atoms/0
The goal @code{ garbage_ collect} forces a garbage collection of the atoms
in the data-base. Currently, only atoms are recovered.
2001-04-09 20:54:03 +01:00
@item gc
@findex gc/0
@syindex gc/0
@cnindex gc/0
The goal @code{ gc} enables garbage collection. The same as
@code{ yap_ flag(gc,on)} .
@item nogc
@findex nogc/0
@syindex nogc/0
@cnindex nogc/0
The goal @code{ nogc} disables garbage collection. The same as
@code{ yap_ flag(gc,off)} .
@item grow_ heap(+@var{ Size} )
@snindex grow_ heap/1
@cnindex grow_ heap/1
Increase heap size @var{ Size} kilobytes.
@item grow_ stack(+@var{ Size} )
@findex grow_ stack/1
@snindex grow_ stack/1
@cnindex grow_ stack/1
Increase stack size @var{ Size} kilobytes.
@end table
2008-02-22 15:08:37 +00:00
@node Undefined Procedures, Messages, Control, Top
2001-04-09 20:54:03 +01:00
@section Handling Undefined Procedures
A predicate in a module is said to be undefined if there are no clauses
defining the predicate, and if the predicate has not been declared to be
dynamic. What YAP does when trying to execute undefined predicates can
2008-02-22 15:08:37 +00:00
be specified in three different ways:
2001-04-09 20:54:03 +01:00
@itemize @bullet
@item By setting an YAP flag, through the @code{ yap_ flag/2} or
2002-10-11 04:39:11 +01:00
@code{ set_ prolog_ flag/2} built-ins. This solution generalizes the
2001-04-09 20:54:03 +01:00
ISO standard.
@item By using the @code{ unknown/2} built-in (this solution is
compatible with previous releases of YAP).
@item By defining clauses for the hook predicate
@code{ user:unknown_ predicate_ handler/3} . This solution is compatible
with SICStus Prolog.
@end itemize
In more detail:
@table @code
@item unknown(-@var{ O} ,+@var{ N} )
@findex unknown/2
@saindex unknown/2
@cnindex unknown/2
Specifies an handler to be called is a program tries to call an
undefined static procedure @var{ P} .
The arity of @var{ N} may be zero or one. If the arity is @code{ 0} , the
new action must be one of @code{ fail} , @code{ warning} , or
@code{ error} . If the arity is @code{ 1} , @var{ P} is an user-defined
handler and at run-time, the argument to the handler @var{ P} will be
unified with the undefined goal. Note that @var{ N} must be defined prior
to calling @code{ unknown/2} , and that the single argument to @var{ N} must
be unbound.
In YAP, the default action is to @code{ fail} (note that in the ISO
Prolog standard the default action is @code{ error} ).
After defining @code{ undefined/1} by:
@example
2006-03-22 15:00:29 +00:00
undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.
2001-04-09 20:54:03 +01:00
@end example
@noindent
and executing the goal:
@example
unknown(U,undefined(X)).
@end example
@noindent
a call to a predicate for which no clauses were defined will result in
the output of a message of the form:
@example
Undefined predicate: user:xyz(A1,A2)
@end example
@noindent
followed by the failure of that call.
2002-08-09 17:36:55 +01:00
@item yap_ flag(unknown,+@var{ SPEC} )
2001-04-09 20:54:03 +01:00
Alternatively, one can use @code{ yap_ flag/2} ,
@code{ current_ prolog_ flag/2} , or @code{ set_ prolog_ flag/2} , to set this
functionality. In this case, the first argument for the built-ins should
be @code{ unknown} , and the second argument should be either
@code{ error} , @code{ warning} , @code{ fail} , or a goal.
@item user:unknown_ predicate_ handler(+G,+M,?NG)
2002-06-01 05:29:01 +01:00
@findex unknown_ predicate_ handler/3
@syindex unknown_ predicate_ handler/3
@cnindex unknown_ predicate_ handler/3
2001-04-09 20:54:03 +01:00
The user may also define clauses for
@code{ user:unknown_ predicate_ handler/3} hook predicate. This
user-defined procedure is called before any system processing for the
undefined procedure, with the first argument @var{ G} set to the current
2004-06-23 18:24:20 +01:00
goal, and the second @var{ M} set to the current module. The predicate
@var{ G} will be called from within the user module.
2001-04-09 20:54:03 +01:00
If @code{ user:unknown_ predicate_ handler/3} succeeds, the system will
execute @var{ NG} . If @code{ user:unknown_ predicate_ handler/3} fails, the
system will execute default action as specified by @code{ unknown/2} .
2010-03-01 23:02:48 +00:00
@item exception(+@var{ Exception} , +@var{ Context} , -@var{ Action} )
@findex exception/3
@syindex exception/3
@cnindex exception/3
Dynamic predicate, normally not defined. Called by the Prolog system on run-time exceptions that can be repaired `just-in-time'. The values for @var{ Exception} are described below. See also @code{ catch/3} and @code{ throw/1} .
If this hook predicate succeeds it must instantiate the @var{ Action} argument to the atom @code{ fail} to make the operation fail silently, @code{ retry} to tell Prolog to retry the operation or @code{ error} to make the system generate an exception. The action @code{ retry} only makes sense if this hook modified the environment such that the operation can now succeed without error.
@table @code
@item undefined_ predicate
@var{ Context} is instantiated to a predicate-indicator (@var{ Module:Name/Arity} ). If the predicate fails Prolog will generate an existence_ error exception. The hook is intended to implement alternatives to the SWI built-in autoloader, such as autoloading code from a database. Do not use this hook to suppress existence errors on predicates. See also @code{ unknown} .
@item undefined_ global_ variable
@var{ Context} is instantiated to the name of the missing global variable. The hook must call @code{ nb_ setval/2} or @code{ b_ setval/2} before returning with the action retry.
@end table
2001-04-09 20:54:03 +01:00
@end table
2008-02-22 15:08:37 +00:00
@node Messages, Testing Terms, Undefined Procedures, Top
@section Message Handling
The interaction between YAP and the user relies on YAP's ability to
portray messages. These messages range from prompts to error
information. All message processing is performed through the builtin
@code{ print_ message/2} , in two steps:
@itemize @bullet
@item The message is processed into a list of commands
@item The commands in the list are sent to the @code{ format/3} builtin
in sequence.
@end itemize
The first argument to @code{ print_ message/2} specifies the importance of
the message. The options are:
@table @code
@item error
error handling
@item warning
compilation and run-time warnings,
@item informational
generic informational messages
@item help
help messages (not currently implemented in YAP)
@item query
query used in query processing (not currently implemented in YAP)
@item silent
messages that do not produce output but that can be intercepted by hooks.
@end table
The next table shows the main predicates and hooks associated to message
handling in YAP:
@table @code
@item print_ message(+@var{ Kind} , @var{ Term} )
@findex print_ message/2
@syindex print_ message/2
@cnindex print_ message/2
The predicate print_ message/2 is used to print messages, notably from
exceptions in a human-readable format. @var{ Kind} is one of
@code{ informational} , @code{ banner} , @code{ warning} , @code{ error} ,
@code{ help} or @code{ silent} . A human-readable message is printed to
the stream @code{ user_ error} .
@c \index { silent} \index { quiet} %
If the Prolog flag @code{ verbose} is @code{ silent} , messages with
@var{ Kind} @code{ informational} , or @code{ banner} are treated as
silent.@c See \cmdlineoption { -q} .
This predicate first translates the @var{ Term} into a list of `message
lines' (see @code{ print_ message_ lines/3} for details). Next it will
call the hook @code{ message_ hook/3} to allow the user intercepting the
message. If @code{ message_ hook/3} fails it will print the message unless
@var{ Kind} is silent.
@c The print_ message/2 predicate and its rules are in the file
@c \file { <plhome>/boot/messages.pl} , which may be inspected for more
@c information on the error messages and related error terms.
If you need to report errors from your own predicates, we advise you to
stick to the existing error terms if you can; but should you need to
invent new ones, you can define corresponding error messages by
asserting clauses for @code{ prolog:message/2} . You will need to declare
the predicate as multifile.
@c See also message_ to_ string/2.
@item print_ message_ lines(+@var{ Stream} , +@var{ Prefix} , +@var{ Lines} )
@findex print_ message_ lines/3
@syindex print_ message_ lines/3
@cnindex print_ message_ lines/3
Print a message (see @code{ print_ message/2} ) that has been translated to
a list of message elements. The elements of this list are:
@table @code
@item @code{ <Format>} -@code{ <Args>}
Where @var{ Format} is an atom and @var{ Args} is a list
of format argument. Handed to @code{ format/3} .
@item @code{ flush}
If this appears as the last element, @var{ Stream} is flushed
(see @code{ flush_ output/1} ) and no final newline is generated.
@item @code{ at_ same_ line}
If this appears as first element, no prefix is printed for
the first line and the line-position is not forced to 0
(see @code{ format/1} , @code{ ~N} ).
@item @code{ <Format>}
Handed to @code{ format/3} as @code{ format(Stream, Format, [])} .
@item nl
A new line is started and if the message is not complete
the @var{ Prefix} is printed too.
@end table
@item user:message_ hook(+@var{ Term} , +@var{ Kind} , +@var{ Lines} )
@findex message_ hook/3
@syindex message_ hook/3
@cnindex message_ hook/3
Hook predicate that may be define in the module @code{ user} to intercept
messages from @code{ print_ message/2} . @var{ Term} and @var{ Kind} are the
same as passed to @code{ print_ message/2} . @var{ Lines} is a list of
format statements as described with @code{ print_ message_ lines/3} .
This predicate should be defined dynamic and multifile to allow other
modules defining clauses for it too.
2009-11-23 10:09:32 +00:00
@item message_ to_ string(+@var{ Term} , -@var{ String} )
@findex message_ to_ string/2
@snindex message_ to_ string/2
@cnindex message_ to_ string/2
Translates a message-term into a string object. Primarily intended for SWI-Prolog emulation.
2008-02-22 15:08:37 +00:00
@end table
@node Testing Terms, Predicates on Atoms, Messages, Top
2001-04-09 20:54:03 +01:00
@section Predicates on terms
@table @code
@item var(@var{ T} ) [ISO]
@findex var/1
@syindex var/1
@cyindex var/1
Succeeds if @var{ T} is currently a free variable, otherwise fails.
@item atom(@var{ T} ) [ISO]
@findex atom/1
@syindex atom/1
@cyindex atom/1
Succeeds if and only if @var{ T} is currently instantiated to an atom.
@item atomic(T) [ISO]
@findex atomic/1
@syindex atomic/1
@cyindex atomic/1
Checks whether @var{ T} is an atomic symbol (atom or number).
@item compound(@var{ T} ) [ISO]
@findex compound/1
@syindex compound/1
@cnindex compound/1
Checks whether @var{ T} is a compound term.
@item db_ reference(@var{ T} )
@findex db_ reference/1C
@syindex db_ reference/1
@cyindex db_ reference/1
Checks whether @var{ T} is a database reference.
@item float(@var{ T} ) [ISO]
@findex float/1
@syindex float/1
@cnindex float/1
Checks whether @var{ T} is a floating point number.
2010-09-27 23:32:45 +01:00
@item rational(@var{ T} )
2010-05-28 12:06:42 +01:00
@findex rational/1
@syindex rational/1
@cyindex rational/1
Checks whether @code{ T} is a rational number.
2001-04-09 20:54:03 +01:00
@item integer(@var{ T} ) [ISO]
@findex integer/1
@syindex integer/1
@cyindex integer/1
Succeeds if and only if @var{ T} is currently instantiated to an integer.
@item nonvar(@var{ T} ) [ISO]
@findex nonvar/1
@syindex nonvar/1
@cyindex nonvar/1
The opposite of @code{ var(@var{ T} )} .
@item number(@var{ T} ) [ISO]
@findex number/1
@syindex number/1
@cyindex number/1
2010-05-28 12:06:42 +01:00
Checks whether @code{ T} is an integer, rational or a float.
2001-04-09 20:54:03 +01:00
@item primitive(@var{ T} )
@findex primitive/1
@syindex primitive/1
@cyindex primitive/1
Checks whether @var{ T} is an atomic term or a database reference.
@item simple(@var{ T} )
@findex simple/1
@syindex simple/1
@cnindex simple/1
Checks whether @var{ T} is unbound, an atom, or a number.
@item callable(@var{ T} )
@findex callable/1
@syindex callable/1
@cnindex callable/1
Checks whether @var{ T} is a callable term, that is, an atom or a
compound term.
2007-12-29 12:26:41 +00:00
@item numbervars(@var{ T} ,+@var{ N1} ,-@var{ Nn} )
@findex numbervars/3
@syindex numbervars/3
@cnindex numbervars/3
Instantiates each variable in term @var{ T} to a term of the form:
@code{ '$ VAR' ( @var { I } ) } , with @var { I } increasing from @var { N 1 } to @var { Nn } .
@item ground(@var{ T} )
@findex ground/1
@syindex ground/1
@cnindex ground/1
Succeeds if there are no free variables in the term @var{ T} .
@item arg(+@var{ N} ,+@var{ T} ,@var{ A} ) [ISO]
@findex arg/3
@syindex arg/3
@cnindex arg/3
Succeeds if the argument @var{ N} of the term @var{ T} unifies with
@var{ A} . The arguments are numbered from 1 to the arity of the term.
The current version will generate an error if @var{ T} or @var{ N} are
unbound, if @var{ T} is not a compound term, of if @var{ N} is not a positive
integer. Note that previous versions of YAP would fail silently
under these errors.
2008-02-02 03:35:35 +00:00
@item functor(@var{ T} ,@var{ F} ,@var{ N} ) [ISO]
2007-12-29 12:26:41 +00:00
@findex functor/3
@syindex functor/3
@cyindex functor/3
The top functor of term @var{ T} is named @var{ F} and has arity @var{ N} .
When @var{ T} is not instantiated, @var{ F} and @var{ N} must be. If
@var{ N} is 0, @var{ F} must be an atomic symbol, which will be unified
with @var{ T} . If @var{ N} is not 0, then @var{ F} must be an atom and
@var{ T} becomes instantiated to the most general term having functor
@var{ F} and arity @var{ N} . If @var{ T} is instantiated to a term then
@var{ F} and @var{ N} are respectively unified with its top functor name
and arity.
In the current version of YAP the arity @var{ N} must be an
integer. Previous versions allowed evaluable expressions, as long as the
expression would evaluate to an integer. This feature is not available
in the ISO Prolog standard.
@item @var{ T} =.. @var{ L} [ISO]
@findex =../2
@syindex =../2
@cyindex =../2
The list @var{ L} is built with the functor and arguments of the term
@var{ T} . If @var{ T} is instantiated to a variable, then @var{ L} must be
instantiated either to a list whose head is an atom, or to a list
consisting of just a number.
@item @var{ X} = @var{ Y} [ISO]
@findex =/2
@syindex =/2
@cnindex =/2
Tries to unify terms @var{ X} and @var{ Y} .
@item @var{ X} \= @var{ Y} [ISO]
@findex \= /2
@snindex \= /2
@cnindex \= /2
Succeeds if terms @var{ X} and @var{ Y} are not unifiable.
@item unify_ with_ occurs_ check(?T1,?T2) [ISO]
@findex unify_ with_ occurs_ check/2
@syindex unify_ with_ occurs_ check/2
@cnindex unify_ with_ occurs_ check/2
Obtain the most general unifier of terms @var{ T1} and @var{ T2} , if there
is one.
This predicate implements the full unification algorithm. An example:n
@example
unify_ with_ occurs_ check(a(X,b,Z),a(X,A,f(B)).
@end example
@noindent
will succeed with the bindings @code{ A = b} and @code{ Z = f(B)} . On the
other hand:
@example
unify_ with_ occurs_ check(a(X,b,Z),a(X,A,f(Z)).
@end example
@noindent
would fail, because @code{ Z} is not unifiable with @code{ f(Z)} . Note that
@code{ (=)/2} would succeed for the previous examples, giving the following
bindings @code{ A = b} and @code{ Z = f(Z)} .
@item copy_ term(?@var{ TI} ,-@var{ TF} ) [ISO]
@findex copy_ term/2
@syindex copy_ term/2
@cnindex copy_ term/2
Term @var{ TF} is a variant of the original term @var{ TI} , such that for
each variable @var{ V} in the term @var{ TI} there is a new variable @var{ V'}
in term @var{ TF} . Notice that:
@itemize @bullet
@item suspended goals and attributes for attributed variables in
@var{ TI} are also duplicated;
@item ground terms are shared between the new and the old term.
@end itemize
If you do not want any sharing to occur please use
@code{ duplicate_ term/2} .
2009-04-25 16:59:23 +01:00
@item duplicate_ term(?@var{ TI} ,-@var{ TF} )
2007-12-29 12:26:41 +00:00
@findex duplicate_ term/2
@syindex duplicate_ term/2
@cnindex duplicate_ term/2
Term @var{ TF} is a variant of the original term @var{ TI} , such that
for each variable @var{ V} in the term @var{ TI} there is a new variable
@var{ V'} in term @var{ TF} , and the two terms do not share any
structure. All suspended goals and attributes for attributed variables
in @var{ TI} are also duplicated.
Also refer to @code{ copy_ term/2} .
2009-05-13 23:11:21 +01:00
2010-05-21 22:50:37 +01:00
@item is_ list(+@var{ List} )
@findex is_ list/1
@syindex is_ list/1
@cnindex is_ list/1
True when @var{ List} is a proper list. That is, @var{ List}
is bound to the empty list (nil) or a term with functor '.' and arity 2.
2010-09-24 14:00:53 +01:00
@item ?@var{ Term1} =@@= ?@var{ Term2}
2010-05-21 22:50:37 +01:00
@findex =@=/2
@syindex =@=/2
@cnindex =@=/2
Same as @code{ variant/2} , succeeds if @var{ Term1} and @var{ Term2} are variant terms.
2010-08-04 21:46:10 +01:00
@item subsumes_ term(?@var{ Subsumer} , ?@var{ Subsumed} )
@findex subsumes_ term/2
@syindex subsumes_ term/2
@cnindex subsumes_ term/2
Succeed if @var{ Submuser} subsumes @var{ Subsuned} but does not bind any
variable in @var{ Subsumer} .
2010-08-04 21:50:19 +01:00
@item acyclic_ term(?@var{ Term} )
@findex cyclic_ term/1
@syindex cyclic_ term/1
@cnindex cyclic_ term/1
Succeed if the argument @var{ Term} is an acyclic term.
2010-10-28 18:05:18 +01:00
@item term_ variables(?@var{ Term} , -@var{ Variables} )
@findex term_ variables/2
@syindex term_ variables/2
@cnindex term_ variables/2
Unify @var{ Variables} with the list of all variables of term
@var{ Term} . The variables occur in the order of their first
appearance when traversing the term depth-first, left-to-right.
2010-11-01 20:11:28 +00:00
@item rational_ term_ to_ tree(?@var{ TI} ,-@var{ TF} )
@findex rational_ term_ to_ tree/2
@syindex rational_ term_ to_ term/2
@cnindex rational_ term_ to_ tree/2
The term @var{ TF} is a tree representation (without cycles) for the
Prolog term @var{ TI} . Loops are replaced by terms of the form
@code{ _ LOOP_ (@var{ LevelsAbove} )} where @var{ LevelsAbove} is the size of
the loop.
@item tree_ to_ rational_ term(?@var{ TI} ,-@var{ TF} )
@findex tree_ to_ rational_ term/2
@syindex tree_ to_ rational_ term/2
@cnindex tree_ to_ rational_ term/2
Inverse of above. The term @var{ TI} is a tree representation (without
cycles) for the Prolog term @var{ TF} . Loops replace terms of the form
@code{ _ LOOP_ (@var{ LevelsAbove} )} where @var{ LevelsAbove} is the size of
the loop.
2010-08-04 21:46:10 +01:00
2007-12-29 12:26:41 +00:00
@end table
@node Predicates on Atoms, Predicates on Characters, Testing Terms, Top
@section Predicates on Atoms
The following predicates are used to manipulate atoms:
@table @code
2001-04-09 20:54:03 +01:00
@item name(@var{ A} ,@var{ L} )
@findex name/2
@syindex name/2
@cyindex name/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ A} will
be unified with an atomic symbol and @var{ L} with the list of the ASCII
codes for the characters of the external representation of @var{ A} .
@example
name(yap,L).
@end example
@noindent
will return:
@example
L = [121,97,112].
@end example
@noindent
and
@example
name(3,L).
@end example
@noindent
will return:
@example
L = [51].
@end example
@item atom_ chars(?@var{ A} ,?@var{ L} ) [ISO]
@findex atom_ chars/2
@saindex atom_ chars/2
@cnindex atom_ chars/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ A} must
be unifiable with an atom, and the argument @var{ L} with the list of the
2010-09-27 23:32:45 +01:00
characters of @var{ A} .
2001-04-09 20:54:03 +01:00
@item atom_ codes(?@var{ A} ,?@var{ L} ) [ISO]
@findex atom_ codes/2
@syindex atom_ codes/2
@cnindex atom_ codes/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ A} will
be unified with an atom and @var{ L} with the list of the ASCII
codes for the characters of the external representation of @var{ A} .
2001-04-17 22:07:41 +01:00
@item atom_ concat(+@var{ As} ,?@var{ A} )
@findex atom_ concat/2
2004-06-29 20:04:46 +01:00
@syindex atom_ concat/2
2001-04-17 22:07:41 +01:00
@cnindex atom_ concat/2
The predicate holds when the first argument is a list of atoms, and the
second unifies with the atom obtained by concatenating all the atoms in
the first list.
2004-06-29 20:04:46 +01:00
@item atomic_ concat(+@var{ As} ,?@var{ A} )
@findex atomic_ concat/2
@snindex atomic_ concat/2
@cnindex atomic_ concat/2
2009-11-23 10:14:23 +00:00
The predicate holds when the first argument is a list of atomic terms, and
the second unifies with the atom obtained by concatenating all the
atomic terms in the first list. The first argument thus may contain
atoms or numbers.
@item atomic_ list_ concat(+@var{ As} ,?@var{ A} )
@findex atomic_ list_ concat/2
@snindex atomic_ list_ concat/2
@cnindex atomic_ list_ concat/2
The predicate holds when the first argument is a list of atomic terms, and
2004-06-29 20:04:46 +01:00
the second unifies with the atom obtained by concatenating all the
atomic terms in the first list. The first argument thus may contain
atoms or numbers.
2010-06-18 00:30:39 +01:00
@item atomic_ list_ concat(?@var{ As} ,+@var{ Separator} ,?@var{ A} )
@findex atomic_ list_ concat/3
@snindex atomic_ list_ concat/3
@cnindex atomic_ list_ concat/3
Creates an atom just like @code{ atomic_ list_ concat/2} , but inserts
@var{ Separator} between each pair of atoms. For example:
@example
?- atomic_ list_ concat([gnu, gnat], ', ', A).
A = 'gnu, gnat'
@end example
YAP emulates the SWI-Prolog version of this predicate that can also be
used to split atoms by instantiating @var{ Separator} and @var{ Atom} as
shown below.
@example
?- atomic_ list_ concat(L, -, 'gnu-gnat').
L = [gnu, gnat]
@end example
2001-04-09 20:54:03 +01:00
@item atom_ length(+@var{ A} ,?@var{ I} ) [ISO]
@findex atom_ length/2
@snindex atom_ length/2
@cnindex atom_ length/2
The predicate holds when the first argument is an atom, and the second
unifies with the number of characters forming that atom.
@item atom_ concat(?@var{ A1} ,?@var{ A2} ,?@var{ A12} ) [ISO]
@findex atom_ concat/3
@snindex atom_ concat/3
@cnindex atom_ concat/3
The predicate holds when the third argument unifies with an atom, and
the first and second unify with atoms such that their representations
concatenated are the representation for @var{ A12} .
If @var{ A1} and @var{ A2} are unbound, the built-in will find all the atoms
that concatenated give @var{ A12} .
2010-09-27 23:32:45 +01:00
@item number_ chars(?@var{ I} ,?@var{ L} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex number_ chars/2
@saindex number_ chars/2
@cnindex number_ chars/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ I} must
be unifiable with a number, and the argument @var{ L} with the list of the
2010-09-27 23:32:45 +01:00
characters of the external representation of @var{ I} .
2001-04-09 20:54:03 +01:00
@item number_ codes(?@var{ A} ,?@var{ L} ) [ISO]
@findex number_ codes/2
@syindex number_ codes/2
@cnindex number_ codes/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ A}
will be unified with a number and @var{ L} with the list of the ASCII
codes for the characters of the external representation of @var{ A} .
2008-02-02 03:35:35 +00:00
@item atom_ number(?@var{ Atom} ,?@var{ Number} )
2007-10-09 00:02:16 +01:00
@findex atom_ number/2
@syindex atom_ number/2
@cnindex atom_ number/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). If the argument
@var{ Atom} is an atom, @var{ Number} must be the number corresponding
to the characters in @var{ Atom} , otherwise the characters in
@var{ Atom} must encode a number @var{ Number} .
2001-04-09 20:54:03 +01:00
@item number_ atom(?@var{ I} ,?@var{ L} )
@findex number_ atom/2
@snindex number_ atom/2
@cnindex number_ atom/2
The predicate holds when at least one of the arguments is ground
(otherwise, an error message will be displayed). The argument @var{ I} must
be unifiable with a number, and the argument @var{ L} must be unifiable
with an atom representing the number.
@item sub_ atom(+@var{ A} ,?@var{ Bef} , ?@var{ Size} , ?@var{ After} , ?@var{ At_ out} ) [ISO]
@findex sub_ atom/5
@snindex sub_ atom/5
@cnindex sub_ atom/5
True when @var{ A} and @var{ At_ out} are atoms such that the name of
2007-02-18 00:26:36 +00:00
@var{ At_ out} has size @var{ Size} and is a sub-string of the name of
2001-04-09 20:54:03 +01:00
@var{ A} , such that @var{ Bef} is the number of characters before and
@var{ After} the number of characters afterwards.
Note that @var{ A} must always be known, but @var{ At_ out} can be unbound when
calling this built-in. If all the arguments for @code{ sub_ atom/5} but @var{ A}
are unbound, the built-in will backtrack through all possible
2007-02-18 00:26:36 +00:00
sub-strings of @var{ A} .
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@end table
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@node Predicates on Characters, Comparing Terms, Predicates on Atoms, Top
2008-06-03 10:24:28 +01:00
@section Predicates on Characters
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
The following predicates are used to manipulate characters:
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@table @code
@item char_ code(?@var{ A} ,?@var{ I} ) [ISO]
@findex char_ code/2
@syindex char_ code/2
@cnindex char_ code/2
The built-in succeeds with @var{ A} bound to character represented as an
atom, and @var{ I} bound to the character code represented as an
integer. At least, one of either @var{ A} or @var{ I} must be bound before
the call.
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item char_ type(?@var{ Char} , ?@var{ Type} )
@findex char_ type/2
@snindex char_ type/2
@cnindex char_ type/2
Tests or generates alternative @var{ Types} or @var{ Chars} . The
character-types are inspired by the standard @code{ C}
@code{ <ctype.h>} primitives.
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@table @code
@item alnum
@var{ Char} is a letter (upper- or lowercase) or digit.
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item alpha
@var{ Char} is a letter (upper- or lowercase).
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item csym
@var{ Char} is a letter (upper- or lowercase), digit or the underscore (_ ). These are valid C- and Prolog symbol characters.
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item csymf
@var{ Char} is a letter (upper- or lowercase) or the underscore (_ ). These are valid first characters for C- and Prolog symbols
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item ascii
@var{ Char} is a 7-bits ASCII character (0..127).
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item white
@var{ Char} is a space or tab. E.i. white space inside a line.
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item cntrl
@var{ Char} is an ASCII control-character (0..31).
2001-04-09 20:54:03 +01:00
2007-12-29 12:26:41 +00:00
@item digit
@var{ Char} is a digit.
2001-04-09 20:54:03 +01:00
2010-10-04 19:35:22 +01:00
@item digit(@var{ Weight} )
2007-12-29 12:26:41 +00:00
@var{ Char} is a digit with value
2010-10-04 19:35:22 +01:00
@var{ Weight} . I.e. @code{ char_ type(X, digit(6))} yields @code{ X =
2007-12-29 12:26:41 +00:00
'6'} . Useful for parsing numbers.
2001-04-09 20:54:03 +01:00
2010-10-04 19:35:22 +01:00
@item xdigit(@var{ Weight} )
@var{ Char} is a hexa-decimal digit with value @var{ Weight} . I.e. char_ type(a, xdigit(X) yields X = '10'. Useful for parsing numbers.
2007-09-21 14:52:52 +01:00
2007-12-29 12:26:41 +00:00
@item graph
@var{ Char} produces a visible mark on a page when printed. Note that the space is not included!
2007-09-21 14:52:52 +01:00
2007-12-29 12:26:41 +00:00
@item lower
@var{ Char} is a lower-case letter.
@item lower(Upper)
2008-04-08 16:36:53 +01:00
@var{ Char} is a lower-case version of @var{ Upper} . Only true if
@var{ Char} is lowercase and @var{ Upper} uppercase.
2007-12-29 12:26:41 +00:00
@item to_ lower(Upper)
@var{ Char} is a lower-case version of Upper. For non-letters, or letter without case, @var{ Char} and Lower are the same. See also upcase_ atom/2 and downcase_ atom/2.
@item upper
@var{ Char} is an upper-case letter.
@item upper(Lower)
@var{ Char} is an upper-case version of Lower. Only true if @var{ Char} is uppercase and Lower lowercase.
@item to_ upper(Lower)
@var{ Char} is an upper-case version of Lower. For non-letters, or letter without case, @var{ Char} and Lower are the same. See also upcase_ atom/2 and downcase_ atom/2.
@item punct
@var{ Char} is a punctuation character. This is a graph character that is not a letter or digit.
@item space
@var{ Char} is some form of layout character (tab, vertical-tab, newline, etc.).
@item end_ of_ file
@var{ Char} is -1.
@item end_ of_ line
@var{ Char} ends a line (ASCII: 10..13).
@item newline
@var{ Char} is a the newline character (10).
@item period
@var{ Char} counts as the end of a sentence (.,!,?).
@item quote
@var{ Char} is a quote-character (", ', `).
@item paren(Close)
@var{ Char} is an open-parenthesis and Close is the corresponding close-parenthesis.
@end table
@item code_ type(?@var{ Code} , ?@var{ Type} )
@findex code_ type/2
@snindex code_ type/2
@cnindex code_ type/2
As @code{ char_ type/2} , but uses character-codes rather than
one-character atoms. Please note that both predicates are as
flexible as possible. They handle either representation if the
argument is instantiated and only will instantiate with an integer
code or one-character atom depending of the version used. See also
2008-04-04 23:05:34 +01:00
the prolog-flag @code{ double_ quotes} and the built-in predicates
@code{ atom_ chars/2} and @code{ atom_ codes/2} .
2007-09-21 14:52:52 +01:00
2001-04-09 20:54:03 +01:00
@end table
2007-12-29 12:26:41 +00:00
@node Comparing Terms, Arithmetic, Predicates on Characters, Top
2001-04-09 20:54:03 +01:00
@section Comparing Terms
The following predicates are used to compare and order terms, using the
standard ordering:
@itemize @bullet
@item
variables come before numbers, numbers come before atoms which in turn
2006-02-08 19:13:11 +00:00
come before compound terms, i.e.: variables @@< numbers @@< atoms @@<
2001-04-09 20:54:03 +01:00
compound terms.
@item
2010-05-28 12:06:42 +01:00
Variables are roughly ordered by "age" (the "oldest" variable is put
2001-04-09 20:54:03 +01:00
first);
@item
2010-05-28 12:06:42 +01:00
Floating point numbers are sorted in increasing order;
@item
Rational numbers are sorted in increasing order;
2001-06-19 18:47:45 +01:00
@item
Integers are sorted in increasing order;
2001-04-09 20:54:03 +01:00
@item
2010-05-28 12:06:42 +01:00
Atoms are sorted in lexicographic order;
2001-04-09 20:54:03 +01:00
@item
2010-05-28 12:06:42 +01:00
Compound terms are ordered first by arity of the main functor, then by
2007-04-16 16:24:24 +01:00
the name of the main functor, and finally by their arguments in
left-to-right order.
2001-04-09 20:54:03 +01:00
@end itemize
@table @code
@item compare(@var{ C} ,@var{ X} ,@var{ Y} )
@findex compare/3
@syindex compare/3
@cyindex compare/3
As a result of comparing @var{ X} and @var{ Y} , @var{ C} may take one of
the following values:
@itemize @bullet
@item
@code{ =} if @var{ X} and @var{ Y} are identical;
@item
@code{ <} if @var{ X} precedes @var{ Y} in the defined order;
@item
@code{ >} if @var{ Y} precedes @var{ X} in the defined order;
@end itemize
@item @var{ X} == @var{ Y} [ISO]
@findex ==/2
@syindex ==/2
@cyindex ==/2
Succeeds if terms @var{ X} and @var{ Y} are strictly identical. The
difference between this predicate and @code{ =/2} is that, if one of the
arguments is a free variable, it only succeeds when they have already
been unified.
@example
?- X == Y.
@end example
@noindent
fails, but,
@example
?- X = Y, X == Y.
@end example
@noindent
succeeds.
@example
?- X == 2.
@end example
@noindent
fails, but,
@example
?- X = 2, X == 2.
@end example
@noindent
succeeds.
@item @var{ X} \= = @var{ Y} [ISO]
@findex \= =/2
@syindex \= =/2
@cyindex \= =/2
Terms @var{ X} and @var{ Y} are not strictly identical.
@item @var{ X} @@< @var{ Y} [ISO]
@findex @@</2
@syindex @@</2
@cyindex @@</2
Term @var{ X} precedes term @var{ Y} in the standard order.
@item @var{ X} @@=< @var{ Y} [ISO]
@findex @@=</2
@syindex @@</2
@cyindex @@</2
Term @var{ X} does not follow term @var{ Y} in the standard order.
@item @var{ X} @@> @var{ Y} [ISO]
@findex @@>/2
@syindex @@>/2
@cyindex @@>/2
Term @var{ X} follows term @var{ Y} in the standard order.
@item @var{ X} @@>= @var{ Y} [ISO]
@findex @@>=/2
@syindex @@>=/2
@cyindex @@>=/2
Term @var{ X} does not precede term @var{ Y} in the standard order.
@item sort(+@var{ L} ,-@var{ S} )
@findex sort/2
@syindex sort/2
@cyindex sort/2
Unifies @var{ S} with the list obtained by sorting @var{ L} and merging
identical (in the sense of @code{ ==} ) elements.
@item keysort(+@var{ L} ,@var{ S} )
@findex keysort/2
@syindex keysort/2
@cyindex keysort/2
Assuming L is a list of the form @code{ @var{ Key} -@var{ Value} } ,
@code{ keysort(+@var{ L} ,@var{ S} )} unifies @var{ S} with the list obtained
from @var{ L} , by sorting its elements according to the value of
@var{ Key} .
@example
?- keysort([3-a,1-b,2-c,1-a,1-b],S).
@end example
@noindent
would return:
@example
S = [1-b,1-a,1-b,2-c,3-a]
@end example
2010-04-20 23:49:14 +01:00
@item predsort(+@var{ Pred} , +@var{ List} , -@var{ Sorted} )
@findex predsort/3
@snindex predsort/3
@cnindex predsort/3
Sorts similar to sort/2, but determines the order of two terms by
calling @var{ Pred} (-@var{ Delta} , +@var{ E1} , +@var{ E2} ) . This call must
unify @var{ Delta} with one of @code{ <} , @code{ >} or @code{ =} . If
built-in predicate compare/3 is used, the result is the same as
sort/2.
2002-10-14 17:22:33 +01:00
@item length(?@var{ L} ,?@var{ S} )
@findex length/2
@syindex length/2
@cyindex length/2
Unify the well-defined list @var{ L} with its length. The procedure can
be used to find the length of a pre-defined list, or to build a list
of length @var{ S} .
2001-04-09 20:54:03 +01:00
2002-10-14 17:22:33 +01:00
@end table
2001-04-09 20:54:03 +01:00
@node Arithmetic, I/O, Comparing Terms, Top
@section Arithmetic
2010-05-28 12:06:42 +01:00
2010-10-04 19:35:22 +01:00
YAP now supports several different numeric types:
2010-05-28 12:06:42 +01:00
@table @code
@item integers
When YAP is built using the GNU multiple precision arithmetic
library (GMP), integer arithmetic is unbounded, which means that
the size of integers is limited by available memory only. Without
GMP, SWI-Prolog integers have the same size as an address. The
type of integer support can be detected using the Prolog flags
bounded, min_ integer and max_ integer. As the use of GMP is
default, most of the following descriptions assume unbounded
integer arithmetic.
Internally, SWI-Prolog has three integer representations. Small
integers (defined by the Prolog flag max_ tagged_ integer) are
encoded directly. Larger integers are represented as cell values
on the global stack. Integers that do not fit in 64-bit are
represented as serialised GNU MPZ structures on the global stack.
@item number
Rational numbers (Q) are quotients of two integers. Rational
arithmetic is only provided if GMP is used (see above). Rational
numbers that are returned from is/2 are canonical, which means M
is positive and N and M have no common divisors. Rational numbers
are introduced in the computation using the rational/1,
rationalize/1 or the rdiv/2 (rational division) function.
@item float
Floating point numbers are represented using the C-type double. On most today platforms these are 64-bit IEEE floating point numbers.
@end table
Arithmetic functions that require integer arguments accept, in addition
to integers, rational numbers with denominator `1' and floating point
numbers that can be accurately converted to integers. If the required
argument is a float the argument is converted to float. Note that
conversion of integers to floating point numbers may raise an overflow
exception. In all other cases, arguments are converted to the same type
using the order integer to rational number to floating point number.
Arithmetic expressions in YAP may use the following operators or
@i{ evaluable predicates} :
2001-04-09 20:54:03 +01:00
@table @code
@item +@var{ X}
The value of @var{ X} itself.
@item -@var{ X} [ISO]
Symmetric value.
@item @var{ X} +@var{ Y} [ISO]
Sum.
@item @var{ X} -@var{ Y} [ISO]
Difference.
@item @var{ X} *@var{ Y} [ISO]
Product.
@item @var{ X} /@var{ Y} [ISO]
Quotient.
@item @var{ X} //@var{ Y} [ISO]
Integer quotient.
@item @var{ X} mod @var{ Y} [ISO]
2010-09-30 20:52:20 +01:00
Integer module operator, always positive.
2001-04-09 20:54:03 +01:00
2009-10-03 23:49:31 +01:00
@item @var{ X} rem @var{ Y} [ISO]
2010-09-30 20:52:20 +01:00
Integer remainder, similar to @code{ mod} but always has the same sign
@code{ X} .
2001-04-09 20:54:03 +01:00
2010-08-31 03:50:33 +01:00
@item @var{ X} div @var{ Y} [ISO]
2010-09-30 20:52:20 +01:00
Integer division, as if defined by @code{ (@var{ X} - @var{ X} mod @var{ Y} )
// @var{ Y} } .
2010-08-31 03:50:33 +01:00
2001-04-09 20:54:03 +01:00
@item exp(@var{ X} ) [ISO]
Natural exponential.
@item log(@var{ X} ) [ISO]
Natural logarithm.
@item log10(@var{ X} )
Decimal logarithm.
@item sqrt(@var{ X} ) [ISO]
Square root.
@item sin(@var{ X} ) [ISO]
Sine.
@item cos(@var{ X} ) [ISO]
Cosine.
@item tan(@var{ X} )
Tangent.
@item asin(@var{ X} )
Arc sine.
@item acos(@var{ X} )
Arc cosine.
@item atan(@var{ X} ) [ISO]
Arc tangent.
2010-09-28 02:38:22 +01:00
@item atan(@var{ X} ,@var{ Y} )
Four-quadrant arc tangent. Also available as @code{ atan2/2} .
2009-10-20 09:21:59 +01:00
2001-04-09 20:54:03 +01:00
@item sinh(@var{ X} )
Hyperbolic sine.
@item cosh(@var{ X} )
Hyperbolic cosine.
@item tanh(@var{ X} )
Hyperbolic tangent.
@item asinh(@var{ X} )
Hyperbolic arc sine.
@item acosh(@var{ X} )
Hyperbolic arc cosine.
@item atanh(@var{ X} )
Hyperbolic arc tangent.
2009-10-03 22:59:17 +01:00
@item lgamma(@var{ X} )
2010-05-28 12:06:42 +01:00
Logarithm of gamma function.
2008-08-12 02:27:23 +01:00
2010-03-05 00:01:04 +00:00
@item erf(@var{ X} )
2010-05-28 12:06:42 +01:00
Gaussian error function.
2010-03-05 00:01:04 +00:00
@item erfc(@var{ X} )
2010-05-28 12:06:42 +01:00
Complementary gaussian error function.
2010-03-05 00:01:04 +00:00
2008-08-12 02:27:23 +01:00
@item random(@var{ X} ) [ISO]
An integer random number between 0 and @var{ X} .
In @code{ iso} language mode the argument must be a floating
point-number, the result is an integer and it the float is equidistant
it is rounded up, that is, to the least integer greater than @var{ X} .
2008-01-01 21:05:13 +00:00
@item integer(@var{ X} )
2001-04-09 20:54:03 +01:00
If @var{ X} evaluates to a float, the integer between the value of @var{ X}
and 0 closest to the value of @var{ X} , else if @var{ X} evaluates to an
integer, the value of @var{ X} .
@item float(@var{ X} ) [ISO]
If @var{ X} evaluates to an integer, the corresponding float, else the float
itself.
@item float_ fractional_ part(@var{ X} ) [ISO]
The fractional part of the floating point number @var{ X} , or @code{ 0.0}
if @var{ X} is an integer. In the @code{ iso} language mode,
@var{ X} must be an integer.
@item float_ integer_ part(@var{ X} ) [ISO]
The float giving the integer part of the floating point number @var{ X} ,
or @var{ X} if @var{ X} is an integer. In the @code{ iso} language mode,
@var{ X} must be an integer.
@item abs(@var{ X} ) [ISO]
The absolute value of @var{ X} .
@item ceiling(@var{ X} ) [ISO]
2010-05-28 12:06:42 +01:00
The integer that is the smallest integral value not smaller than @var{ X} .
2001-04-09 20:54:03 +01:00
In @code{ iso} language mode the argument must be a floating
point-number and the result is an integer.
@item floor(@var{ X} ) [ISO]
2010-05-28 12:06:42 +01:00
The integer that is the greatest integral value not greater than @var{ X} .
2001-04-09 20:54:03 +01:00
In @code{ iso} language mode the argument must be a floating
point-number and the result is an integer.
@item round(@var{ X} ) [ISO]
The nearest integral value to @var{ X} . If @var{ X} is
equidistant to two integers, it will be rounded to the closest even
integral value.
In @code{ iso} language mode the argument must be a floating
point-number, the result is an integer and it the float is equidistant
it is rounded up, that is, to the least integer greater than @var{ X} .
@item sign(@var{ X} ) [ISO]
Return 1 if the @var{ X} evaluates to a positive integer, 0 it if
evaluates to 0, and -1 if it evaluates to a negative integer. If @var{ X}
evaluates to a floating-point number return 1.0 for a positive @var{ X} ,
0.0 for 0.0, and -1.0 otherwise.
2009-10-03 23:49:31 +01:00
@item truncate(@var{ X} ) [ISO]
2010-05-28 12:06:42 +01:00
The integral value between @var{ X} and 0 closest to
2001-04-09 20:54:03 +01:00
@var{ X} .
2010-05-28 12:06:42 +01:00
@item rational(@var{ X} )
Convert the expression @var{ X} to a rational number or integer. The
function returns the input on integers and rational numbers. For
floating point numbers, the returned rational number exactly represents
the float. As floats cannot exactly represent all decimal numbers the
results may be surprising. In the examples below, doubles can represent
@code{ 0.25} and the result is as expected, in contrast to the result of
@code{ rational(0.1)} . The function @code{ rationalize/1} gives a more
intuitive result.
@example
?- A is rational(0.25).
A is 1 rdiv 4
?- A is rational(0.1).
A = 3602879701896397 rdiv 36028797018963968
@end example
@item rationalize(@var{ X} )
Convert the Expr to a rational number or integer. The function is
similar to @code{ rational/1} , but the result is only accurate within the
rounding error of floating point numbers, generally producing a much
smaller denominator.
@example
?- A is rationalize(0.25).
A = 1 rdiv 4
?- A is rationalize(0.1).
A = 1 rdiv 10
@end example
2001-04-09 20:54:03 +01:00
@item max(@var{ X} ,@var{ Y} )
The greater value of @var{ X} and @var{ Y} .
@item min(@var{ X} ,@var{ Y} )
The lesser value of @var{ X} and @var{ Y} .
@item @var{ X} ^ @var{ Y}
@var{ X} raised to the power of @var{ Y} , (from the C-Prolog syntax).
@item exp(@var{ X} ,@var{ Y} )
@var{ X} raised to the power of @var{ Y} , (from the Quintus Prolog syntax).
@item @var{ X} ** @var{ Y} [ISO]
@var{ X} raised to the power of @var{ Y} (from ISO).
@item @var{ X} /\ @var{ Y} [ISO]
Integer bitwise conjunction.
@item @var{ X} \/ @var{ Y} [ISO]
Integer bitwise disjunction.
2009-10-03 22:59:17 +01:00
@item @var{ X} # @var{ Y}
2010-09-24 00:45:04 +01:00
@item @var{ X} >< @var{ Y}
@item xor(@var{ X} , @var{ Y} )
2001-04-09 20:54:03 +01:00
Integer bitwise exclusive disjunction.
@item @var{ X} << @var{ Y}
Integer bitwise left logical shift of @var{ X} by @var{ Y} places.
@item @var{ X} >> @var{ Y} [ISO]
Integer bitwise right logical shift of @var{ X} by @var{ Y} places.
@item \ @var{ X} [ISO]
Integer bitwise negation.
@item gcd(@var{ X} ,@var{ Y} )
The greatest common divisor of the two integers @var{ X} and @var{ Y} .
@item msb(@var{ X} )
2009-10-20 10:03:10 +01:00
The most significant bit of the non-negative integer @var{ X} .
2009-10-20 09:51:55 +01:00
@item lsb(@var{ X} )
2009-10-20 10:03:10 +01:00
The least significant bit of the non-negative integer @var{ X} .
@item popcount(@var{ X} )
The number of bits set to @code{ 1} in the binary representation of the
non-negative integer @var{ X} .
2001-04-09 20:54:03 +01:00
@item [@var{ X} ]
Evaluates to @var{ X} for expression @var{ X} . Useful because character
strings in Prolog are lists of character codes.
@example
X is Y*10+C-"0"
@end example
@noindent
is the same as
@example
X is Y*10+C-[48].
@end example
@noindent
which would be evaluated as:
@example
X is Y*10+C-48.
@end example
@end table
Besides numbers and the arithmetic operators described above, certain
atoms have a special meaning when present in arithmetic expressions:
@table @code
@item pi
2006-02-08 19:13:11 +00:00
The value of @emph{ pi} , the ratio of a circle's circumference to its
2001-04-09 20:54:03 +01:00
diameter.
@item e
The base of the natural logarithms.
2009-10-20 09:21:59 +01:00
@item epsilon
The difference between the float @code{ 1.0} and the first larger floating point
number.
2001-04-09 20:54:03 +01:00
@item inf
Infinity according to the IEEE Floating-Point standard. Note that
evaluating this term will generate a domain error in the @code{ iso}
language mode.
@item nan
Not-a-number according to the IEEE Floating-Point standard. Note that
evaluating this term will generate a domain error in the @code{ iso}
language mode.
@item cputime
CPU time in seconds, since YAP was invoked.
@item heapused
Heap space used, in bytes.
@item local
Local stack in use, in bytes.
@item global
Global stack in use, in bytes.
@item random
A "random" floating point number between 0 and 1.
@end table
The primitive YAP predicates involving arithmetic expressions are:
@table @code
@item @var{ X} is +@var{ Y} [2]
@findex is/2
@syindex is/2
@caindex is/2
This predicate succeeds iff the result of evaluating the expression
@var{ Y} unifies with @var{ X} . This is the predicate normally used to
perform evaluation of arithmetic expressions:
@example
X is 2+3*4
@end example
@noindent
succeeds with @code{ X = 14} .
@item +@var{ X} < +@var{ Y} [ISO]
@findex </2
@syindex </2
@cyindex </2
The value of the expression @var{ X} is less than the value of expression
@var{ Y} .
@item +@var{ X} =< +@var{ Y} [ISO]
@findex =</2
@syindex =</2
@cyindex =</2
The value of the expression @var{ X} is less than or equal to the value
of expression @var{ Y} .
@item +@var{ X} > +@var{ Y} [ISO]
@findex >/2
@syindex >/2
@cyindex >/2
The value of the expression @var{ X} is greater than the value of
expression @var{ Y} .
@item +@var{ X} >= +@var{ Y} [ISO]
@findex >=/2
@syindex >=/2
@cyindex >=/2
The value of the expression @var{ X} is greater than or equal to the
value of expression @var{ Y} .
@item +@var{ X} =:= +@var{ Y} [ISO]
@findex =:=/2
@syindex =:=/2
@cyindex =:=/2
The value of the expression @var{ X} is equal to the value of expression
@var{ Y} .
@item +@var{ X} =\= +@var{ Y} [ISO]
@findex =\= /2
@syindex =\= /2
@cyindex =\= /2
The value of the expression @var{ X} is different from the value of
expression @var{ Y} .
@item srandom(+@var{ X} )
@findex srandom/1
@snindex srandom/1
@cnindex srandom/1
Use the argument @var{ X} as a new seed for YAP's random number
generator. The argument should be an integer, but floats are acceptable.
@end table
@noindent
@strong{ Notes:}
@itemize @bullet
@item
2010-04-20 23:06:41 +01:00
Since YAP4, YAP @emph{ does not} convert automatically between integers
and floats.
2001-04-09 20:54:03 +01:00
@item
arguments to trigonometric functions are expressed in radians.
@item
2010-04-20 23:06:41 +01:00
if a (non-instantiated) variable occurs in an arithmetic expression YAP
will generate an exception. If no error handler is available, execution
will be thrown back to the top-level.
2001-04-09 20:54:03 +01:00
@end itemize
2010-04-20 23:06:41 +01:00
The following predicates provide counting:
@table @code
@item between(+@var{ Low} , +@var{ High} , ?@var{ Value} )
@findex between/3
@syindex between/3
@cnindex between/3
@var{ Low} and @var{ High} are integers, @var{ High} >=@var{ Low} . If
@var{ Value} is an integer, @var{ Low} =<@var{ Value}
=<@var{ High} . When @var{ Value} is a variable it is successively
bound to all integers between @var{ Low} and @var{ High} . If
@var{ High} is inf or infinite @code{ between/3} is true iff
@var{ Value} >= @var{ Low} , a feature that is particularly interesting
for generating integers from a certain value.
@item succ(?@var{ Int1} , ?@var{ Int2} )
@findex succ/3
@syindex succ/3
@cnindex succ/3
True if @var{ Int2} = @var{ Int1} + 1 and @var{ Int1} >= 0. At least
one of the arguments must be instantiated to a natural number. This
predicate raises the domain-error not_ less_ than_ zero if called with
a negative integer. E.g. @code{ succ(X, 0)} fails silently and succ(X, -1)
raises a domain-error. The behaviour to deal with natural numbers
only was defined by Richard O'Keefe to support the common
count-down-to-zero in a natural way.
@item plus(?@var{ Int1} , ?@var{ Int2} , ?@var{ Int3} )
@findex plus/3
@syindex plus/3
@cnindex plus/3
True if @var{ Int3} = @var{ Int1} + @var{ Int2} . At least two of the
three arguments must be instantiated to integers.
2010-04-21 00:15:11 +01:00
@end table
2010-04-20 23:06:41 +01:00
2001-04-09 20:54:03 +01:00
@node I/O, Database, Arithmetic, Top
@section I/O Predicates
Some of the I/O predicates described below will in certain conditions
provide error messages and abort only if the file_ errors flag is set.
If this flag is cleared the same predicates will just fail. Details on
setting and clearing this flag are given under 7.7.
@menu
Subnodes of Input/Output
* Streams and Files:: Handling Streams and Files
* C-Prolog File Handling:: C-Prolog Compatible File Handling
* I/O of Terms:: Input/Output of terms
* I/O of Characters:: Input/Output of Characters
* I/O for Streams:: Input/Output using Streams
* C-Prolog to Terminal:: C-Prolog compatible Character I/O to terminal
* I/O Control:: Controlling your Input/Output
2007-02-18 00:26:36 +00:00
* Sockets:: Using Sockets from YAP
2001-04-09 20:54:03 +01:00
@end menu
@node Streams and Files, C-Prolog File Handling, , I/O
@subsection Handling Streams and Files
@table @code
@item open(+@var{ F} ,+@var{ M} ,-@var{ S} ) [ISO]
@findex open/3
@syindex open/3
@cnindex open/3
Opens the file with name @var{ F} in mode @var{ M} ('read', 'write' or
'append'), returning @var{ S} unified with the stream name.
At most, there are 17 streams opened at the same time. Each stream is
either an input or an output stream but not both. There are always 3
open streams: @code{ user_ input} for reading, @code{ user_ output} for writing
and @code{ user_ error} for writing. If there is no ambiguity, the atoms
@code{ user_ input} and @code{ user_ output} may be referred to as @code{ user} .
The @code{ file_ errors} flag controls whether errors are reported when in
mode 'read' or 'append' the file @var{ F} does not exist or is not
readable, and whether in mode 'write' or 'append' the file is not
writable.
@item open(+@var{ F} ,+@var{ M} ,-@var{ S} ,+@var{ Opts} ) [ISO]
@findex open/4
@saindex open/4
@cnindex open/4
Opens the file with name @var{ F} in mode @var{ M} ('read', 'write' or
'append'), returning @var{ S} unified with the stream name, and following
these options:
@table @code
2010-09-27 23:32:45 +01:00
@item type(+@var{ T} ) [ISO]
2001-04-09 20:54:03 +01:00
Specify whether the stream is a @code{ text} stream (default), or a
@code{ binary} stream.
2010-09-27 23:32:45 +01:00
@item reposition(+@var{ Bool} ) [ISO]
2001-04-09 20:54:03 +01:00
Specify whether it is possible to reposition the stream (@code{ true} ), or
not (@code{ false} ). By default, YAP enables repositioning for all
files, except terminal files and sockets.
2010-09-27 23:32:45 +01:00
@item eof_ action(+@var{ Action} ) [ISO]
2001-04-09 20:54:03 +01:00
Specify the action to take if attempting to input characters from a
2007-09-16 21:09:24 +01:00
stream where we have previously found an @code{ end_ of_ file} . The possible
2001-04-09 20:54:03 +01:00
actions are @code{ error} , that raises an error, @code{ reset} , that tries to
reset the stream and is used for @code{ tty} type files, and @code{ eof_ code} ,
2007-09-16 21:09:24 +01:00
which generates a new @code{ end_ of_ file} (default for non-tty files).
2001-04-09 20:54:03 +01:00
2010-09-27 23:32:45 +01:00
@item alias(+@var{ Name} ) [ISO]
2002-03-27 20:53:58 +00:00
Specify an alias to the stream. The alias @t{ Name} must be an atom. The
alias can be used instead of the stream descriptor for every operation
concerning the stream.
2001-04-09 20:54:03 +01:00
The operation will fail and give an error if the alias name is already
in use. YAP allows several aliases for the same file, but only
one is returned by @code{ stream_ property/2}
2007-04-03 16:03:11 +01:00
@item bom(+@var{ Bool} )
If present and @code{ true} , a BOM (@emph{ Byte Order Mark} ) was
detected while opening the file for reading or a BOM was written while
opening the stream. See @ref{ BOM} for details.
@item encoding(+@var{ Encoding} )
Set the encoding used for text. See @ref{ Encoding} for an overview of
wide character and encoding issues.
@item representation_ errors(+@var{ Mode} )
Change the behaviour when writing characters to the stream that cannot
be represented by the encoding. The behaviour is one of @code{ error}
(throw and I/O error exception), @code{ prolog} (write @code{ \u ...\}
escape code or @code{ xml} (write @code{ & #...;} XML character entity).
The initial mode is @code{ prolog} for the user streams and
@code{ error} for all other streams. See also @ref{ Encoding} .
2008-03-12 15:37:34 +00:00
@item expand_ filename(+@var{ Mode} )
If @var{ Mode} is @code{ true} then do filename expansion, then ask Prolog
to do file name expansion before actually trying to opening the file:
this includes processing @code{ ~} characters and processing @code{ $ }
environment variables at the beginning of the file. Otherwise, just try
to open the file using the given name.
The default behavior is given by the Prolog flag
@code{ open_ expands_ filename} .
2001-04-20 16:48:04 +01:00
@end table
2001-04-09 20:54:03 +01:00
@item close(+@var{ S} ) [ISO]
@findex close/1
@syindex close/1
@cyindex close/1
2001-04-16 17:41:04 +01:00
Closes the stream @var{ S} . If @var{ S} does not stand for a stream
currently opened an error is reported. The streams @code{ user_ input} ,
2001-04-09 20:54:03 +01:00
@code{ user_ output} , and @code{ user_ error} can never be closed.
2008-04-03 14:26:38 +01:00
@c By default, give a file name, @code{ close/1} will also try to close a
@c corresponding open stream. This feature is not available in ISO or
@c SICStus languages mode and is deprecated.
2001-04-09 20:54:03 +01:00
@item close(+@var{ S} ,+@var{ O} ) [ISO]
@findex close/2
@saindex close/2
@cnindex close/2
Closes the stream @var{ S} , following options @var{ O} .
The only valid options are @code{ force(true)} and @code{ force(false)} .
YAP currently ignores these options.
2008-02-12 17:03:59 +00:00
@item time_ file(+@var{ File} ,-@var{ Time} )
@findex time_ file/2
@snindex time_ file/2
@cnindex time_ file/2
2008-02-22 15:08:37 +00:00
Unify the last modification time of @var{ File} with
2008-02-12 17:03:59 +00:00
@var{ Time} . @var{ Time} is a floating point number expressing the seconds
elapsed since Jan 1, 1970.
2007-09-27 16:25:34 +01:00
@item absolute_ file_ name(+@var{ Name} ,+@var{ Options} , -@var{ FullPath} )
@item absolute_ file_ name(+@var{ Name} , -@var{ FullPath} ,+@var{ Options} )
@findex absolute_ file_ name/3
@syindex absolute_ file_ name/3
@cnindex absolute_ file_ name/3
Converts the given file specification into an absolute path.
@var{ Option} is a list of options to guide the conversion:
@table @code
@item extensions(+@var{ ListOfExtensions} )
List of file-extensions to try. Default is @samp{ ''} . For each
extension, @code{ absolute_ file_ name/3} will first add the extension and then
verify the conditions imposed by the other options. If the condition
fails, the next extension of the list is tried. Extensions may be
specified both as @code{ .ext} or plain @code{ ext} .
@item relative_ to(+@var{ FileOrDir} )
Resolve the path relative to the given directory or directory the
holding the given file. Without this option, paths are resolved
2008-04-04 23:05:34 +01:00
relative to the working directory (see @code{ working_ directory/2} ) or,
if @var{ Spec} is atomic and @code{ absolute_ file_ name/[2,3]} is executed
2007-09-27 16:25:34 +01:00
in a directive, it uses the current source-file as reference.
@item access(+@var{ Mode} )
Imposes the condition access_ file(@var{ File} , @var{ Mode} ). @var{ Mode}
2010-04-10 21:23:38 +01:00
is on of @code{ read} , @code{ write} , @code{ append} , @code{ exist} or
@code{ none} (default).
2008-04-04 23:05:34 +01:00
See also @code{ access_ file/2} .
2007-09-27 16:25:34 +01:00
@item file_ type(+@var{ Type} )
Defines extensions. Current mapping: @code{ txt} implies @code{ ['']} ,
@code{ prolog} implies @code{ ['.pl', '']} , @code{ executable} implies
@code{ ['.so', '']} , @code{ qlf} implies @code{ ['.qlf', '']} and
@code{ directory} implies @code{ ['']} . The file-type @code{ source}
is an alias for @code{ prolog} for compatibility to SICStus Prolog.
2010-09-24 12:14:37 +01:00
See also @code{ prolog_ file_ type/2} . Notice also that this predicate only
returns non-directories, unless the option @code{ file_ type(directory)} is
specified, or unless @code{ access(none)} .
2007-09-27 16:25:34 +01:00
@item file_ errors(@code{ fail} /@code{ error} )
If @code{ error} (default), throw and @code{ existence_ error} exception
if the file cannot be found. If @code{ fail} , stay silent.
@item solutions(@code{ first} /@code{ all} )
If @code{ first} (default), the predicates leaves no choice-point.
Otherwise a choice-point will be left and backtracking may yield
more solutions.
@c @item expand(@code{ true} /@code{ false} )
@c If @code{ true} (default is @code{ false} ) and @var{ Spec} is atomic,
@c call @code{ expand_ file_ name/2} followed by @code{ member/2} on @var{ Spec} before
@c proceeding. This is a SWI-Prolog extension.
@end table
@c The Prolog flag @code{ verbose_ file_ search} can be set to @code{ true}
@c to help debugging Prolog's search for files.
Compatibility considerations to common argument-order in ISO as well
as SICStus @code{ absolute_ file_ name/3} forced us to be flexible here.
If the last argument is a list and the 2nd not, the arguments are
swapped, making the call @code{ absolute_ file_ name} (+@var{ Spec} , -@var{ Path} ,
+@var{ Options} ) valid as well.
2002-01-02 05:35:20 +00:00
@item absolute_ file_ name(+@var{ Name} ,-@var{ FullPath} )
@findex absolute_ file_ name/2
@syindex absolute_ file_ name/2
@cnindex absolute_ file_ name/2
2007-02-18 00:26:36 +00:00
Give the path a full path @var{ FullPath} YAP would use to consult a file
2002-01-02 05:35:20 +00:00
named @var{ Name} . Unify @var{ FullPath} with @code{ user} if the file
name is @code{ user} .
2008-02-23 01:32:31 +00:00
@item file_ base_ name(+@var{ Name} ,-@var{ FileName} )
@findex file_ base_ name/2
@snindex file_ base_ name/2
@cnindex file_ base_ name/2
Give the path a full path @var{ FullPath} extract the @var{ FileName} .
2010-06-17 00:32:52 +01:00
@item file_ name_ extension(?@var{ Base} ,?@var{ Extension} , ?@var{ Name} )
@findex file_ name_ extension/3
@snindex file_ name_ extension/3
@cnindex file_ name_ extension/3
This predicate is used to add, remove or test filename extensions. The
main reason for its introduction is to deal with different filename
properties in a portable manner. If the file system is
case-insensitive, testing for an extension will be done
case-insensitive too. @var{ Extension} may be specified with or
without a leading dot (.). If an @var{ Extension} is generated, it
will not have a leading dot.
2001-04-09 20:54:03 +01:00
@item current_ stream(@var{ F} ,@var{ M} ,@var{ S} )
@findex current_ stream/3
@syindex current_ stream/3
@cnindex current_ stream/3
2001-05-21 21:03:51 +01:00
Defines the relation: The stream @var{ S} is opened on the file @var{ F}
in mode @var{ M} . It might be used to obtain all open streams (by
backtracking) or to access the stream for a file @var{ F} in mode
@var{ M} , or to find properties for a stream @var{ S} .
2001-04-09 20:54:03 +01:00
2008-02-12 17:03:59 +00:00
@item is_ stream(@var{ S} )
@findex is_ stream/1
@snindex is_ stream/1
@cnindex is_ stream/1
Succeeds if @var{ S} is a currently open stream.
2001-04-09 20:54:03 +01:00
@item flush_ output [ISO]
@findex flush_ output/0
@syindex flush_ output/0
@cnindex flush_ output/0
2009-08-20 02:24:13 +01:00
Send out all data in the output buffer of the current output stream.
2001-04-09 20:54:03 +01:00
@item flush_ output(+@var{ S} ) [ISO]
@findex flush_ output/1
@syindex flush_ output/1
@cnindex flush_ output/1
2009-08-20 02:24:13 +01:00
Send all data in the output buffer for stream @var{ S} .
2001-04-09 20:54:03 +01:00
2010-09-27 23:32:45 +01:00
@item set_ input(+@var{ S} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex set_ input/1
@syindex set_ input/1
@cnindex set_ input/1
Set stream @var{ S} as the current input stream. Predicates like @code{ read/1}
and @code{ get/1} will start using stream @var{ S} .
2010-09-27 23:32:45 +01:00
@item set_ output(+@var{ S} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex set_ output/1
@syindex set_ output/1
@cnindex set_ output/1
Set stream @var{ S} as the current output stream. Predicates like
@code{ write/1} and @code{ put/1} will start using stream @var{ S} .
@item stream_ select(+@var{ STREAMS} ,+@var{ TIMEOUT} ,-@var{ READSTREAMS} )
@findex stream_ select/3
@syindex stream_ select/3
@cnindex stream_ select/3
2007-02-18 00:26:36 +00:00
Given a list of open @var{ STREAMS} opened in read mode and a @var{ TIMEOUT}
2001-04-09 20:54:03 +01:00
return a list of streams who are now available for reading.
If the @var{ TIMEOUT} is instantiated to @code{ off} ,
@code{ stream_ select/3} will wait indefinitely for a stream to become
open. Otherwise the timeout must be of the form @code{ SECS:USECS} where
@code{ SECS} is an integer gives the number of seconds to wait for a timeout
and @code{ USECS} adds the number of micro-seconds.
This built-in is only defined if the system call @code{ select} is
available in the system.
@item current_ input(-@var{ S} ) [ISO]
@findex current_ input/1
@syindex current_ input/1
@cnindex current_ input/1
Unify @var{ S} with the current input stream.
@item current_ output(-@var{ S} ) [ISO]
@findex current_ output/1
@syindex current_ output/1
@cnindex current_ output/1
Unify @var{ S} with the current output stream.
@item at_ end_ of_ stream [ISO]
@findex at_ end_ of_ stream/0
@syindex at_ end_ of_ stream/0
@cnindex at_ end_ of_ stream/0
Succeed if the current stream has stream position end-of-stream or
past-end-of-stream.
@item at_ end_ of_ stream(+@var{ S} ) [ISO]
@findex at_ end_ of_ stream/1
@syindex at_ end_ of_ stream/1
@cnindex at_ end_ of_ stream/1
Succeed if the stream @var{ S} has stream position end-of-stream or
past-end-of-stream. Note that @var{ S} must be a readable stream.
@item set_ stream_ position(+@var{ S} , +@var{ POS} ) [ISO]
@findex set_ stream_ position/2
@syindex set_ stream_ position/2
@cnindex set_ stream_ position/2
Given a stream position @var{ POS} for a stream @var{ S} , set the current
stream position for @var{ S} to be @var{ POS} .
@item stream_ property(?@var{ Stream} ,?@var{ Prop} ) [ISO]
@findex stream_ property/2
@snindex stream_ property/2
@cnindex stream_ property/2
Obtain the properties for the open streams. If the first argument is
unbound, the procedure will backtrack through all open
streams. Otherwise, the first argument must be a stream term (you may
use @code{ current_ stream} to obtain a current stream given a file name).
2002-10-11 04:39:11 +01:00
The following properties are recognized:
2001-04-09 20:54:03 +01:00
@table @code
@item file_ name(@var{ P} )
An atom giving the file name for the current stream. The file names are
@code{ user_ input} , @code{ user_ output} , and @code{ user_ error} for the
standard streams.
@item mode(@var{ P} )
The mode used to open the file. It may be one of @code{ append} ,
@code{ read} , or @code{ write} .
@item input
The stream is readable.
@item output
The stream is writable.
@item alias(@var{ A} )
2007-02-18 00:26:36 +00:00
ISO-Prolog primitive for stream aliases. @t{ YAP} returns one of the
2001-04-09 20:54:03 +01:00
existing aliases for the stream.
@item position(@var{ P} )
A term describing the position in the stream.
@item end_ of_ stream(@var{ E} )
Whether the stream is @code{ at} the end of stream, or it has found the
end of stream and is @code{ past} , or whether it has @code{ not} yet
reached the end of stream.
@item eof_ action(@var{ A} )
The action to take when trying to read after reaching the end of
stream. The action may be one of @code{ error} , generate an error,
@code{ eof_ code} , return character code @code{ -1} , or @code{ reset} the
stream.
@item reposition(@var{ B} )
Whether the stream can be repositioned or not, that is, whether it is
seekable.
@item type(@var{ T} )
Whether the stream is a @code{ text} stream or a @code{ binary} stream.
2007-04-03 16:03:11 +01:00
@item bom(+@var{ Bool} )
If present and @code{ true} , a BOM (@emph{ Byte Order Mark} ) was
detected while opening the file for reading or a BOM was written while
opening the stream. See @ref{ BOM} for details.
@item encoding(+@var{ Encoding} )
Query the encoding used for text. See @ref{ Encoding} for an
overview of wide character and encoding issues in YAP.
@item representation_ errors(+@var{ Mode} )
Behaviour when writing characters to the stream that cannot be
represented by the encoding. The behaviour is one of @code{ error}
(throw and I/O error exception), @code{ prolog} (write @code{ \u ...\}
escape code or @code{ xml} (write @code{ & #...;} XML character entity).
The initial mode is @code{ prolog} for the user streams and
@code{ error} for all other streams. See also @ref{ Encoding} and
@code{ open/4} .
2001-04-09 20:54:03 +01:00
@end table
2008-03-12 16:19:02 +00:00
@item current_ line_ number(-@var{ LineNumber} )
@findex current_ line_ number/1
@saindex current_ line_ number/1
@cnindex current_ line_ number/1
Unify @var{ LineNumber} with the line number for the current stream.
@item current_ line_ number(+@var{ Stream} ,-@var{ LineNumber} )
@findex current_ line_ number/2
@saindex current_ line_ number/2
@cnindex current_ line_ number/2
Unify @var{ LineNumber} with the line number for the @var{ Stream} .
@item line_ count(+@var{ Stream} ,-@var{ LineNumber} )
@findex line_ count/2
@syindex line_ count/2
@cnindex line_ count/2
Unify @var{ LineNumber} with the line number for the @var{ Stream} .
@item character_ count(+@var{ Stream} ,-@var{ CharacterCount} )
@findex character_ count/2
@syindex character_ count/2
@cnindex character_ count/2
Unify @var{ CharacterCount} with the number of characters written to or
read to @var{ Stream} .
@item line_ position(+@var{ Stream} ,-@var{ LinePosition} )
@findex line_ position/2
@syindex line_ position/2
@cnindex line_ position/2
Unify @var{ LinePosition} with the position on current text stream
@var{ Stream} .
@item stream_ position(+@var{ Stream} ,-@var{ StreamPosition} )
@findex stream_ position/2
@syindex stream_ position/2
@cnindex stream_ position/2
Unify @var{ StreamPosition} with the packaged information of position on
current stream @var{ Stream} . Use @code{ stream_ position_ data/3} to
2010-10-04 19:35:22 +01:00
retrieve information on character or line count.
2008-03-12 16:19:02 +00:00
2010-10-04 19:35:22 +01:00
@item stream_ position_ data(+@var{ Field} ,+@var{ StreamPosition} ,-@var{ Info} )
2008-03-12 16:19:02 +00:00
@findex stream_ position_ data/3
@syindex stream_ position_ data/3
@cnindex stream_ position_ data/3
Given the packaged stream position term @var{ StreamPosition} , unify
@var{ Info} with @var{ Field} @code{ line_ count} , @code{ byte_ count} , or
@code{ char_ count} .
2001-04-09 20:54:03 +01:00
@end table
@node C-Prolog File Handling, I/O of Terms, Streams and Files, I/O
@subsection Handling Streams and Files
@table @code
@item tell(+@var{ S} )
@findex tell/1
@syindex tell/1
@cyindex tell/1
If @var{ S} is a currently opened stream for output, it becomes the
current output stream. If @var{ S} is an atom it is taken to be a
filename. If there is no output stream currently associated with it,
then it is opened for output, and the new output stream created becomes
the current output stream. If it is not possible to open the file, an
error occurs. If there is a single opened output stream currently
associated with the file, then it becomes the current output stream; if
there are more than one in that condition, one of them is chosen.
Whenever @var{ S} is a stream not currently opened for output, an error
may be reported, depending on the state of the file_ errors flag. The
predicate just fails, if @var{ S} is neither a stream nor an atom.
@item telling(-@var{ S} )
@findex telling/1
@syindex telling/1
@cyindex telling/1
The current output stream is unified with @var{ S} .
@item told
@findex told/0
@syindex told/0
@cyindex told/0
Closes the current output stream, and the user's terminal becomes again
the current output stream. It is important to remember to close streams
after having finished using them, as the maximum number of
simultaneously opened streams is 17.
@item see(+@var{ S} )
@findex see/1
@syindex see/1
@cyindex see/1
If @var{ S} is a currently opened input stream then it is assumed to be
the current input stream. If @var{ S} is an atom it is taken as a
filename. If there is no input stream currently associated with it, then
it is opened for input, and the new input stream thus created becomes
the current input stream. If it is not possible to open the file, an
error occurs. If there is a single opened input stream currently
associated with the file, it becomes the current input stream; if there
are more than one in that condition, then one of them is chosen.
When @var{ S} is a stream not currently opened for input, an error may be
reported, depending on the state of the @code{ file_ errors} flag. If
@var{ S} is neither a stream nor an atom the predicates just fails.
@item seeing(-@var{ S} )
@findex seeing/1
@syindex seeing/1
@cyindex seeing/1
The current input stream is unified with @var{ S} .
@item seen
@findex seen/0
@syindex seen/0
@cyindex seen/0
Closes the current input stream (see 6.7.).
@end table
@node I/O of Terms, I/O of Characters, C-Prolog File Handling, I/O
@subsection Handling Input/Output of Terms
@table @code
@item read(-@var{ T} ) [ISO]
@findex read/1
@syindex read/1
@cyindex read/1
Reads the next term from the current input stream, and unifies it with
@var{ T} . The term must be followed by a dot ('.') and any blank-character
as previously defined. The syntax of the term must match the current
declarations for operators (see op). If the end-of-stream is reached,
@var{ T} is unified with the atom @code{ end_ of_ file} . Further reads from of
the same stream may cause an error failure (see @code{ open/3} ).
@item read_ term(-@var{ T} ,+@var{ Options} ) [ISO]
@findex read_ term/2
@saindex read_ term/2
@cnindex read_ term/2
Reads term @var{ T} from the current input stream with execution
controlled by the following options:
@table @code
2008-03-12 16:19:02 +00:00
@item term_ position(-@var{ Position} )
@findex term_ position/1 (read_ term/2 option)
Unify @var{ Position} with a term describing the position of the stream
at the start of parse. Use @code{ stream_ position_ data/3} to obtain extra
information.
2001-04-09 20:54:03 +01:00
@item singletons(-@var{ Names} )
@findex singletons/1 (read_ term/2 option)
Unify @var{ Names} with a list of the form @var{ Name=Var} , where
@var{ Name} is the name of a non-anonymous singleton variable in the
original term, and @code{ Var} is the variable's representation in
YAP.
@item syntax_ errors(+@var{ Val} )
@findex syntax_ errors/1 (read_ term/2 option)
Control action to be taken after syntax errors. See @code{ yap_ flag/2}
for detailed information.
@item variable_ names(-@var{ Names} )
@findex variable_ names/1 (read_ term/2 option)
Unify @var{ Names} with a list of the form @var{ Name=Var} , where @var{ Name} is
the name of a non-anonymous variable in the original term, and @var{ Var}
is the variable's representation in YAP.
@item variables(-@var{ Names} )
@findex variables/1 (read_ term/2 option)
Unify @var{ Names} with a list of the variables in term @var{ T} .
@end table
@item char_ conversion(+@var{ IN} ,+@var{ OUT} ) [ISO]
@findex char_ conversion/2
@syindex char_ conversion/2
@cnindex char_ conversion/2
While reading terms convert unquoted occurrences of the character
@var{ IN} to the character @var{ OUT} . Both @var{ IN} and @var{ OUT} must be
bound to single characters atoms.
Character conversion only works if the flag @code{ char_ conversion} is
on. This is default in the @code{ iso} and @code{ sicstus} language
modes. As an example, character conversion can be used for instance to
convert characters from the ISO-LATIN-1 character set to ASCII.
If @var{ IN} is the same character as @var{ OUT} , @code{ char_ conversion/2}
will remove this conversion from the table.
@item current_ char_ conversion(?@var{ IN} ,?@var{ OUT} ) [ISO]
@findex current_ char_ conversion/2
@syindex current_ char_ conversion/2
@cnindex current_ char_ conversion/2
If @var{ IN} is unbound give all current character
translations. Otherwise, give the translation for @var{ IN} , if one
exists.
@item write(@var{ T} ) [ISO]
@findex write/1
@syindex write/1
@cyindex write/1
The term @var{ T} is written to the current output stream according to
the operator declarations in force.
2008-08-24 16:09:33 +01:00
@item writeln(@var{ T} ) [ISO]
@findex writeln/1
@snindex writeln/1
@cnindex writeln/1
2008-09-01 02:01:01 +01:00
Same as @code{ write/1} followed by @code{ nl/0} .
2008-08-24 16:09:33 +01:00
2001-04-09 20:54:03 +01:00
@item display(+@var{ T} )
@findex display/1
@syindex display/1
@cyindex display/1
Displays term @var{ T} on the current output stream. All Prolog terms are
written in standard parenthesized prefix notation.
@item write_ canonical(+@var{ T} ) [ISO]
@findex display/1
@syindex display/1
@cnindex display/1
Displays term @var{ T} on the current output stream. Atoms are quoted
when necessary, and operators are ignored, that is, the term is written
in standard parenthesized prefix notation.
@item write_ term(+@var{ T} , +@var{ Opts} ) [ISO]
@findex write_ term/2
@syindex write_ term/2
@cnindex write_ term/2
Displays term @var{ T} on the current output stream, according to the
following options:
@table @code
2010-09-27 23:32:45 +01:00
@item quoted(+@var{ Bool} ) [ISO]
2001-04-09 20:54:03 +01:00
If @code{ true} , quote atoms if this would be necessary for the atom to
2002-10-11 04:39:11 +01:00
be recognized as an atom by YAP's parser. The default value is
2001-04-09 20:54:03 +01:00
@code{ false} .
2010-09-27 23:32:45 +01:00
@item ignore_ ops(+@var{ Bool} ) [ISO]
2001-04-09 20:54:03 +01:00
If @code{ true} , ignore operator declarations when writing the term. The
default value is @code{ false} .
2010-09-27 23:32:45 +01:00
@item numbervars(+@var{ Bool} ) [ISO]
2001-04-09 20:54:03 +01:00
If @code{ true} , output terms of the form
@code{ '$ VAR' ( N ) } , where @var { N } is an integer, as a sequence of capital
letters. The default value is @code{ false} .
@item portrayed(+@var{ Bool} )
If @code{ true} , use @t{ portray/1} to portray bound terms. The default
value is @code{ false} .
2010-01-14 15:58:19 +00:00
@item portray(+@var{ Bool} )
If @code{ true} , use @t{ portray/1} to portray bound terms. The default
value is @code{ false} .
2001-04-09 20:54:03 +01:00
@item max_ depth(+@var{ Depth} )
If @code{ Depth} is a positive integer, use @t{ Depth} as
the maximum depth to portray a term. The default is @code{ 0} , that is,
unlimited depth.
2009-05-22 19:24:27 +01:00
@item priority(+@var{ Piority} )
If @code{ Priority} is a positive integer smaller than @code{ 1200} ,
give the context priority. The default is @code{ 1200} .
@item cycles(+@var{ Bool} )
Do not loop in rational trees (default).
2001-04-09 20:54:03 +01:00
@end table
@item writeq(@var{ T} ) [ISO]
@findex writeq/1
@syindex writeq/1
@cyindex writeq/1
Writes the term @var{ T} , quoting names to make the result acceptable to
the predicate 'read' whenever necessary.
@item print(@var{ T} )
@findex print/1
@syindex print/1
@cyindex print/1
Prints the term @var{ T} to the current output stream using @code{ write/1}
unless T is bound and a call to the user-defined predicate
@code{ portray/1} succeeds. To do pretty printing of terms the user should
define suitable clauses for @code{ portray/1} and use @code{ print/1} .
@item format(+@var{ T} ,+@var{ L} )
@findex format/2
@saindex format/2
@cnindex format/2
Print formatted output to the current output stream. The arguments in
list @var{ L} are output according to the string or atom @var{ T} .
A control sequence is introduced by a @code{ w} . The following control
sequences are available in YAP:
@table @code
@item '~~'
Print a single tilde.
@item '~a'
The next argument must be an atom, that will be printed as if by @code{ write} .
@item '~Nc'
The next argument must be an integer, that will be printed as a
character code. The number @var{ N} is the number of times to print the
character (default 1).
@item '~Ne'
@itemx '~NE'
@itemx '~Nf'
@itemx '~Ng'
@itemx '~NG'
The next argument must be a floating point number. The float @var{ F} , the number
@var{ N} and the control code @code{ c} will be passed to @code{ printf} as:
@example
printf("%s.Nc", F)
2009-02-16 12:25:03 +00:00
@end example
2001-04-09 20:54:03 +01:00
As an example:
@example
2001-04-16 17:41:04 +01:00
?- format("~8e, ~8E, ~8f, ~8g, ~8G~w",
[3.14,3.14,3.14,3.14,3.14,3.14]).
2001-04-09 20:54:03 +01:00
3.140000e+00, 3.140000E+00, 3.140000, 3.14, 3.143.14
@end example
@item '~Nd'
The next argument must be an integer, and @var{ N} is the number of digits
after the decimal point. If @var{ N} is @code{ 0} no decimal points will be
printed. The default is @var{ N = 0} .
@example
?- format("~2d, ~d",[15000, 15000]).
150.00, 15000
@end example
@item '~ND'
Identical to @code{ '~Nd'} , except that commas are used to separate groups
of three digits.
@example
?- format("~2D, ~D",[150000, 150000]).
1,500.00, 150,000
@end example
@item '~i'
Ignore the next argument in the list of arguments:
@example
?- format('The ~i met the boregrove',[mimsy]).
The met the boregrove
@end example
@item '~k'
Print the next argument with @code{ write_ canonical} :
@example
?- format("Good night ~k",a+[1,2]).
Good night +(a,[1,2])
@end example
@item '~Nn'
Print @var{ N} newlines (where @var{ N} defaults to 1).
@item '~NN'
Print @var{ N} newlines if at the beginning of the line (where @var{ N}
defaults to 1).
@item '~Nr'
The next argument must be an integer, and @var{ N} is interpreted as a
2001-07-18 15:51:10 +01:00
radix, such that @code{ 2 <= N <= 36} (the default is 8).
2001-04-09 20:54:03 +01:00
@example
2001-04-16 17:41:04 +01:00
?- format("~2r, 0x~16r, ~r",
[150000, 150000, 150000]).
2001-04-09 20:54:03 +01:00
100100100111110000, 0x249f0, 444760
@end example
@noindent
Note that the letters @code{ a-z} denote digits larger than 9.
@item '~NR'
Similar to '~NR'. The next argument must be an integer, and @var{ N} is
2001-07-18 15:51:10 +01:00
interpreted as a radix, such that @code{ 2 <= N <= 36} (the default is 8).
2001-04-09 20:54:03 +01:00
@example
2001-04-16 17:41:04 +01:00
?- format("~2r, 0x~16r, ~r",
[150000, 150000, 150000]).
2001-04-09 20:54:03 +01:00
100100100111110000, 0x249F0, 444760
@end example
@noindent
The only difference is that letters @code{ A-Z} denote digits larger than 9.
@item '~p'
Print the next argument with @code{ print/1} :
@example
?- format("Good night ~p",a+[1,2]).
Good night a+[1,2]
@end example
@item '~q'
Print the next argument with @code{ writeq/1} :
@example
?- format("Good night ~q",'Hello'+[1,2]).
Good night 'Hello'+[1,2]
@end example
@item '~Ns'
The next argument must be a list of character codes. The system then
outputs their representation as a string, where @var{ N} is the maximum
number of characters for the string (@var{ N} defaults to the length of the
string).
@example
?- format("The ~s are ~4s",["woods","lovely"]).
The woods are love
@end example
@item '~w'
2004-07-06 19:24:40 +01:00
Print the next argument with @code{ write/1} :
2001-04-09 20:54:03 +01:00
@example
?- format("Good night ~w",'Hello'+[1,2]).
Good night Hello+[1,2]
@end example
@end table
2002-10-01 21:29:58 +01:00
The number of arguments, @code{ N} , may be given as an integer, or it
may be given as an extra argument. The next example shows a small
procedure to write a variable number of @code{ a} characters:
@example
write_ many_ as(N) :-
format("~*c",[N,0'a]).
@end example
2001-04-09 20:54:03 +01:00
The @code{ format/2} built-in also allows for formatted output. One can
specify column boundaries and fill the intermediate space by a padding
character:
@table @code
@item '~N|'
Set a column boundary at position @var{ N} , where @var{ N} defaults to the
current position.
@item '~N+'
Set a column boundary at @var{ N} characters past the current position, where
@var{ N} defaults to @code{ 8} .
@item '~Nt'
Set padding for a column, where @var{ N} is the fill code (default is
@key{ SPC} ).
@end table
The next example shows how to align columns and padding. We first show
left-alignment:
@example
@code{
?- format("~n*Hello~16+*~n",[]).
*Hello *
}
@end example
Note that we reserve 16 characters for the column.
The following example shows how to do right-alignment:
@example
@code{
?- format("*~tHello~16+*~n",[]).
* Hello*
}
@end example
The @code{ ~t} escape sequence forces filling before @code{ Hello} .
We next show how to do centering:
@example
@code{
?- format("*~tHello~t~16+*~n",[]).
* Hello *
}
@end example
The two @code{ ~t} escape sequence force filling both before and after
2002-10-11 04:39:11 +01:00
@code{ Hello} . Space is then evenly divided between the right and the
2001-04-09 20:54:03 +01:00
left sides.
2008-08-10 16:44:12 +01:00
@item format(+@var{ T} )
@findex format/1
@saindex format/1
@cnindex format/1
Print formatted output to the current output stream.
2001-04-09 20:54:03 +01:00
@item format(+@var{ S} ,+@var{ T} ,+@var{ L} )
@findex format/3
@saindex format/3
@cnindex format/3
Print formatted output to stream @var{ S} .
2010-04-14 10:57:00 +01:00
@item with_ output_ to(+@var{ Ouput} ,:@var{ Goal} )
@findex with_ output_ to/2
@saindex with_ output_ to/2
@cnindex with_ output_ to/2
Run @var{ Goal} as @code{ once/1} , while characters written to the current
output are sent to @var{ Output} . The predicate is SWI-Prolog
specific.
Applications should generally avoid creating atoms by breaking and
concatenating other atoms as the creation of large numbers of
intermediate atoms generally leads to poor performance, even more so in
multi-threaded applications. This predicate supports creating
difference-lists from character data efficiently. The example below
defines the DCG rule @code{ term/3} to insert a term in the output:
@example
term(Term, In, Tail) :-
with_ output_ to(codes(In, Tail), write(Term)).
?- phrase(term(hello), X).
X = [104, 101, 108, 108, 111]
@end example
@table @code
@item A Stream handle or alias
Temporary switch current output to the given stream. Redirection using with_ output_ to/2 guarantees the original output is restored, also if Goal fails or raises an exception. See also call_ cleanup/2.
@item atom(-@var{ Atom} )
Create an atom from the emitted characters. Please note the remark above.
@item string(-@var{ String} )
Create a string-object (not supported in YAP).
@item codes(-@var{ Codes} )
Create a list of character codes from the emitted characters, similar to atom_ codes/2.
@item codes(-@var{ Codes} , -@var{ Tail} )
Create a list of character codes as a difference-list.
@item chars(-@var{ Chars} )
Create a list of one-character-atoms codes from the emitted characters, similar to atom_ chars/2.
@item chars(-@var{ Chars} , -@var{ Tail} )
Create a list of one-character-atoms as a difference-list.
@end table
2001-04-09 20:54:03 +01:00
@end table
@node I/O of Characters, I/O for Streams, I/O of Terms, I/O
@subsection Handling Input/Output of Characters
@table @code
@item put(+@var{ N} )
@findex put/1
@syindex put/1
@cyindex put/1
Outputs to the current output stream the character whose ASCII code is
@var{ N} . The character @var{ N} must be a legal ASCII character code, an
expression yielding such a code, or a list in which case only the first
element is used.
@item put_ byte(+@var{ N} ) [ISO]
@findex put_ byte/1
@snindex put_ byte/1
@cnindex put_ byte/1
Outputs to the current output stream the character whose code is
@var{ N} . The current output stream must be a binary stream.
@item put_ char(+@var{ N} ) [ISO]
@findex put_ char/1
@snindex put_ char/1
@cnindex put_ char/1
Outputs to the current output stream the character who is used to build
the representation of atom @code{ A} . The current output stream must be a
text stream.
@item put_ code(+@var{ N} ) [ISO]
@findex put_ code/1
@snindex put_ code/1
@cnindex put_ code/1
Outputs to the current output stream the character whose ASCII code is
@var{ N} . The current output stream must be a text stream. The character
@var{ N} must be a legal ASCII character code, an expression yielding such
a code, or a list in which case only the first element is used.
@item get(-@var{ C} )
@findex get/1
@syindex get/1
@cyindex get/1
The next non-blank character from the current input stream is unified
with @var{ C} . Blank characters are the ones whose ASCII codes are not
greater than 32. If there are no more non-blank characters in the
stream, @var{ C} is unified with -1. If @code{ end_ of_ stream} has already
been reached in the previous reading, this call will give an error message.
@item get0(-@var{ C} )
@findex get0/1
@syindex get0/1
@cyindex get0/1
The next character from the current input stream is consumed, and then
unified with @var{ C} . There are no restrictions on the possible
values of the ASCII code for the character, but the character will be
internally converted by YAP.
@item get_ byte(-@var{ C} ) [ISO]
@findex get_ byte/1
@snindex get_ byte/1
@cnindex get_ byte/1
If @var{ C} is unbound, or is a character code, and the current stream is a
binary stream, read the next byte from the current stream and unify its
code with @var{ C} .
@item get_ char(-@var{ C} ) [ISO]
@findex get_ char/1
@snindex get_ char/1
@cnindex get_ char/1
If @var{ C} is unbound, or is an atom representation of a character, and
the current stream is a text stream, read the next character from the
current stream and unify its atom representation with @var{ C} .
@item get_ code(-@var{ C} ) [ISO]
@findex get_ code/1
@snindex get_ code/1
@cnindex get_ code/1
If @var{ C} is unbound, or is the code for a character, and
the current stream is a text stream, read the next character from the
current stream and unify its code with @var{ C} .
@item peek_ byte(-@var{ C} ) [ISO]
@findex peek_ byte/1
@snindex peek_ byte/1
@cnindex peek_ byte/1
If @var{ C} is unbound, or is a character code, and the current stream is a
binary stream, read the next byte from the current stream and unify its
code with @var{ C} , while leaving the current stream position unaltered.
@item peek_ char(-@var{ C} ) [ISO]
@findex peek_ char/1
@syindex peek_ char/1
@cnindex peek_ char/1
If @var{ C} is unbound, or is an atom representation of a character, and
the current stream is a text stream, read the next character from the
current stream and unify its atom representation with @var{ C} , while
leaving the current stream position unaltered.
@item peek_ code(-@var{ C} ) [ISO]
@findex peek_ code/1
@snindex peek_ code/1
@cnindex peek_ code/1
If @var{ C} is unbound, or is the code for a character, and
the current stream is a text stream, read the next character from the
current stream and unify its code with @var{ C} , while
leaving the current stream position unaltered.
@item skip(+@var{ N} )
@findex skip/1
@syindex skip/1
@cyindex skip/1
Skips input characters until the next occurrence of the character with
ASCII code @var{ N} . The argument to this predicate can take the same forms
as those for @code{ put} (see 6.11).
@item tab(+@var{ N} )
@findex tab/1
@syindex tab/1
@cyindex tab/1
Outputs @var{ N} spaces to the current output stream.
@item nl [ISO]
@findex nl/0
@syindex nl/0
@cyindex nl/0
Outputs a new line to the current output stream.
@end table
@node I/O for Streams, C-Prolog to Terminal, I/O of Characters, I/O
@subsection Input/Output Predicates applied to Streams
@table @code
@item read(+@var{ S} ,-@var{ T} ) [ISO]
@findex read/2
@syindex read/2
@cnindex read/2
Reads term @var{ T} from the stream @var{ S} instead of from the current input
stream.
@item read_ term(+@var{ S} ,-@var{ T} ,+@var{ Options} ) [ISO]
@findex read_ term/3
@saindex read_ term/3
@cnindex read_ term/3
Reads term @var{ T} from stream @var{ S} with execution controlled by the
same options as @code{ read_ term/2} .
@item write(+@var{ S} ,@var{ T} ) [ISO]
@findex write/2
@syindex write/2
@cnindex write/2
Writes term @var{ T} to stream @var{ S} instead of to the current output
stream.
@item write_ canonical(+@var{ S} ,+@var{ T} ) [ISO]
2009-02-16 12:25:03 +00:00
@findex write_ canonical/2
@syindex write_ canonical/2
@cnindex write_ canonical/2
2001-04-09 20:54:03 +01:00
Displays term @var{ T} on the stream @var{ S} . Atoms are quoted when
necessary, and operators are ignored.
2009-02-16 12:25:03 +00:00
@item write_ canonical(+@var{ T} ) [ISO]
@findex write_ canonical/1
@syindex write_ canonical/1
@cnindex write_ canonical/1
Displays term @var{ T} . Atoms are quoted when necessary, and operators
are ignored.
2001-04-09 20:54:03 +01:00
@item write_ term(+@var{ S} , +@var{ T} , +@var{ Opts} ) [ISO]
@findex write_ term/3
@syindex write_ term/3
@cnindex write_ term/3
Displays term @var{ T} on the current output stream, according to the same
options used by @code{ write_ term/3} .
@item writeq(+@var{ S} ,@var{ T} ) [ISO]
@findex writeq/2
@syindex writeq/2
@cnindex writeq/2
As @code{ writeq/1} , but the output is sent to the stream @var{ S} .
@item display(+@var{ S} ,@var{ T} )
@findex display/2
@syindex display/2
@cnindex display/2
Like @code{ display/1} , but using stream @var{ S} to display the term.
@item print(+@var{ S} ,@var{ T} )
@findex print/2
@syindex print/2
@cnindex print/2
Prints term @var{ T} to the stream @var{ S} instead of to the current output
stream.
@item put(+@var{ S} ,+@var{ N} )
@findex put/2
@syindex put/2
@cnindex put/2
As @code{ put(N)} , but to stream @var{ S} .
@item put_ byte(+@var{ S} ,+@var{ N} ) [ISO]
@findex put_ byte/2
@snindex put_ byte/2
@cnindex put_ byte/2
As @code{ put_ byte(N)} , but to binary stream @var{ S} .
@item put_ char(+@var{ S} ,+@var{ A} ) [ISO]
@findex put_ char/2
@snindex put_ char/2
@cnindex put_ char/2
As @code{ put_ char(A)} , but to text stream @var{ S} .
@item put_ code(+@var{ S} ,+@var{ N} ) [ISO]
@findex put_ code/2
@snindex put_ code/2
@cnindex put_ code/2
As @code{ put_ code(N)} , but to text stream @var{ S} .
@item get(+@var{ S} ,-@var{ C} )
@findex get/2
@syindex get/2
@cnindex get/2
The same as @code{ get(C)} , but from stream @var{ S} .
@item get0(+@var{ S} ,-@var{ C} )
@findex get0/2
@syindex get0/2
@cnindex get0/2
The same as @code{ get0(C)} , but from stream @var{ S} .
@item get_ byte(+@var{ S} ,-@var{ C} ) [ISO]
@findex get_ byte/2
@snindex get_ byte/2
@cnindex get_ byte/2
If @var{ C} is unbound, or is a character code, and the stream @var{ S} is a
binary stream, read the next byte from that stream and unify its
code with @var{ C} .
@item get_ char(+@var{ S} ,-@var{ C} ) [ISO]
@findex get_ char/2
@snindex get_ char/2
@cnindex get_ char/2
If @var{ C} is unbound, or is an atom representation of a character, and
the stream @var{ S} is a text stream, read the next character from that
stream and unify its representation as an atom with @var{ C} .
@item get_ code(+@var{ S} ,-@var{ C} ) [ISO]
@findex get_ code/2
@snindex get_ code/2
@cnindex get_ code/2
If @var{ C} is unbound, or is a character code, and the stream @var{ S} is a
text stream, read the next character from that stream and unify its
code with @var{ C} .
@item peek_ byte(+@var{ S} ,-@var{ C} ) [ISO]
@findex peek_ byte/2
@snindex peek_ byte/2
@cnindex peek_ byte/2
If @var{ C} is unbound, or is a character code, and @var{ S} is a binary
stream, read the next byte from the current stream and unify its code
with @var{ C} , while leaving the current stream position unaltered.
@item peek_ char(+@var{ S} ,-@var{ C} ) [ISO]
@findex peek_ char/2
@snindex peek_ char/2
@cnindex peek_ char/2
If @var{ C} is unbound, or is an atom representation of a character, and
the stream @var{ S} is a text stream, read the next character from that
stream and unify its representation as an atom with @var{ C} , while leaving
the current stream position unaltered.
@item peek_ code(+@var{ S} ,-@var{ C} ) [ISO]
@findex peek_ code/2
@snindex peek_ code/2
@cnindex peek_ code/2
If @var{ C} is unbound, or is an atom representation of a character, and
the stream @var{ S} is a text stream, read the next character from that
stream and unify its representation as an atom with @var{ C} , while leaving
the current stream position unaltered.
@item skip(+@var{ S} ,-@var{ C} )
@findex skip/2
@syindex skip/2
@cnindex skip/2
Like @code{ skip/1} , but using stream @var{ S} instead of the current
input stream.
@item tab(+@var{ S} ,+@var{ N} )
@findex tab/2
@syindex tab/2
@cnindex tab/2
The same as @code{ tab/1} , but using stream @var{ S} .
2010-09-27 23:32:45 +01:00
@item nl(+@var{ S} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex nl/1
@syindex nl/1
@cnindex nl/1
Outputs a new line to stream @var{ S} .
@end table
@node C-Prolog to Terminal, I/O Control, I/O for Streams, I/O
@subsection Compatible C-Prolog predicates for Terminal I/O
@table @code
@item ttyput(+@var{ N} )
@findex ttyput/1
@syindex ttyput/1
@cnindex ttyput/1
As @code{ put(N)} but always to @code{ user_ output} .
@item ttyget(-@var{ C} )
@findex ttyget/1
@syindex ttyget/1
@cnindex ttyget/1
The same as @code{ get(C)} , but from stream @code{ user_ input} .
@item ttyget0(-@var{ C} )
@findex ttyget0/1
@syindex ttyget0/1
@cnindex ttyget0/1
The same as @code{ get0(C)} , but from stream @code{ user_ input} .
@item ttyskip(-@var{ C} )
@findex ttyskip/1
@syindex ttyskip/1
@cnindex ttyskip/1
Like @code{ skip/1} , but always using stream @code{ user_ input} .
stream.
@item ttytab(+@var{ N} )
@findex ttytab/1
@syindex ttytab/1
@cnindex ttytab/1
The same as @code{ tab/1} , but using stream @code{ user_ output} .
@item ttynl
@findex ttynl/0
@syindex ttynl/0
@cnindex ttynl/0
Outputs a new line to stream @code{ user_ output} .
@end table
@node I/O Control, Sockets, C-Prolog to Terminal, I/O
@subsection Controlling Input/Output
@table @code
@item exists(+@var{ F} )
@findex exists/1
@snindex exists/1
@cyindex exists/1
Checks if file @var{ F} exists in the current directory.
@item nofileerrors
@findex nofileerrors/0
@syindex nofileerrors/0
@cyindex nofileerrors/0
Switches off the file_ errors flag, so that the predicates @code{ see/1} ,
@code{ tell/1} , @code{ open/3} and @code{ close/1} just fail, instead of producing
an error message and aborting whenever the specified file cannot be
opened or closed.
@item fileerrors
@findex fileerrors/0
@syindex fileerrors/0
@cyindex fileerrors/0
Switches on the file_ errors flag so that in certain error conditions
I/O predicates will produce an appropriated message and abort.
@item always_ prompt_ user
@findex always_ prompt_ user/0
@snindex always_ prompt_ user/0
@cnindex always_ prompt_ user/0
Force the system to prompt the user even if the @code{ user_ input} stream
is not a terminal. This command is useful if you want to obtain
interactive control from a pipe or a socket.
@end table
@node Sockets, , I/O Control, I/O
2007-02-18 00:26:36 +00:00
@subsection Using Sockets From YAP
2001-04-09 20:54:03 +01:00
YAP includes a SICStus Prolog compatible socket interface. This
is a low level interface that provides direct access to the major socket
system calls. These calls can be used both to open a new connection in
the network or connect to a networked server. Socket connections are
2006-02-08 19:13:11 +00:00
described as read/write streams, and standard I/O built-ins can be used
2001-04-09 20:54:03 +01:00
to write on or read from sockets. The following calls are available:
@table @code
@item socket(+@var{ DOMAIN} ,+@var{ TYPE} ,+@var{ PROTOCOL} ,-@var{ SOCKET} )
@findex socket/4
@syindex socket/4
@cnindex socket/4
Corresponds to the BSD system call @code{ socket} . Create a socket for
domain @var{ DOMAIN} of type @var{ TYPE} and protocol
@var{ PROTOCOL} . Both @var{ DOMAIN} and @var{ TYPE} should be atoms,
whereas @var{ PROTOCOL} must be an integer. The new socket object is
accessible through a descriptor bound to the variable @var{ SOCKET} .
The current implementation of YAP only accepts two socket
domains: @code{ 'AF_ INET'} and @code{ 'AF_ UNIX'} . Socket types depend on the
underlying operating system, but at least the following types are
supported: @code{ 'SOCK_ STREAM'} and @code{ 'SOCK_ DGRAM'} .
@item socket(+@var{ DOMAIN} ,-@var{ SOCKET} )
@findex socket/2
@syindex socket/2
@cnindex socket/2
Call @code{ socket/4} with @var{ TYPE} bound to @code{ 'SOCK_ STREAM'} and
@var{ PROTOCOL} bound to @code{ 0} .
@item socket_ close(+@var{ SOCKET} )
@findex socket_ close/1
@syindex socket_ close/1
@cnindex socket_ close/1
Close socket @var{ SOCKET} . Note that sockets used in
2002-10-11 04:39:11 +01:00
@code{ socket_ connect} (that is, client sockets) should not be closed with
2001-04-09 20:54:03 +01:00
@code{ socket_ close} , as they will be automatically closed when the
corresponding stream is closed with @code{ close/1} or @code{ close/2} .
@item socket_ bind(+@var{ SOCKET} , ?@var{ PORT} )
@findex socket_ bind/2
@syindex socket_ bind/2
@cnindex socket_ bind/2
Interface to system call @code{ bind} , as used for servers: bind socket
to a port. Port information depends on the domain:
@table @code
@item 'AF_ UNIX'(+@var{ FILENAME} )
@item 'AF_ FILE'(+@var{ FILENAME} )
use file name @var{ FILENAME} for UNIX or local sockets.
@item 'AF_ INET'(?@var{ HOST} ,?PORT)
If @var{ HOST} is bound to an atom, bind to host @var{ HOST} , otherwise
if unbound bind to local host (@var{ HOST} remains unbound). If port
@var{ PORT} is bound to an integer, try to bind to the corresponding
port. If variable @var{ PORT} is unbound allow operating systems to
choose a port number, which is unified with @var{ PORT} .
@end table
@item socket_ connect(+@var{ SOCKET} , +@var{ PORT} , -@var{ STREAM} )
@findex socket_ connect/3
@syindex socket_ connect/3
@cnindex socket_ connect/3
Interface to system call @code{ connect} , used for clients: connect
socket @var{ SOCKET} to @var{ PORT} . The connection results in the
read/write stream @var{ STREAM} .
Port information depends on the domain:
@table @code
@item 'AF_ UNIX'(+@var{ FILENAME} )
@item 'AF_ FILE'(+@var{ FILENAME} )
connect to socket at file @var{ FILENAME} .
@item 'AF_ INET'(+@var{ HOST} ,+@var{ PORT} )
Connect to socket at host @var{ HOST} and port @var{ PORT} .
@end table
@item socket_ listen(+@var{ SOCKET} , +@var{ LENGTH} )
@findex socket_ listen/2
@syindex socket_ listen/2
@cnindex socket_ listen/2
Interface to system call @code{ listen} , used for servers to indicate
willingness to wait for connections at socket @var{ SOCKET} . The
integer @var{ LENGTH} gives the queue limit for incoming connections,
and should be limited to @code{ 5} for portable applications. The socket
must be of type @code{ SOCK_ STREAM} or @code{ SOCK_ SEQPACKET} .
@item socket_ accept(+@var{ SOCKET} , -@var{ STREAM} )
@findex socket_ accept/2
@syindex socket_ accept/2
@cnindex socket_ accept/2
@item socket_ accept(+@var{ SOCKET} , -@var{ CLIENT} , -@var{ STREAM} )
@findex socket_ accept/3
@syindex socket_ accept/3
@cnindex socket_ accept/3
Interface to system call @code{ accept} , used for servers to wait for
connections at socket @var{ SOCKET} . The stream descriptor @var{ STREAM}
represents the resulting connection. If the socket belongs to the
domain @code{ 'AF_ INET'} , @var{ CLIENT} unifies with an atom containing
the IP address for the client in numbers and dots notation.
@item socket_ accept(+@var{ SOCKET} , -@var{ STREAM} )
@findex socket_ accept/2
@syindex socket_ accept/2
@cnindex socket_ accept/2
Accept a connection but do not return client information.
2001-09-03 17:05:59 +01:00
@item socket_ buffering(+@var{ SOCKET} , -@var{ MODE} , -@var{ OLD} , +@var{ NEW} )
@findex socket_ buffering/4
@syindex socket_ buffering/4
@cnindex socket_ buffering/4
Set buffering for @var{ SOCKET} in @code{ read} or @code{ write}
@var{ MODE} . @var{ OLD} is unified with the previous status, and @var{ NEW}
receives the new status which may be one of @code{ unbuf} or
@code{ fullbuf} .
2001-04-09 20:54:03 +01:00
@item socket_ select(+@var{ SOCKETS} , -@var{ NEWSTREAMS} , +@var{ TIMEOUT} , +@var{ STREAMS} , -@var{ READSTREAMS} )
@findex socket_ select/5
@syindex socket_ select/5
@cnindex socket_ select/5
Interface to system call @code{ select} , used for servers to wait for
connection requests or for data at sockets. The variable
@var{ SOCKETS} is a list of form @var{ KEY-SOCKET} , where @var{ KEY} is
an user-defined identifier and @var{ SOCKET} is a socket descriptor. The
variable @var{ TIMEOUT} is either @code{ off} , indicating execution will
wait until something is available, or of the form @var{ SEC-USEC} , where
@var{ SEC} and @var{ USEC} give the seconds and microseconds before
@code{ socket_ select/5} returns. The variable @var{ SOCKETS} is a list of
form @var{ KEY-STREAM} , where @var{ KEY} is an user-defined identifier
and @var{ STREAM} is a stream descriptor
Execution of @code{ socket_ select/5} unifies @var{ READSTREAMS} from
@var{ STREAMS} with readable data, and @var{ NEWSTREAMS} with a list of
the form @var{ KEY-STREAM} , where @var{ KEY} was the key for a socket
with pending data, and @var{ STREAM} the stream descriptor resulting
from accepting the connection.
2001-09-03 17:05:59 +01:00
@item current_ host(?@var{ HOSTNAME} )
2001-04-09 20:54:03 +01:00
Unify @var{ HOSTNAME} with an atom representing the fully qualified
hostname for the current host. Also succeeds if @var{ HOSTNAME} is bound
to the unqualified hostname.
@item hostname_ address(?@var{ HOSTNAME} ,?@var{ IP_ ADDRESS} )
@var{ HOSTNAME} is an host name and @var{ IP_ ADDRESS} its IP
address in number and dots notation.
@end table
@node Database, Sets, I/O, Top
@section Using the Clausal Data Base
Predicates in YAP may be dynamic or static. By default, when
consulting or reconsulting, predicates are assumed to be static:
execution is faster and the code will probably use less space.
Static predicates impose some restrictions: in general there can be no
addition or removal of clauses for a procedure if it is being used in the
current execution.
Dynamic predicates allow programmers to change the Clausal Data Base with
the same flexibility as in C-Prolog. With dynamic predicates it is
always possible to add or remove clauses during execution and the
semantics will be the same as for C-Prolog. But the programmer should be
aware of the fact that asserting or retracting are still expensive operations,
and therefore he should try to avoid them whenever possible.
@table @code
@item dynamic +@var{ P}
@findex dynamic/1
@saindex dynamic/1
@cnindex dynamic/1
Declares predicate @var{ P} or list of predicates [@var{ P1} ,...,@var{ Pn} ]
as a dynamic predicate. @var{ P} must be written in form:
@var{ name/arity} .
@example
:- dynamic god/1.
@end example
@noindent
a more convenient form can be used:
@example
:- dynamic son/3, father/2, mother/2.
@end example
or, equivalently,
@example
:- dynamic [son/3, father/2, mother/2].
@end example
@noindent
Note:
a predicate is assumed to be dynamic when
asserted before being defined.
@item dynamic_ predicate(+@var{ P} ,+@var{ Semantics} )
@findex dynamic_ predicate/2
@snindex dynamic_ predicate/2
@cnindex dynamic_ predicate/2
Declares predicate @var{ P} or list of predicates [@var{ P1} ,...,@var{ Pn} ]
as a dynamic predicate following either @code{ logical} or
@code{ immediate} semantics.
@menu
Subnodes of Database
* Modifying the Database:: Asserting and Retracting
* Looking at the Database:: Finding out what is in the Data Base
* Database References:: Using Data Base References
2007-02-18 00:26:36 +00:00
* Internal Database:: YAP's Internal Database
2001-04-09 20:54:03 +01:00
* BlackBoard:: Storing and Fetching Terms in the BlackBoard
@end menu
@end table
@node Modifying the Database, Looking at the Database, , Database
@subsection Modification of the Data Base
These predicates can be used either for static or for dynamic
predicates:
@table @code
@item assert(+@var{ C} )
@findex assert/1
@saindex assert/1
@caindex assert/1
2010-09-27 23:32:45 +01:00
Same as @code{ assertz/1} . Adds clause @var{ C} to the program. If the predicate is undefined,
declare it as dynamic. New code should use @code{ assertz/1} for better portability.
2001-04-09 20:54:03 +01:00
Most Prolog systems only allow asserting clauses for dynamic
predicates. This is also as specified in the ISO standard. YAP allows
asserting clauses for static predicates, as long as the predicate is not
in use and the language flag is @t{ cprolog} . Note that this feature is
deprecated, if you want to assert clauses for static procedures you
should use @code{ assert_ static/1} .
@item asserta(+@var{ C} ) [ISO]
@findex asserta/1
@saindex asserta/1
@caindex asserta/1
Adds clause @var{ C} to the beginning of the program. If the predicate is
undefined, declare it as dynamic.
@item assertz(+@var{ C} ) [ISO]
@findex assertz/1
@saindex assertz/1
@caindex assertz/1
Adds clause @var{ C} to the end of the program. If the predicate is
undefined, declare it as dynamic.
Most Prolog systems only allow asserting clauses for dynamic
2002-06-18 06:22:35 +01:00
predicates. This is also as specified in the ISO standard. YAP allows
asserting clauses for static predicates. The current version of YAP
supports this feature, but this feature is deprecated and support may go
away in future versions.
2001-04-09 20:54:03 +01:00
@item abolish(+@var{ PredSpec} ) [ISO]
@findex abolish/1
@saindex abolish/1
@caindex abolish/1
2001-05-28 20:54:53 +01:00
Deletes the predicate given by @var{ PredSpec} from the database. If
@var{ PredSpec} is an unbound variable, delete all predicates for the
current module. The
2001-04-09 20:54:03 +01:00
specification must include the name and arity, and it may include module
2006-02-08 19:13:11 +00:00
information. Under @t{ iso} language mode this built-in will only abolish
2002-06-18 06:22:35 +01:00
dynamic procedures. Under other modes it will abolish any procedures.
2001-04-09 20:54:03 +01:00
@item abolish(+@var{ P} ,+@var{ N} )
@findex abolish/2
@saindex abolish/2
@caindex abolish/2
Deletes the predicate with name @var{ P} and arity @var{ N} . It will remove
both static and dynamic predicates.
2002-05-21 05:18:15 +01:00
@item assert_ static(:@var{ C} )
2001-04-09 20:54:03 +01:00
@findex assert_ static/1
@snindex assert_ static/1
@cnindex assert_ static/1
2002-06-18 06:22:35 +01:00
Adds clause @var{ C} to a static procedure. Asserting a static clause
for a predicate while choice-points for the predicate are available has
2002-05-14 19:24:34 +01:00
undefined results.
2001-04-09 20:54:03 +01:00
2002-05-21 05:18:15 +01:00
@item asserta_ static(:@var{ C} )
2001-04-09 20:54:03 +01:00
@findex asserta_ static/1
@snindex asserta_ static/1
@cnindex asserta_ static/1
2002-05-14 19:24:34 +01:00
Adds clause @var{ C} to the beginning of a static procedure.
2001-04-09 20:54:03 +01:00
2002-05-21 05:18:15 +01:00
@item assertz_ static(:@var{ C} )
2001-04-09 20:54:03 +01:00
@findex assertz_ static/1
@snindex assertz_ static/1
@cnindex assertz_ static/1
2002-05-14 19:24:34 +01:00
Adds clause @var{ C} to the end of a static procedure. Asserting a
static clause for a predicate while choice-points for the predicate are
2002-10-11 04:39:11 +01:00
available has undefined results.
2001-04-09 20:54:03 +01:00
@end table
2003-12-01 19:22:01 +00:00
The following predicates can be used for dynamic predicates and for
static predicates, if source mode was on when they were compiled:
2001-04-09 20:54:03 +01:00
@table @code
@item clause(+@var{ H} ,@var{ B} ) [ISO]
@findex clause/2
@saindex clause/2
@caindex clause/2
A clause whose head matches @var{ H} is searched for in the
program. Its head and body are respectively unified with @var{ H} and
@var{ B} . If the clause is a unit clause, @var{ B} is unified with
@var{ true} .
This predicate is applicable to static procedures compiled with
2002-12-13 20:00:41 +00:00
@code{ source} active, and to all dynamic procedures.
@item clause(+@var{ H} ,@var{ B} ,-@var{ R} )
@findex clause/3
@saindex clause/3
@caindex clause/3
The same as @code{ clause/2} , plus @var{ R} is unified with the
reference to the clause in the database. You can use @code{ instance/2}
to access the reference's value. Note that you may not use
@code{ erase/1} on the reference on static procedures.
@item nth_ clause(+@var{ H} ,@var{ I} ,-@var{ R} )
@findex nth_ clause/3
@saindex nth_ clause/3
@caindex nth_ clause/3
Find the @var{ I} th clause in the predicate defining @var{ H} , and give
a reference to the clause. Alternatively, if the reference @var{ R} is
given the head @var{ H} is unified with a description of the predicate
and @var{ I} is bound to its position.
2001-04-09 20:54:03 +01:00
@end table
2003-12-02 18:57:48 +00:00
The following predicates can only be used for dynamic predicates:
2001-04-09 20:54:03 +01:00
@table @code
@item retract(+@var{ C} ) [ISO]
@findex retract/1
@saindex retract/1
@cnindex retract/1
Erases the first clause in the program that matches @var{ C} . This
predicate may also be used for the static predicates that have been
compiled when the source mode was @code{ on} . For more information on
@code{ source/0} (@pxref{ Setting the Compiler} ).
@item retractall(+@var{ G} )
@findex retractall/1
@saindex retractall/1
@cnindex retractall/1
Retract all the clauses whose head matches the goal @var{ G} . Goal
@var{ G} must be a call to a dynamic predicate.
@end table
@node Looking at the Database, Database References, Modifying the Database, Database
@subsection Looking at the Data Base
@table @code
@item listing
@findex listing/0
@saindex listing/0
@caindex listing/0
Lists in the current output stream all the clauses for which source code
is available (these include all clauses for dynamic predicates and
clauses for static predicates compiled when source mode was @code{ on} ).
2002-08-09 17:36:55 +01:00
@item listing(+@var{ P} )
2001-04-09 20:54:03 +01:00
@findex listing/1
@syindex listing/1
@caindex listing/1
Lists predicate @var{ P} if its source code is available.
@item portray_ clause(+@var{ C} )
@findex portray_ clause/1
@syindex portray_ clause/1
@cnindex portray_ clause/1
2001-05-28 20:54:53 +01:00
Write clause @var{ C} as if written by @code{ listing/0} .
@item portray_ clause(+@var{ S} ,+@var{ C} )
@findex portray_ clause/2
@syindex portray_ clause/2
@cnindex portray_ clause/2
Write clause @var{ C} on stream @var{ S} as if written by @code{ listing/0} .
2001-04-09 20:54:03 +01:00
@item current_ atom(@var{ A} )
@findex current_ atom/1
@syindex current_ atom/1
@cyindex current_ atom/1
Checks whether @var{ A} is a currently defined atom. It is used to find all
currently defined atoms by backtracking.
@item current_ predicate(@var{ F} ) [ISO]
@findex current_ predicate/1
@syindex current_ predicate/1
@cyindex current_ predicate/1
@var{ F} is the predicate indicator for a currently defined user or
library predicate. @var{ F} is of the form @var{ Na/Ar} , where the atom
2001-04-26 15:44:43 +01:00
@var{ Na} is the name of the predicate, and @var{ Ar} its arity.
2001-04-09 20:54:03 +01:00
@item current_ predicate(@var{ A} ,@var{ P} )
@findex current_ predicate/2
@syindex current_ predicate/2
@cnindex current_ predicate/2
Defines the relation: @var{ P} is a currently defined predicate whose
name is the atom @var{ A} .
@item system_ predicate(@var{ A} ,@var{ P} )
@findex system_ predicate/2
@syindex system_ predicate/2
@cnindex system_ predicate/2
Defines the relation: @var{ P} is a built-in predicate whose name
is the atom @var{ A} .
2010-09-27 23:32:45 +01:00
@item predicate_ property(@var{ P} ,@var{ Prop} ) [ISO]
2001-04-09 20:54:03 +01:00
@findex predicate_ property/2
@saindex predicate_ property/2
@cnindex predicate_ property/2
For the predicates obeying the specification @var{ P} unify @var{ Prop}
with a property of @var{ P} . These properties may be:
@table @code
@item built_ in
true for built-in predicates,
@item dynamic
true if the predicate is dynamic
@item static
true if the predicate is static
@item meta_ predicate(@var{ M} )
true if the predicate has a meta_ predicate declaration @var{ M} .
@item multifile
true if the predicate was declared to be multifile
@item imported_ from(@var{ Mod} )
true if the predicate was imported from module @var{ Mod} .
@item exported
true if the predicate is exported in the current module.
@item public
true if the predicate is public; note that all dynamic predicates are
public.
2003-12-18 16:38:40 +00:00
@item tabled
true if the predicate is tabled; note that only static predicates can
be tabled in YAP.
2002-03-17 06:05:21 +00:00
@item source
true if source for the predicate is available.
2002-12-13 20:00:41 +00:00
@item number_ of_ clauses(@var{ ClauseCount} )
Number of clauses in the predicate definition. Always one if external
or built-in.
2001-04-09 20:54:03 +01:00
@end table
2010-10-27 14:52:52 +01:00
@item predicate_ statistics(@var{ P} ,@var{ NCls} ,@var{ Sz} ,@var{ IndexSz} )
@findex predicate_ statistics/4
Given predicate @var{ P} , @var{ NCls} is the number of clauses for
@var{ P} , @var{ Sz} is the amount of space taken to store those clauses
(in bytes), and @var{ IndexSz} is the amount of space required to store
indices to those clauses (in bytes).
@item predicate_ erased_ statistics(@var{ P} ,@var{ NCls} ,@var{ Sz} ,@var{ IndexSz} )
@findex predicate_ statistics/4
Given predicate @var{ P} , @var{ NCls} is the number of erased clauses for
@var{ P} that could not be discarded yet, @var{ Sz} is the amount of space
taken to store those clauses (in bytes), and @var{ IndexSz} is the amount
of space required to store indices to those clauses (in bytes).
2001-04-09 20:54:03 +01:00
@end table
@node Database References, Internal Database, Looking at the Database, Database
@subsection Using Data Base References
Data Base references are a fast way of accessing terms. The predicates
@code{ erase/1} and @code{ instance/1} also apply to these references and may
sometimes be used instead of @code{ retract/1} and @code{ clause/2} .
@table @code
@item assert(+@var{ C} ,-@var{ R} )
@findex assert/2
@saindex assert/2
@caindex assert/2
The same as @code{ assert(C)} (@pxref{ Modifying the Database} ) but
unifies @var{ R} with the database reference that identifies the new
clause, in a one-to-one way. Note that @code{ asserta/2} only works for dynamic
predicates. If the predicate is undefined, it will automatically be
declared dynamic.
@item asserta(+@var{ C} ,-@var{ R} )
@findex asserta/2
@saindex asserta/2
@caindex asserta/2
The same as @code{ asserta(C)} but unifying @var{ R} with
the database reference that identifies the new clause, in a
one-to-one way. Note that @code{ asserta/2} only works for dynamic
predicates. If the predicate is undefined, it will automatically be
declared dynamic.
@item assertz(+@var{ C} ,-@var{ R} )
@findex assertz/2
@saindex assertz/2
@caindex assertz/2
The same as @code{ assertz(C)} but unifying @var{ R} with
the database reference that identifies the new clause, in a
one-to-one way. Note that @code{ asserta/2} only works for dynamic
predicates. If the predicate is undefined, it will automatically be
declared dynamic.
@item retract(+@var{ C} ,-@var{ R} )
@findex retract/2
@saindex retract/2
@caindex retract/2
Erases from the program the clause @var{ C} whose
2002-12-13 20:00:41 +00:00
database reference is @var{ R} . The predicate must be dynamic.
2001-04-09 20:54:03 +01:00
@end table
@node Internal Database, BlackBoard, Database References, Database
@section Internal Data Base
2006-02-08 19:13:11 +00:00
Some programs need global information for, e.g. counting or collecting
2001-04-09 20:54:03 +01:00
data obtained by backtracking. As a rule, to keep this information, the
internal data base should be used instead of asserting and retracting
clauses (as most novice programmers do), .
In YAP (as in some other Prolog systems) the internal data base (i.d.b.
for short) is faster, needs less space and provides a better insulation of
program and data than using asserted/retracted clauses.
The i.d.b. is implemented as a set of terms, accessed by keys that
unlikely what happens in (non-Prolog) data bases are not part of the
term. Under each key a list of terms is kept. References are provided so that
terms can be identified: each term in the i.d.b. has a unique reference
(references are also available for clauses of dynamic predicates).
@table @code
@item recorda(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recorda/3
@saindex recorda/3
@cyindex recorda/3
Makes term @var{ T} the first record under key @var{ K} and unifies @var{ R}
with its reference.
@item recordz(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recordz/3
@saindex recordz/3
@cyindex recordz/3
Makes term @var{ T} the last record under key @var{ K} and unifies @var{ R}
with its reference.
2003-01-21 16:14:52 +00:00
@item recorda_ at(+@var{ R0} ,@var{ T} ,-@var{ R} )
@findex recorda_ at/3
@snindex recorda_ at/3
@cnindex recorda_ at/3
2006-02-08 19:13:11 +00:00
Makes term @var{ T} the record preceding record with reference
2003-01-21 16:14:52 +00:00
@var{ R0} , and unifies @var{ R} with its reference.
@item recordz_ at(+@var{ R0} ,@var{ T} ,-@var{ R} )
@findex recordz_ at/3
@snindex recordz_ at/3
@cnindex recordz_ at/3
Makes term @var{ T} the record following record with reference
@var{ R0} , and unifies @var{ R} with its reference.
2001-04-09 20:54:03 +01:00
@item recordaifnot(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recordaifnot/3
@saindex recordaifnot/3
@cnindex recordaifnot/3
If a term equal to @var{ T} up to variable renaming is stored under key
@var{ K} fail. Otherwise, make term @var{ T} the first record under key
@var{ K} and unify @var{ R} with its reference.
@item recordzifnot(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recorda/3
2002-12-10 14:36:22 +00:00
@snindex recorda/3
2001-04-09 20:54:03 +01:00
@cnindex recorda/3
If a term equal to @var{ T} up to variable renaming is stored under key
@var{ K} fail. Otherwise, make term @var{ T} the first record under key
@var{ K} and unify @var{ R} with its reference.
@item recorded(+@var{ K} ,@var{ T} ,@var{ R} )
@findex recorded/3
@saindex recorded/3
@cyindex recorded/3
Searches in the internal database under the key @var{ K} , a term that
2002-12-10 00:32:22 +00:00
unifies with @var{ T} and whose reference matches @var{ R} . This
built-in may be used in one of two ways:
@itemize @bullet
@item @var{ K} may be given, in this case the built-in will return all
elements of the internal data-base that match the key.
@item @var{ R} may be given, if so returning the key and element that
match the reference.
@end itemize
2001-04-09 20:54:03 +01:00
@item erase(+@var{ R} )
@findex erase/1
@saindex erase/1
@cyindex erase/1
The term referred to by @var{ R} is erased from the internal database. If
reference @var{ R} does not exist in the database, @code{ erase} just fails.
@item erased(+@var{ R} )
@findex erased/1
@saindex erased/1
@cyindex erased/1
Succeeds if the object whose database reference is @var{ R} has been
erased.
@item instance(+@var{ R} ,-@var{ T} )
@findex instance/2
@saindex instance/2
@cyindex instance/2
If @var{ R} refers to a clause or a recorded term, @var{ T} is unified
with its most general instance. If @var{ R} refers to an unit clause
@var{ C} , then @var{ T} is unified with @code{ @var{ C} :- true} . When
2002-06-05 13:54:11 +01:00
@var{ R} is not a reference to an existing clause or to a recorded term,
2001-04-09 20:54:03 +01:00
this goal fails.
2002-12-02 18:12:58 +00:00
@item eraseall(+@var{ K} )
2001-04-09 20:54:03 +01:00
@findex eraseall/1
@snindex eraseall/1
@cnindex eraseall/1
2002-12-02 18:12:58 +00:00
All terms belonging to the key @code{ K} are erased from the internal
database. The predicate always succeeds.
2001-04-09 20:54:03 +01:00
2002-12-10 14:36:22 +00:00
@item current_ key(?@var{ A} ,?@var{ K} )
2001-04-09 20:54:03 +01:00
@findex current_ key/2
@syindex current_ key/2
@cnindex current_ key/2
2002-12-10 14:36:22 +00:00
Defines the relation: @var{ K} is a currently defined database key whose
name is the atom @var{ A} . It can be used to generate all the keys for
the internal data-base.
2009-11-18 13:06:37 +00:00
@item nth_ instance(?@var{ Key} ,?@var{ Index} ,?@var{ R} )
@findex nth_ instance/3
@saindex nth_ instance/3
@cnindex nth_ instance/3
Fetches the @var{ Index} nth entry in the internal database under the key
@var{ Key} . Entries are numbered from one. If the key @var{ Key} or the
@var{ Index} are bound, a reference is unified with @var{ R} . Otherwise,
the reference @var{ R} must be given, and YAP will find
the matching key and index.
@item nth_ instance(?@var{ Key} ,?@var{ Index} ,@var{ T} ,?@var{ R} )
@findex nth_ instance/4
@saindex nth_ instance/4
@cnindex nth_ instance/4
Fetches the @var{ Index} nth entry in the internal database under the key
@var{ Key} . Entries are numbered from one. If the key @var{ Key} or the
@var{ Index} are bound, a reference is unified with @var{ R} . Otherwise,
the reference @var{ R} must be given, and YAP will find
the matching key and index.
2003-12-04 18:11:53 +00:00
@item key_ statistics(+@var{ K} ,-@var{ Entries} ,-@var{ Size} ,-@var{ IndexSize} )
@findex key_ statistics/4
@snindex key_ statistics/4
@cnindex key_ statistics/4
2002-12-10 14:36:22 +00:00
Returns several statistics for a key @var{ K} . Currently, it says how
2003-12-04 18:11:53 +00:00
many entries we have for that key, @var{ Entries} , what is the
total size spent on entries, @var{ Size} , and what is the amount of
space spent in indices.
@item key_ statistics(+@var{ K} ,-@var{ Entries} ,-@var{ TotalSize} )
@findex key_ statistics/3
@snindex key_ statistics/3
@cnindex key_ statistics/3
Returns several statistics for a key @var{ K} . Currently, it says how
many entries we have for that key, @var{ Entries} , what is the
total size spent on this key.
2001-04-09 20:54:03 +01:00
@item get_ value(+@var{ A} ,-@var{ V} )
@findex get_ value/2
@snindex get_ value/2
@cnindex get_ value/2
In YAP, atoms can be associated with constants. If one such
association exists for atom @var{ A} , unify the second argument with the
constant. Otherwise, unify @var{ V} with @code{ []} .
This predicate is YAP specific.
@item set_ value(+@var{ A} ,+@var{ C} )
@findex set_ value/2
@snindex set_ value/2
@cnindex set_ value/2
Associate atom @var{ A} with constant @var{ C} .
The @code{ set_ value} and @code{ get_ value} built-ins give a fast alternative to
the internal data-base. This is a simple form of implementing a global
counter.
@example
read_ and_ increment_ counter(Value) :-
get_ value(counter, Value),
Value1 is Value+1,
set_ value(counter, Value1).
@end example
@noindent
This predicate is YAP specific.
@item recordzifnot(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recordzifnot/3
@snindex recordzifnot/3
@cnindex recordzifnot/3
If a variant of @var{ T} is stored under key @var{ K} fail. Otherwise, make
term @var{ T} the last record under key @var{ K} and unify @var{ R} with its
reference.
This predicate is YAP specific.
@item recordaifnot(+@var{ K} ,@var{ T} ,-@var{ R} )
@findex recordaifnot/3
@snindex recordaifnot/3
@cnindex recordaifnot/3
If a variant of @var{ T} is stored under key @var{ K} fail. Otherwise, make
term @var{ T} the first record under key @var{ K} and unify @var{ R} with its
reference.
This predicate is YAP specific.
@end table
There is a strong analogy between the i.d.b. and the way dynamic
predicates are stored. In fact, the main i.d.b. predicates might be
implemented using dynamic predicates:
@example
recorda(X,T,R) :- asserta(idb(X,T),R).
recordz(X,T,R) :- assertz(idb(X,T),R).
recorded(X,T,R) :- clause(idb(X,T),R).
@end example
@noindent
We can take advantage of this, the other way around, as it is quite
easy to write a simple Prolog interpreter, using the i.d.b.:
@example
asserta(G) :- recorda(interpreter,G,_ ).
assertz(G) :- recordz(interpreter,G,_ ).
retract(G) :- recorded(interpreter,G,R), !, erase(R).
call(V) :- var(V), !, fail.
call((H :- B)) :- !, recorded(interpreter,(H :- B),_ ), call(B).
call(G) :- recorded(interpreter,G,_ ).
@end example
@noindent
In YAP, much attention has been given to the implementation of the
i.d.b., especially to the problem of accelerating the access to terms kept in
a large list under the same key. Besides using the key, YAP uses an internal
lookup function, transparent to the user, to find only the terms that might
unify. For instance, in a data base containing the terms
@example
b
b(a)
c(d)
e(g)
b(X)
e(h)
@end example
@noindent
stored under the key k/1, when executing the query
@example
:- recorded(k(_ ),c(_ ),R).
@end example
@noindent
@code{ recorded} would proceed directly to the third term, spending almost the
time as if @code{ a(X)} or @code{ b(X)} was being searched.
The lookup function uses the functor of the term, and its first three
arguments (when they exist). So, @code{ recorded(k(_ ),e(h),_ )} would go
directly to the last term, while @code{ recorded(k(_ ),e(_ ),_ )} would find
first the fourth term, and then, after backtracking, the last one.
This mechanism may be useful to implement a sort of hierarchy, where
the functors of the terms (and eventually the first arguments) work as
secondary keys.
In the YAP's i.d.b. an optimized representation is used for
terms without free variables. This results in a faster retrieval of terms
and better space usage. Whenever possible, avoid variables in terms in terms stored in the i.d.b.
@node BlackBoard, , Internal Database, Database
@section The Blackboard
YAP implements a blackboard in the style of the SICStus Prolog
blackboard. The blackboard uses the same underlying mechanism as the
internal data-base but has several important differences:
@itemize @bullet
@item It is module aware, in contrast to the internal data-base.
@item Keys can only be atoms or integers, and not compound terms.
@item A single term can be stored per key.
2002-01-09 17:23:18 +00:00
@item An atomic update operation is provided; this is useful for
2001-04-09 20:54:03 +01:00
parallelism.
@end itemize
@table @code
@item bb_ put(+@var{ Key} ,?@var{ Term} )
@findex bb_ put/2
@syindex bb_ put/2
@cnindex bb_ put/2
Store term table @var{ Term} in the blackboard under key @var{ Key} . If a
previous term was stored under key @var{ Key} it is simply forgotten.
@item bb_ get(+@var{ Key} ,?@var{ Term} )
@findex bb_ get/2
@syindex bb_ get/2
@cnindex bb_ get/2
Unify @var{ Term} with a term stored in the blackboard under key
@var{ Key} , or fail silently if no such term exists.
@item bb_ delete(+@var{ Key} ,?@var{ Term} )
@findex bb_ delete/2
@syindex bb_ delete/2
@cnindex bb_ delete/2
Delete any term stored in the blackboard under key @var{ Key} and unify
it with @var{ Term} . Fail silently if no such term exists.
@item bb_ update(+@var{ Key} ,?@var{ Term} ,?@var{ New} )
@findex bb_ update/3
@syindex bb_ update/3
@cnindex bb_ update/3
Atomically unify a term stored in the blackboard under key @var{ Key}
with @var{ Term} , and if the unification succeeds replace it by
@var{ New} . Fail silently if no such term exists or if unification fails.
@end table
@node Sets, Grammars, Database, Top
@section Collecting Solutions to a Goal
When there are several solutions to a goal, if the user wants to collect all
the solutions he may be led to use the data base, because backtracking will
forget previous solutions.
YAP allows the programmer to choose from several system
predicates instead of writing his own routines. @code{ findall/3} gives you
the fastest, but crudest solution. The other built-in predicates
2006-02-08 19:13:11 +00:00
post-process the result of the query in several different ways:
2001-04-09 20:54:03 +01:00
@table @code
@item findall(@var{ T} ,+@var{ G} ,-@var{ L} ) [ISO]
@findex findall/3
@syindex findall/3
@cyindex findall/3
Unifies @var{ L} with a list that contains all the instantiations of the
term @var{ T} satisfying the goal @var{ G} .
With the following program:
@example
a(2,1).
a(1,1).
a(2,2).
@end example
@noindent
the answer to the query
@example
findall(X,a(X,Y),L).
@end example
@noindent
would be:
@example
X = _ 32
Y = _ 33
L = [2,1,2];
no
@end example
@item findall(@var{ T} ,+@var{ G} ,+@var{ L} ,-@var{ L0} )
@findex findall/4
@syindex findall/4
@cnindex findall/4
Similar to @code{ findall/3} , but appends all answers to list @var{ L0} .
@item all(@var{ T} ,+@var{ G} ,-@var{ L} )
@findex all/3
@snindex all/3
@cnindex all/3
2007-02-18 00:26:36 +00:00
Similar to @code{ findall(@var{ T} ,@var{ G} ,@var{ L} )} but eliminate
2001-04-09 20:54:03 +01:00
repeated elements. Thus, assuming the same clauses as in the above
example, the reply to the query
@example
all(X,a(X,Y),L).
@end example
@noindent
would be:
@example
X = _ 32
Y = _ 33
L = [2,1];
no
@end example
2007-02-18 00:26:36 +00:00
Note that @code{ all/3} will fail if no answers are found.
2001-04-09 20:54:03 +01:00
@item bagof(@var{ T} ,+@var{ G} ,-@var{ L} ) [ISO]
@findex bagof/3
@saindex bagof/3
@cyindex bagof/3
For each set of possible instances of the free variables occurring in
@var{ G} but not in @var{ T} , generates the list @var{ L} of the instances of
@var{ T} satisfying @var{ G} . Again, assuming the same clauses as in the
examples above, the reply to the query
@example
bagof(X,a(X,Y),L).
would be:
X = _ 32
Y = 1
L = [2,1];
X = _ 32
Y = 2
L = [2];
no
@end example
@item setof(@var{ X} ,+@var{ P} ,-@var{ B} ) [ISO]
@findex setof/3
@saindex setof/3
@cyindex setof/3
Similar to @code{ bagof(@var{ T} ,@var{ G} ,@var{ L} )} but sorting list
@var{ L} and keeping only one copy of each element. Again, assuming the
same clauses as in the examples above, the reply to the query
@example
setof(X,a(X,Y),L).
@end example
@noindent
would be:
@example
X = _ 32
Y = 1
L = [1,2];
X = _ 32
Y = 2
L = [2];
no
@end example
@end table
@node Grammars, OS, Sets, Top
@section Grammar Rules
Grammar rules in Prolog are both a convenient way to express definite
clause grammars and an extension of the well known context-free grammars.
A grammar rule is of the form:
@example
@i{ head --> body }
@end example
@noindent
where both @i{ head} and @i{ body} are sequences of one or more items
linked by the standard conjunction operator ','.
@emph{ Items can be:}
@itemize @bullet
@item
a @emph{ non-terminal} symbol may be either a complex term or an atom.
@item
a @emph{ terminal} symbol may be any Prolog symbol. Terminals are
written as Prolog lists.
@item
an @emph{ empty body} is written as the empty list '[ ]'.
@item
@emph{ extra conditions} may be inserted as Prolog procedure calls, by being
written inside curly brackets '@{ ' and '@} '.
@item
the left side of a rule consists of a nonterminal and an optional list
of terminals.
@item
alternatives may be stated in the right-hand side of the rule by using
the disjunction operator ';'.
@item
the @emph{ cut} and @emph{ conditional} symbol ('->') may be inserted in the
right hand side of a grammar rule
@end itemize
Grammar related built-in predicates:
@table @code
2011-04-22 13:35:02 +01:00
@item expand_ term(@var{ T} ,-@var{ X} )
2001-04-09 20:54:03 +01:00
@findex expand_ term/2
@syindex expand_ term/2
@cyindex expand_ term/2
2011-04-22 13:35:02 +01:00
2001-04-09 20:54:03 +01:00
This predicate is used by YAP for preprocessing each top level
term read when consulting a file and before asserting or executing it.
It rewrites a term @var{ T} to a term @var{ X} according to the following
2010-02-28 10:10:23 +00:00
rules: first try @code{ term_ expansion/2} in the current module, and then try to use the user defined predicate
2008-07-23 00:34:50 +01:00
@code{ user:term_ expansion/2} . If this call fails then the translating process
2001-04-09 20:54:03 +01:00
for DCG rules is applied, together with the arithmetic optimizer
whenever the compilation of arithmetic expressions is in progress.
2011-04-22 13:35:02 +01:00
@item @var{ CurrentModule} :term_ expansion(@var{ T} ,-@var{ X} )
@item user:term_ expansion(@var{ T} ,-@var{ X} )
@findex term_ expansion/2
@syindex term_ expansion/2
@cyindex term_ expansion/2
This user-defined predicate is called by @code{ expand_ term/3} to
preprocess all terms read when consulting a file. If it succeeds:
@itemize
@item
If @var{ X} is of the form @code{ :- G} or @code{ ?- G} , it is processed as
a directive.
@item
If @var{ X} is of the form @code{ '$ source _ location' ( <File>,
<Line>):<Clause>} it is processed as if from @code{ File} and line
@code{ Line} .
@item
If @var{ X} is a list, all terms of the list are asserted or processed
as directives.
@item The term @var{ X} is asserted instead of @var{ T} .
@end itemize
2010-02-28 10:10:23 +00:00
@item @var{ CurrentModule} :goal_ expansion(+@var{ G} ,+@var{ M} ,-@var{ NG} )
2001-04-09 20:54:03 +01:00
@item user:goal_ expansion(+@var{ G} ,+@var{ M} ,-@var{ NG} )
2002-06-01 05:29:01 +01:00
@findex goal_ expansion/3
@snindex goal_ expansion/3
@cnindex goal_ expansion/3
2007-02-18 00:26:36 +00:00
YAP now supports @code{ goal_ expansion/3} . This is an user-defined
2001-04-09 20:54:03 +01:00
procedure that is called after term expansion when compiling or
asserting goals for each sub-goal in a clause. The first argument is
bound to the goal and the second to the module under which the goal
@var{ G} will execute. If @code{ goal_ expansion/3} succeeds the new
sub-goal @var{ NG} will replace @var{ G} and will be processed in the same
way. If @code{ goal_ expansion/3} fails the system will use the default
rules.
@item phrase(+@var{ P} ,@var{ L} ,@var{ R} )
@findex phrase/3
@syindex phrase/3
@cnindex phrase/3
This predicate succeeds when the difference list @code{ @var{ L} -@var{ R} }
is a phrase of type @var{ P} .
@item phrase(+@var{ P} ,@var{ L} )
@findex phrase/2
@syindex phrase/2
@cnindex phrase/2
This predicate succeeds when @var{ L} is a phrase of type @var{ P} . The
same as @code{ phrase(P,L,[])} .
Both this predicate and the previous are used as a convenient way to
start execution of grammar rules.
@item 'C'(@var{ S1} ,@var{ T} ,@var{ S2} )
@findex C/3
@syindex C/3
@cnindex C/3
This predicate is used by the grammar rules compiler and is defined as
@code{ 'C'([H|T],H,T)} .
@end table
@node OS, Term Modification, Grammars, Top
@section Access to Operating System Functionality
The following built-in predicates allow access to underlying
Operating System functionality:
@table @code
@item cd(+@var{ D} )
@findex cd/1
@snindex cd/1
@cnindex cd/1
Changes the current directory (on UNIX environments).
2010-11-23 00:25:33 +00:00
@item cd
@findex cd/0
@snindex cd/0
@cnindex cd/0
Changes the current directory (on UNIX environments) to the user's home directory.
2003-03-20 15:17:17 +00:00
@item environ(+@var{ E} ,-@var{ S} )
2001-04-09 20:54:03 +01:00
@findex environ/2
@syindex environ/2
@cnindex environ/2
2003-03-20 15:17:17 +00:00
@comment This backtrackable predicate unifies the first argument with an
@comment environment variable @var{ E} , and the second with its value @var{ S} . It
@comment can used to detect all environment variables.
2006-02-08 19:13:11 +00:00
Given an environment variable @var{ E} this predicate unifies the second argument @var{ S} with its value.
2001-04-09 20:54:03 +01:00
@item getcwd(-@var{ D} )
@findex getcwd/1
@snindex getcwd/1
@cnindex getcwd/1
Unify the current directory, represented as an atom, with the argument
@var{ D} .
2010-11-23 00:25:33 +00:00
@item pwd
@findex pwd/0
@snindex pwd/0
@cnindex pwd/0
Prints the current directory.
@item ls
@findex ls/0
@snindex ls/0
@cnindex ls/0
Prints a list of all files in the current directory.
2001-04-09 20:54:03 +01:00
@item putenv(+@var{ E} ,+@var{ S} )
@findex putenv/2
@snindex putenv/2
@cnindex putenv/2
Set environment variable @var{ E} to the value @var{ S} . If the
environment variable @var{ E} does not exist, create a new one. Both the
environment variable and the value must be atoms.
@item rename(+@var{ F} ,+@var{ G} )
@findex rename/2
@snindex rename/2
@cyindex rename/2
Renames file @var{ F} to @var{ G} .
@item sh
@findex sh/0
@snindex sh/0
@cyindex sh/0
Creates a new shell interaction.
@item system(+@var{ S} )
@findex system/1
@snindex system/1
@cyindex system/1
2001-06-07 18:54:29 +01:00
Passes command @var{ S} to the Bourne shell (on UNIX environments) or the
current command interpreter in WIN32 environments.
2001-04-09 20:54:03 +01:00
@item unix(+@var{ S} )
@findex unix/1
@snindex unix/1
@cnindex unix/1
Access to Unix-like functionality:
@table @code
@item argv/1
Return a list of arguments to the program. These are the arguments that
follow a @code{ --} , as in the usual Unix convention.
@item cd/0
Change to home directory.
@item cd/1
Change to given directory. Acceptable directory names are strings or
atoms.
@item environ/2
2002-01-14 22:26:53 +00:00
If the first argument is an atom, unify the second argument with the
value of the corresponding environment variable.
2001-04-09 20:54:03 +01:00
@item getcwd/1
Unify the first argument with an atom representing the current directory.
@item putenv/2
Set environment variable @var{ E} to the value @var{ S} . If the
environment variable @var{ E} does not exist, create a new one. Both the
environment variable and the value must be atoms.
@item shell/1
Execute command under current shell. Acceptable commands are strings or
atoms.
@item system/1
Execute command with @code{ /bin/sh} . Acceptable commands are strings or
atoms.
@item shell/0
Execute a new shell.
@end table
2011-02-12 00:26:28 +00:00
@item working_ directory(-@var{ CurDir} ,?@var{ NextDir} )
@findex working_ directory/2
@syindex working_ directory/2
@cnindex working_ directory/2 @c
Fetch the current directory at @var{ CurDir} . If @var{ NextDir} is bound
to an atom, make its value the current working directory.
2001-04-09 20:54:03 +01:00
@item alarm(+@var{ Seconds} ,+@var{ Callable} ,+@var{ OldAlarm} )
@findex alarm/3
@snindex alarm/3
@cnindex alarm/3
2007-05-21 00:00:38 +01:00
Arranges for YAP to be interrupted in @var{ Seconds} seconds, or in
2010-03-12 10:19:55 +00:00
[@var{ Seconds} |@var{ MicroSeconds} ]. When interrupted, YAP will execute
2007-05-21 00:00:38 +01:00
@var{ Callable} and then return to the previous execution. If
@var{ Seconds} is @code{ 0} , no new alarm is scheduled. In any event,
any previously set alarm is canceled.
2001-04-09 20:54:03 +01:00
The variable @var{ OldAlarm} unifies with the number of seconds remaining
until any previously scheduled alarm was due to be delivered, or with
@code{ 0} if there was no previously scheduled alarm.
Note that execution of @var{ Callable} will wait if YAP is
executing built-in predicates, such as Input/Output operations.
The next example shows how @var{ alarm/3} can be used to implement a
simple clock:
@example
loop :- loop.
2001-04-16 17:41:04 +01:00
ticker :- write('.'), flush_ output,
get_ value(tick, yes),
alarm(1,ticker,_ ).
2001-04-09 20:54:03 +01:00
:- set_ value(tick, yes), alarm(1,ticker,_ ), loop.
@end example
The clock, @code{ ticker} , writes a dot and then checks the flag
@code{ tick} to see whether it can continue ticking. If so, it calls
itself again. Note that there is no guarantee that the each dot
corresponds a second: for instance, if the YAP is waiting for
user input, @code{ ticker} will wait until the user types the entry in.
The next example shows how @code{ alarm/3} can be used to guarantee that
a certain procedure does not take longer than a certain amount of time:
@example
loop :- loop.
2001-08-13 10:19:00 +01:00
:- catch((alarm(10, throw(ball), _ ),loop),
ball,
format('Quota exhausted.~n',[])).
2001-04-09 20:54:03 +01:00
@end example
In this case after @code{ 10} seconds our @code{ loop} is interrupted,
@code{ ball} is thrown, and the handler writes @code{ Quota exhausted} .
Execution then continues from the handler.
2001-09-19 20:15:04 +01:00
Note that in this case @code{ loop/0} always executes until the alarm is
sent. Often, the code you are executing succeeds or fails before the
alarm is actually delivered. In this case, you probably want to disable
the alarm when you leave the procedure. The next procedure does exactly so:
@example
once_ with_ alarm(Time,Goal,DoOnAlarm) :-
catch(execute_ once_ with_ alarm(Time, Goal), alarm, DoOnAlarm).
execute_ once_ with_ alarm(Time, Goal) :-
alarm(Time, alarm, _ ),
2005-05-12 04:36:33 +01:00
( call(Goal) -> alarm(0, alarm, _ ) ; alarm(0, alarm, _ ), fail).
2001-09-19 20:15:04 +01:00
@end example
2009-05-23 23:38:27 +01:00
The procedure @code{ once_ with_ alarm/3} has three arguments:
the @var{ Time} to wait before the alarm is
2001-09-19 20:15:04 +01:00
sent; the @var{ Goal} to execute; and the goal @var{ DoOnAlarm} to execute
if the alarm is sent. It uses @code{ catch/3} to handle the case the
@code{ alarm} is sent. Then it starts the alarm, calls the goal
@var{ Goal} , and disables the alarm on success or failure.
2002-01-11 16:53:57 +00:00
@item on_ signal(+@var{ Signal} ,?@var{ OldAction} ,+@var{ Callable} )
@findex on_ signal/3
@snindex on_ signal/3
@cnindex on_ signal/3
Set the interrupt handler for soft interrupt @var{ Signal} to be
@var{ Callable} . @var{ OldAction} is unified with the previous handler.
Only a subset of the software interrupts (signals) can have their
2002-10-11 04:39:11 +01:00
handlers manipulated through @code{ on_ signal/3} .
Their POSIX names, YAP names and default behavior is given below.
2002-01-11 16:53:57 +00:00
The "YAP name" of the signal is the atom that is associated with
each signal, and should be used as the first argument to
@code{ on_ signal/3} . It is chosen so that it matches the signal's POSIX
name.
@code{ on_ signal/3} succeeds, unless when called with an invalid
signal name or one that is not supported on this platform. No checks
are made on the handler provided by the user.
@table @code
2004-05-14 17:33:47 +01:00
@item sig_ up (Hangup)
SIGHUP in Unix/Linux; Reconsult the initialization files
2002-01-11 16:53:57 +00:00
~/.yaprc, ~/.prologrc and ~/prolog.ini.
2004-05-14 17:33:47 +01:00
@item sig_ usr1 and sig_ usr2 (User signals)
SIGUSR1 and SIGUSR2 in Unix/Linux; Print a message and halt.
2002-01-11 16:53:57 +00:00
@end table
A special case is made, where if @var{ Callable} is bound to
@code{ default} , then the default handler is restored for that signal.
A call in the form @code{ on_ signal(@var{ S} ,@var{ H} ,@var{ H} )} can be used
to retrieve a signal's current handler without changing it.
It must be noted that although a signal can be received at all times,
2007-02-18 00:26:36 +00:00
the handler is not executed while YAP is waiting for a query at the
2002-01-11 16:53:57 +00:00
prompt. The signal will be, however, registered and dealt with as soon
as the user makes a query.
2007-02-18 00:26:36 +00:00
Please also note, that neither POSIX Operating Systems nor YAP guarantee
2002-01-11 16:53:57 +00:00
that the order of delivery and handling is going to correspond with the
order of dispatch.
2001-04-09 20:54:03 +01:00
@end table
2007-09-22 09:38:05 +01:00
@node Term Modification, Global Variables, OS, Top
2001-04-09 20:54:03 +01:00
@section Term Modification
@cindex updating terms
It is sometimes useful to change the value of instantiated
variables. Although, this is against the spirit of logic programming, it
is sometimes useful. As in other Prolog systems, YAP has
several primitives that allow updating Prolog terms. Note that these
primitives are also backtrackable.
The @code{ setarg/3} primitive allows updating any argument of a Prolog
compound terms. The @code{ mutable} family of predicates provides
@emph{ mutable variables} . They should be used instead of @code{ setarg/3} ,
as they allow the encapsulation of accesses to updatable
variables. Their implementation can also be more efficient for long
deterministic computations.
@table @code
@item setarg(+@var{ I} ,+@var{ S} ,?@var{ T} )
@findex setarg/3n
@snindex setarg/3n
@cnindex setarg/3n
Set the value of the @var{ I} th argument of term @var{ S} to term @var{ T} .
@cindex mutable variables
@item create_ mutable(+@var{ D} ,-@var{ M} )
@findex create_ mutable/2
@syindex create_ mutable/2
@cnindex create_ mutable/2
Create new mutable variable @var{ M} with initial value @var{ D} .
@item get_ mutable(?@var{ D} ,+@var{ M} )
@findex get_ mutable/2
@syindex get_ mutable/2
@cnindex get_ mutable/2
Unify the current value of mutable term @var{ M} with term @var{ D} .
@item is_ mutable(?@var{ D} )
@findex is_ mutable/1
@syindex is_ mutable/1
@cnindex is_ mutable/1
Holds if @var{ D} is a mutable term.
2002-10-27 18:11:01 +00:00
@item get_ mutable(?@var{ D} ,+@var{ M} )
@findex get_ mutable/2
@syindex get_ mutable/2
@cnindex get_ mutable/2
2001-04-09 20:54:03 +01:00
Unify the current value of mutable term @var{ M} with term @var{ D} .
@item update_ mutable(+@var{ D} ,+@var{ M} )
@findex update_ mutable/2
@syindex update_ mutable/2
@cnindex update_ mutable/2
Set the current value of mutable term @var{ M} to term @var{ D} .
@end table
2007-09-22 09:38:05 +01:00
@node Global Variables, Profiling, Term Modification, Top
2007-09-21 15:18:12 +01:00
@section Global Variables
@cindex global variables
Global variables are associations between names (atoms) and
terms. They differ in various ways from storing information using
2007-09-22 09:38:05 +01:00
@code{ assert/1} or @code{ recorda/3} .
2007-09-21 15:18:12 +01:00
@itemize @bullet
@item The value lives on the Prolog (global) stack. This implies that
lookup time is independent from the size of the term. This is
particularly interesting for large data structures such as parsed XML
documents or the CHR global constraint store.
@item They support both global assignment using @code{ nb_ setval/2} and
backtrackable assignment using @code{ b_ setval/2} .
@item Only one value (which can be an arbitrary complex Prolog term)
can be associated to a variable at a time.
@item Their value cannot be shared among threads. Each thread has its own
namespace and values for global variables.
@end itemize
Currently global variables are scoped globally. We may consider module
2010-03-01 21:49:10 +00:00
scoping in future versions. Both @code{ b_ setval/2} and
2007-09-21 15:18:12 +01:00
@code{ nb_ setval/2} implicitly create a variable if the referenced name
does not already refer to a variable.
Global variables may be initialised from directives to make them
available during the program lifetime, but some considerations are
necessary for saved-states and threads. Saved-states to not store
global variables, which implies they have to be declared with
@code{ initialization/1} to recreate them after loading the saved
state. Each thread has its own set of global variables, starting with
an empty set. Using @code{ thread_ initialization/1} to define a global
variable it will be defined, restored after reloading a saved state
and created in all threads that are created after the
registration. Finally, global variables can be initialised using the
exception hook called @code{ exception/3} . The latter technique is used
by CHR.
@table @code
@item b_ setval(+@var{ Name} , +@var{ Value} )
@findex b_ setval/2
@snindex b_ setval/2
@cnindex b_ setval/2
Associate the term @var{ Value} with the atom @var{ Name} or replaces
the currently associated value with @var{ Value} . If @var{ Name} does
not refer to an existing global variable a variable with initial value
[] is created (the empty list). On backtracking the assignment is
reversed.
@item b_ getval(+@var{ Name} , -@var{ Value} )
@findex b_ getval/2
@snindex b_ getval/2
@cnindex b_ getval/2
Get the value associated with the global variable @var{ Name} and unify
it with @var{ Value} . Note that this unification may further
instantiate the value of the global variable. If this is undesirable
2008-04-04 23:05:34 +01:00
the normal precautions (double negation or @code{ copy_ term/2} ) must be
taken. The @code{ b_ getval/2} predicate generates errors if @var{ Name} is not
2007-09-21 15:18:12 +01:00
an atom or the requested variable does not exist.
2010-03-01 21:49:10 +00:00
Notice that for compatibility with other systems @var{ Name} @emph{ must} be already associated with a term: otherwise the system will generate an error.
2007-09-21 15:18:12 +01:00
@item nb_ setval(+@var{ Name} , +@var{ Value} )
@findex nb_ setval/2
@snindex nb_ setval/2
@cnindex nb_ setval/2
2008-04-04 23:05:34 +01:00
Associates a copy of @var{ Value} created with @code{ duplicate_ term/2} with
2007-09-21 15:18:12 +01:00
the atom @var{ Name} . Note that this can be used to set an initial
value other than @code{ []} prior to backtrackable assignment.
@item nb_ getval(+@var{ Name} , -@var{ Value} )
@findex nb_ getval/2
@snindex nb_ getval/2
@cnindex nb_ getval/2
The @code{ nb_ getval/2} predicate is a synonym for @code{ b_ getval/2} ,
introduced for compatibility and symmetry. As most scenarios will use
2009-04-25 16:59:23 +01:00
a particular global variable either using non-backtrackable or
2007-09-21 15:18:12 +01:00
backtrackable assignment, using @code{ nb_ getval/2} can be used to
2009-04-25 16:59:23 +01:00
document that the variable is used non-backtrackable.
2007-09-21 15:18:12 +01:00
@item nb_ linkval(+@var{ Name} , +@var{ Value} )
@findex nb_ linkval/2
@snindex nb_ linkval/2
@cnindex nb_ linkval/2
Associates the term @var{ Value} with the atom @var{ Name} without
copying it. This is a fast special-purpose variation of @code{ nb_ setval/2}
intended for expert users only because the semantics on backtracking
to a point before creating the link are poorly defined for compound
terms. The principal term is always left untouched, but backtracking
behaviour on arguments is undone if the original assignment was
trailed and left alone otherwise, which implies that the history that
created the term affects the behaviour on backtracking. Please
consider the following example:
@example
demo_ nb_ linkval :-
T = nice(N),
( N = world,
nb_ linkval(myvar, T),
fail
; nb_ getval(myvar, V),
writeln(V)
).
@end example
@item nb_ set_ shared_ val(+@var{ Name} , +@var{ Value} )
@findex nb_ set_ shared_ val/2
@snindex nb_ set_ shared_ val/2
@cnindex nb_ set_ shared_ val/2
Associates the term @var{ Value} with the atom @var{ Name} , but sharing
non-backtrackable terms. This may be useful if you want to rewrite a
global variable so that the new copy will survive backtracking, but
you want to share structure with the previous term.
The next example shows the differences between the three built-ins:
@example
?- nb_ setval(a,a(_ )),nb_ getval(a,A),nb_ setval(b,t(C,A)),nb_ getval(b,B).
A = a(_ A),
B = t(_ B,a(_ C)) ?
?- nb_ setval(a,a(_ )),nb_ getval(a,A),nb_ set_ shared_ val(b,t(C,A)),nb_ getval(b,B).
?- nb_ setval(a,a(_ )),nb_ getval(a,A),nb_ linkval(b,t(C,A)),nb_ getval(b,B).
A = a(_ A),
B = t(C,a(_ A)) ?
@end example
2007-09-22 09:38:05 +01:00
@item nb_ setarg(+@{ Arg], +@var{ Term} , +@var{ Value} )
@findex nb_ setarg/3
@snindex nb_ setarg/3
@cnindex nb_ setarg/3
Assigns the @var{ Arg} -th argument of the compound term @var{ Term} with
the given @var{ Value} as setarg/3, but on backtracking the assignment
is not reversed. If @var{ Term} is not atomic, it is duplicated using
duplicate_ term/2. This predicate uses the same technique as
@code{ nb_ setval/2} . We therefore refer to the description of
@code{ nb_ setval/2} for details on non-backtrackable assignment of
terms. This predicate is compatible to GNU-Prolog
@code{ setarg(A,T,V,false)} , removing the type-restriction on
@var{ Value} . See also @code{ nb_ linkarg/3} . Below is an example for
counting the number of solutions of a goal. Note that this
implementation is thread-safe, reentrant and capable of handling
exceptions. Realising these features with a traditional implementation
based on assert/retract or flag/3 is much more complicated.
@example
succeeds_ n_ times(Goal, Times) :-
Counter = counter(0),
( Goal,
arg(1, Counter, N0),
N is N0 + 1,
nb_ setarg(1, Counter, N),
fail
; arg(1, Counter, Times)
).
@end example
@item nb_ set_ shared_ arg(+@var{ Arg} , +@var{ Term} , +@var{ Value} )
@findex nb_ set_ shared_ arg/3
@snindex nb_ set_ shared_ arg/3
@cnindex nb_ set_ shared_ arg/3
As @code{ nb_ setarg/3} , but like @code{ nb_ linkval/2} it does not
duplicate the global sub-terms in @var{ Value} . Use with extreme care
and consult the documentation of @code{ nb_ linkval/2} before use.
@item nb_ linkarg(+@var{ Arg} , +@var{ Term} , +@var{ Value} )
@findex nb_ linkarg/3
@snindex nb_ lnkarg/3
@cnindex nb_ linkarg/3
As @code{ nb_ setarg/3} , but like @code{ nb_ linkval/2} it does not
duplicate @var{ Value} . Use with extreme care and consult the
documentation of @code{ nb_ linkval/2} before use.
2007-09-21 15:18:12 +01:00
@item nb_ current(?@var{ Name} , ?@var{ Value} )
@findex nb_ current/2
@snindex nb_ current/2
@cnindex nb_ current/2
Enumerate all defined variables with their value. The order of
enumeration is undefined.
@item nb_ delete(+@var{ Name} )
@findex nb_ delete/2
@snindex nb_ delete/2
@cnindex nb_ delete/2
Delete the named global variable.
@end table
Global variables have been introduced by various Prolog
implementations recently. We follow the implementation of them in
SWI-Prolog, itself based on hProlog by Bart Demoen.
GNU-Prolog provides a rich set of global variables, including
arrays. Arrays can be implemented easily in YAP and SWI-Prolog using
@code{ functor/3} and @code{ setarg/3} due to the unrestricted arity of
compound terms.
@node Profiling, Call Counting, Global Variables, Top
2001-04-09 20:54:03 +01:00
@section Profiling Prolog Programs
@cindex profiling
2007-02-18 00:26:36 +00:00
YAP includes two profilers. The count profiler keeps information on the
2006-04-20 16:28:08 +01:00
number of times a predicate was called. This information can be used to
detect what are the most commonly called predicates in the program. The
count profiler can be compiled by setting YAP's flag @code{ profiling}
to @code{ on} . The time-profiler is a @code{ gprof} profiler, and counts
how many ticks are being spent on specific predicates, or on other
system functions such as internal data-base accesses or garbage collects.
The YAP profiling sub-system is currently under
development. Functionality for this sub-system will increase with newer
implementation.
@subsection The Count Profiler
2001-04-09 20:54:03 +01:00
@strong{ Notes:}
2006-04-20 16:28:08 +01:00
The count profiler works by incrementing counters at procedure entry or
backtracking. It provides exact information:
2001-04-09 20:54:03 +01:00
@itemize @bullet
@item Profiling works for both static and dynamic predicates.
@item Currently only information on entries and retries to a predicate
are maintained. This may change in the future.
@item As an example, the following user-level program gives a list of
2002-12-13 20:00:41 +00:00
the most often called procedures in a program. The procedure
@code{ list_ profile} shows all procedures, irrespective of module, and
the procedure @code{ list_ profile/1} shows the procedures being used in
a specific module.
2001-04-09 20:54:03 +01:00
@example
list_ profile :-
% get number of calls for each profiled procedure
2002-12-13 20:00:41 +00:00
setof(D-[M:P|D1],(current_ module(M),profile_ data(M:P,calls,D),profile_ data(M:P,retries,D1)),LP),
2001-04-16 17:41:04 +01:00
% output so that the most often called
% predicates will come last:
2002-12-13 20:00:41 +00:00
write_ profile_ data(LP).
2001-04-09 20:54:03 +01:00
2002-06-26 06:10:17 +01:00
list_ profile(Module) :-
% get number of calls for each profiled procedure
2002-12-13 20:00:41 +00:00
setof(D-[Module:P|D1],(profile_ data(Module:P,calls,D),profile_ data(Module:P,retries,D1)),LP),
2002-06-26 06:10:17 +01:00
% output so that the most often called
% predicates will come last:
2002-12-13 20:00:41 +00:00
write_ profile_ data(LP).
2002-06-26 06:10:17 +01:00
2001-04-09 20:54:03 +01:00
write_ profile_ data([]).
2002-12-13 20:00:41 +00:00
write_ profile_ data([D-[M:P|R]|SLP]) :-
2001-04-16 17:41:04 +01:00
% swap the two calls if you want the most often
% called predicates first.
2002-12-13 20:00:41 +00:00
format('~a:~w: ~32+~t~d~12+~t~d~12+~n', [M,P,D,R]),
2001-04-09 20:54:03 +01:00
write_ profile_ data(SLP).
@end example
@end itemize
These are the current predicates to access and clear profiling data:
@table @code
2002-10-11 04:39:11 +01:00
@item profile_ data(?@var{ Na/Ar} , ?@var{ Parameter} , -@var{ Data} )
2001-04-09 20:54:03 +01:00
@findex profile_ data/3
@snindex profile_ data/3
@cnindex profile_ data/3
Give current profile data on @var{ Parameter} for a predicate described
by the predicate indicator @var{ Na/Ar} . If any of @var{ Na/Ar} or
@var{ Parameter} are unbound, backtrack through all profiled predicates
or stored parameters. Current parameters are:
@table @code
@item calls
Number of times a procedure was called.
@item retries
2006-04-05 01:16:55 +01:00
Number of times a call to the procedure was backtracked to and retried.
2001-04-09 20:54:03 +01:00
@end table
@item profile_ reset
@findex profiled_ reset/0
@snindex profiled_ reset/0
@cnindex profiled_ reset/0
Reset all profiling information.
@end table
2006-05-19 18:49:25 +01:00
@subsection Tick Profiler
2006-04-20 16:28:08 +01:00
The tick profiler works by interrupting the Prolog code every so often
and checking at each point the code was. The profiler must be able to
retrace the state of the abstract machine at every moment. The major
advantage of this approach is that it gives the actual amount of time
being spent per procedure, or whether garbage collection dominates
execution time. The major drawback is that tracking down the state of
the abstract machine may take significant time, and in the worst case
may slow down the whole execution.
The following procedures are available:
@table @code
@item profinit
@findex profinit/0
@snindex profinit/0
@cnindex profinit/0
2007-10-09 00:02:16 +01:00
Initialise the data-structures for the profiler. Unnecessary for
dynamic profiler.
2006-04-20 16:28:08 +01:00
@item profon
@findex profon/0
@snindex profon/0
@cnindex profon/0
Start profiling.
@item profoff
@findex profoff/0
@snindex profoff/0
@cnindex profoff/0
Stop profiling.
@item showprofres
@findex showprofres/0
@snindex showprofres/0
@cnindex showprofres/0
Show profiling info.
@item showprofres(@var{ N} )
@findex showprofres/1
@snindex showprofres/1
@cnindex showprofres/1
Show profiling info for the top-most @var{ N} predicates.
@end table
2010-10-22 00:57:57 +01:00
The @code{ showprofres/0} and @code{ showprofres/1} predicates call a user-defined multifile hook predicate, @code{ user:prolog_ predicate_ name/2} , that can be used for converting a possibly explicitly-qualified callable term into an atom that will used when printing the profiling information.
2006-04-20 16:28:08 +01:00
2002-09-03 15:28:09 +01:00
@node Call Counting, Arrays, Profiling, Top
@section Counting Calls
@cindex Counting Calls
Predicates compiled with YAP's flag @code{ call_ counting} set to
@code{ on} update counters on the numbers of calls and of
retries. Counters are actually decreasing counters, so that they can be
used as timers. Three counters are available:
@itemize @bullet
@item @code{ calls} : number of predicate calls since execution started or since
system was reset;
@item @code{ retries} : number of retries for predicates called since
execution started or since counters were reset;
@item @code{ calls_ and_ retries} : count both on predicate calls and
retries.
@end itemize
These counters can be used to find out how many calls a certain
goal takes to execute. They can also be used as timers.
2002-09-03 21:14:13 +01:00
The code for the call counters piggybacks on the profiling
2002-09-17 00:01:59 +01:00
code. Therefore, activating the call counters also activates the profiling
2002-09-03 21:14:13 +01:00
counters.
2002-09-03 15:28:09 +01:00
These are the predicates that access and manipulate the call counters:
@table @code
@item call_ count_ data(-@var{ Calls} , -@var{ Retries} , -@var{ CallsAndRetries} )
@findex call_ count_ data/3
@snindex call_ count_ data/3
@cnindex call_ count_ data/3
Give current call count data. The first argument gives the current value
for the @var{ Calls} counter, next the @var{ Retries} counter, and last
the @var{ CallsAndRetries} counter.
@item call_ count_ reset
@findex call_ count_ data/0
@snindex call_ count_ data/0
@cnindex call_ count_ data/0
Reset call count counters. All timers are also reset.
@item call_ count(?@var{ CallsMax} , ?@var{ RetriesMax} , ?@var{ CallsAndRetriesMax} )
@findex call_ count_ data/3
@snindex call_ count_ data/3
@cnindex call_ count_ data/3
Set call count counter as timers. YAP will generate an exception
if one of the instantiated call counters decreases to 0. YAP will ignore
unbound arguments:
@itemize @bullet
@item @var{ CallsMax} : throw the exception @code{ call_ counter} when the
counter @code{ calls} reaches 0;
@item @var{ RetriesMax} : throw the exception @code{ retry_ counter} when the
counter @code{ retries} reaches 0;
@item @var{ CallsAndRetriesMax} : throw the exception
@code{ call_ and_ retry_ counter} when the counter @code{ calls_ and_ retries}
reaches 0.
@end itemize
2002-10-08 17:05:26 +01:00
@end table
2002-09-03 15:28:09 +01:00
2002-09-03 21:14:13 +01:00
Next, we show a simple example of how to use call counters:
@example
?- yap_ flag(call_ counting,on), [-user]. l :- l. end_ of_ file. yap_ flag(call_ counting,off).
yes
yes
?- catch((call_ count(10000,_ ,_ ),l),call_ counter,format("limit_ exceeded.~n",[])).
limit_ exceeded.
yes
2002-09-17 00:01:59 +01:00
@end example
2002-09-03 21:14:13 +01:00
Notice that we first compile the looping predicate @code{ l/0} with
@code{ call_ counting} @code{ on} . Next, we @code{ catch/3} to handle an
exception when @code{ l/0} performs more than 10000 reductions.
2002-09-03 15:28:09 +01:00
2002-09-17 00:01:59 +01:00
@node Arrays, Preds, Call Counting , Top
2001-04-09 20:54:03 +01:00
@section Arrays
The YAP system includes experimental support for arrays. The
support is enabled with the option @code{ YAP_ ARRAYS} .
There are two very distinct forms of arrays in YAP. The
@emph{ dynamic arrays} are a different way to access compound terms
created during the execution. Like any other terms, any bindings to
these terms and eventually the terms themselves will be destroyed during
backtracking. Our goal in supporting dynamic arrays is twofold. First,
they provide an alternative to the standard @code{ arg/3}
built-in. Second, because dynamic arrays may have name that are globally
visible, a dynamic array can be visible from any point in the
program. In more detail, the clause
@example
g(X) :- array_ element(a,2,X).
@end example
2006-02-08 19:13:11 +00:00
will succeed as long as the programmer has used the built-in @t{ array/2}
2001-04-09 20:54:03 +01:00
to create an array term with at least 3 elements in the current
environment, and the array was associated with the name @code{ a} . The
element @code{ X} is a Prolog term, so one can bind it and any such
bindings will be undone when backtracking. Note that dynamic arrays do
not have a type: each element may be any Prolog term.
The @emph{ static arrays} are an extension of the database. They provide
a compact way for manipulating data-structures formed by characters,
integers, or floats imperatively. They can also be used to provide
two-way communication between YAP and external programs through
shared memory.
In order to efficiently manage space elements in a static array must
have a type. Currently, elements of static arrays in YAP should
have one of the following predefined types:
@itemize @bullet
@item @code{ byte} : an 8-bit signed character.
@item @code{ unsigned_ byte} : an 8-bit unsigned character.
@item @code{ int} : Prolog integers. Size would be the natural size for
the machine's architecture.
@item @code{ float} : Prolog floating point number. Size would be equivalent
to a double in @code{ C} .
@item @code{ atom} : a Prolog atom.
@item @code{ dbref} : an internal database reference.
@item @code{ term} : a generic Prolog term. Note that this will term will
not be stored in the array itself, but instead will be stored in the
Prolog internal database.
@end itemize
Arrays may be @emph{ named} or @emph{ anonymous} . Most arrays will be
@emph{ named} , that is associated with an atom that will be used to find
the array. Anonymous arrays do not have a name, and they are only of
interest if the @code{ TERM_ EXTENSIONS} compilation flag is enabled. In
this case, the unification and parser are extended to replace
occurrences of Prolog terms of the form @code{ X[I]} by run-time calls to
@code{ array_ element/3} , so that one can use array references instead of
extra calls to @code{ arg/3} . As an example:
@example
g(X,Y,Z,I,J) :- X[I] is Y[J]+Z[I].
@end example
should give the same results as:
@example
G(X,Y,Z,I,J) :-
array_ element(X,I,E1),
array_ element(Y,J,E2),
array_ element(Z,I,E3),
E1 is E2+E3.
@end example
Note that the only limitation on array size are the stack size for
dynamic arrays; and, the heap size for static (not memory mapped)
arrays. Memory mapped arrays are limited by available space in the file
system and in the virtual memory space.
The following predicates manipulate arrays:
@table @code
@item array(+@var{ Name} , +@var{ Size} )
@findex array/2
@snindex array/2
@cnindex array/2
Creates a new dynamic array. The @var{ Size} must evaluate to an
integer. The @var{ Name} may be either an atom (named array) or an
unbound variable (anonymous array).
Dynamic arrays work as standard compound terms, hence space for the
array is recovered automatically on backtracking.
@item static_ array(+@var{ Name} , +@var{ Size} , +@var{ Type} )
@findex static_ array/3
@snindex static_ array/3
@cnindex static_ array/3
Create a new static array with name @var{ Name} . Note that the @var{ Name}
must be an atom (named array). The @var{ Size} must evaluate to an
integer. The @var{ Type} must be bound to one of types mentioned
previously.
2008-06-16 22:22:15 +01:00
@item reset_ static_ array(+@var{ Name} )
@findex reset_ static_ array/1
@snindex reset_ static_ array/1
@cnindex reset_ static_ array/1
Reset static array with name @var{ Name} to its initial value.
2005-04-10 05:01:15 +01:00
@item static_ array_ location(+@var{ Name} , -@var{ Ptr} )
@findex static_ array_ location/4
@snindex static_ array_ location/4
@cnindex static_ array_ location/4
Give the location for a static array with name
@var{ Name} .
2002-11-26 22:28:32 +00:00
@item static_ array_ properties(?@var{ Name} , ?@var{ Size} , ?@var{ Type} )
@findex static_ array_ properties/3
@snindex static_ array_ properties/3
@cnindex static_ array_ properties/3
Show the properties size and type of a static array with name
@var{ Name} . Can also be used to enumerate all current
static arrays.
This built-in will silently fail if the there is no static array with
that name.
@item static_ array_ to_ term(?@var{ Name} , ?@var{ Term} )
@findex static_ array_ to_ term/3
@snindex static_ array_ to_ term/3
@cnindex static_ array_ to_ term/3
Convert a static array with name
@var{ Name} to a compound term of name @var{ Name} .
This built-in will silently fail if the there is no static array with
that name.
2001-04-09 20:54:03 +01:00
@item mmapped_ array(+@var{ Name} , +@var{ Size} , +@var{ Type} , +@var{ File} )
@findex static_ array/3
@snindex static_ array/3
@cnindex static_ array/3
Similar to @code{ static_ array/3} , but the array is memory mapped to file
2002-10-11 04:39:11 +01:00
@var{ File} . This means that the array is initialized from the file, and
2001-04-09 20:54:03 +01:00
that any changes to the array will also be stored in the file.
This built-in is only available in operating systems that support the
system call @code{ mmap} . Moreover, mmapped arrays do not store generic
terms (type @code{ term} ).
@item close_ static_ array(+@var{ Name} )
2002-11-26 22:28:32 +00:00
@findex close_ static_ array/1
@snindex close_ static_ array/1
@cnindex close_ static_ array/1
2001-04-09 20:54:03 +01:00
Close an existing static array of name @var{ Name} . The @var{ Name} must
be an atom (named array). Space for the array will be recovered and
further accesses to the array will return an error.
@item resize_ static_ array(+@var{ Name} , -@var{ OldSize} , +@var{ NewSize} )
@findex resize_ static_ array/3
@snindex resize_ static_ array/3
@cnindex resize_ static_ array/3
Expand or reduce a static array, The @var{ Size} must evaluate to an
integer. The @var{ Name} must be an atom (named array). The @var{ Type}
must be bound to one of @code{ int} , @code{ dbref} , @code{ float} or
@code{ atom} .
Note that if the array is a mmapped array the size of the mmapped file
will be actually adjusted to correspond to the size of the array.
@item array_ element(+@var{ Name} , +@var{ Index} , ?@var{ Element} )
2002-11-26 22:28:32 +00:00
@findex array_ element/3
@snindex array_ element/3
@cnindex array_ element/3
2001-04-09 20:54:03 +01:00
Unify @var{ Element} with @var{ Name} [@var{ Index} ]. It works for both
static and dynamic arrays, but it is read-only for static arrays, while
it can be used to unify with an element of a dynamic array.
@item update_ array(+@var{ Name} , +@var{ Index} , ?@var{ Value} )
@findex update_ array/3
@snindex update_ array/3
@cnindex update_ array/3
Attribute value @var{ Value} to @var{ Name} [@var{ Index} ]. Type
restrictions must be respected for static arrays. This operation is
available for dynamic arrays if @code{ MULTI_ ASSIGNMENT_ VARIABLES} is
enabled (true by default). Backtracking undoes @var{ update_ array/3} for
dynamic arrays, but not for static arrays.
Note that @code{ update_ array/3} actually uses @code{ setarg/3} to update
elements of dynamic arrays, and @code{ setarg/3} spends an extra cell for
every update. For intensive operations we suggest it may be less
expensive to unify each element of the array with a mutable terms and
to use the operations on mutable terms.
2002-11-26 22:28:32 +00:00
@item add_ to_ array_ element(+@var{ Name} , +@var{ Index} , , +@var{ Number} , ?@var{ NewValue} )
@findex add_ to_ array_ element/4
@snindex add_ to_ array_ element/4
@cnindex add_ to_ array_ element/4
Add @var{ Number} @var{ Name} [@var{ Index} ] and unify @var{ NewValue} with
the incremented value. Observe that @var{ Name} [@var{ Index} ] must be an
number. If @var{ Name} is a static array the type of the array must be
@code{ int} or @code{ float} . If the type of the array is @code{ int} you
only may add integers, if it is @code{ float} you may add integers or
floats. If @var{ Name} corresponds to a dynamic array the array element
must have been previously bound to a number and @code{ Number} can be
any kind of number.
The @code{ add_ to_ array_ element/3} built-in actually uses
@code{ setarg/3} to update elements of dynamic arrays. For intensive
operations we suggest it may be less expensive to unify each element
of the array with a mutable terms and to use the operations on mutable
terms.
2001-04-09 20:54:03 +01:00
@end table
@node Preds, Misc, Arrays, Top
@section Predicate Information
Built-ins that return information on the current predicates and modules:
@table @code
@c ......... begin of 'module' documentation .........
@item current_ module(@var{ M} )
@findex current_ module/1
@syindex current_ module/1
@cnindex current_ module/1
2002-10-14 17:22:33 +01:00
Succeeds if @var{ M} are defined modules. A module is defined as soon as some
predicate defined in the module is loaded, as soon as a goal in the
2006-02-08 19:13:11 +00:00
module is called, or as soon as it becomes the current type-in module.
2001-04-09 20:54:03 +01:00
@item current_ module(@var{ M} ,@var{ F} )
@findex current_ module/2
@syindex current_ module/2
@cnindex current_ module/2
Succeeds if @var{ M} are current modules associated to the file @var{ F} .
@c .......... end of 'module' documentation ..........
@end table
@node Misc, , Preds, Top
@section Miscellaneous
@table @code
@item statistics/0
@findex statistics/0
@saindex statistics/0
@cyindex statistics/0
2001-04-25 14:27:14 +01:00
Send to the current user error stream general information on space used and time
spent by the system.
2001-04-09 20:54:03 +01:00
@example
?- statistics.
2002-12-11 15:04:13 +00:00
memory (total) 4784124 bytes
program space 3055616 bytes: 1392224 in use, 1663392 free
2228132 max
stack space 1531904 bytes: 464 in use, 1531440 free
global stack: 96 in use, 616684 max
local stack: 368 in use, 546208 max
trail stack 196604 bytes: 8 in use, 196596 free
0.010 sec. for 5 code, 2 stack, and 1 trail space overflows
0.130 sec. for 3 garbage collections which collected 421000 bytes
0.000 sec. for 0 atom garbage collections which collected 0 bytes
0.880 sec. runtime
1.020 sec. cputime
25.055 sec. elapsed time
@end example
The example shows how much memory the system spends. Memory is divided
into Program Space, Stack Space and Trail. In the example we have 3MB
allocated for program spaces, with less than half being actually
2007-02-18 00:26:36 +00:00
used. YAP also shows the maximum amount of heap space having been used
2002-12-11 15:04:13 +00:00
which was over 2MB.
The stack space is divided into two stacks which grow against each
other. We are in the top level so very little stack is being used. On
the other hand, the system did use a lot of global and local stack
during the previous execution (we refer the reader to a WAM tutorial in
order to understand what are the global and local stacks).
2007-02-18 00:26:36 +00:00
YAP also shows information on how many memory overflows and garbage
2002-12-11 15:04:13 +00:00
collections the system executed, and statistics on total execution
time. Cputime includes all running time, runtime excludes garbage
collection and stack overflow time.
2001-04-09 20:54:03 +01:00
@item statistics(?@var{ Param} ,-@var{ Info} )
@findex statistics/2
@saindex statistics/2
@cnindex statistics/2
Gives statistical information on the system parameter given by first
argument:
@table @code
2008-09-01 02:01:01 +01:00
@item atoms
@findex atoms (statistics/2 option)
@code{ [@var{ NumberOfAtoms} ,@var{ SpaceUsedBy Atoms} ]}
@*
This gives the total number of atoms @code{ NumberOfAtoms} and how much
space they require in bytes, @var{ SpaceUsedBy Atoms} .
2001-04-09 20:54:03 +01:00
@item cputime
@findex cputime (statistics/2 option)
@code{ [@var{ Time since Boot} ,@var{ Time From Last Call to Cputime} ]}
@*
This gives the total cputime in milliseconds spent executing Prolog code,
garbage collection and stack shifts time included.
2008-09-01 02:01:01 +01:00
@item dynamic_ code
@findex dynamic_ code (statistics/2 option)
@code{ [@var{ Clause Size} ,@var{ Index Size} ,@var{ Tree Index
Size} ,@var{ Choice Point Instructions
Size} ,@var{ Expansion Nodes Size} ,@var{ Index Switch Size} ]}
@*
Size of static code in YAP in bytes: @var{ Clause Size} , the number of
bytes allocated for clauses, plus
@var{ Index Size} , the number of bytes spent in the indexing code. The
indexing code is divided into main tree, @var{ Tree Index
Size} , tables that implement choice-point manipulation, @var{ Choice Point Instructions
Size} , tables that cache clauses for future expansion of the index
tree, @var{ Expansion Nodes Size} , and
tables such as hash tables that select according to value, @var{ Index Switch Size} .
2001-04-09 20:54:03 +01:00
@item garbage_ collection
@findex garbage_ collection (statistics/2 option)
@code{ [@var{ Number of GCs} ,@var{ Total Global Recovered} ,@var{ Total Time
Spent} ]}
@*
Number of garbage collections, amount of space recovered in kbytes, and
total time spent doing garbage collection in milliseconds. More detailed
information is available using @code{ yap_ flag(gc_ trace,verbose)} .
@item global_ stack
@findex global_ stack (statistics/2 option)
@code{ [@var{ Global Stack Used} ,@var{ Execution Stack Free} ]}
@*
Space in kbytes currently used in the global stack, and space available for
expansion by the local and global stacks.
@item local_ stack
@findex local_ stack (statistics/2 option)
@code{ [@var{ Local Stack Used} ,@var{ Execution Stack Free} ]}
@*
Space in kbytes currently used in the local stack, and space available for
expansion by the local and global stacks.
@item heap
@findex heap (statistics/2 option)
@code{ [@var{ Heap Used} ,@var{ Heap Free} ]}
@*
Total space in kbytes not recoverable
in backtracking. It includes the program code, internal data base, and,
atom symbol table.
@item program
@findex program (statistics/2 option)
@code{ [@var{ Program Space Used} ,@var{ Program Space Free} ]}
@*
Equivalent to @code{ heap} .
@item runtime
@findex runtime (statistics/2 option)
@code{ [@var{ Time since Boot} ,@var{ Time From Last Call to Runtime} ]}
@*
This gives the total cputime in milliseconds spent executing Prolog
code, not including garbage collections and stack shifts. Note that
2007-02-18 00:26:36 +00:00
until YAP4.1.2 the @code{ runtime} statistics would return time spent on
2001-04-09 20:54:03 +01:00
garbage collection and stack shifting.
@item stack_ shifts
2008-09-01 02:01:01 +01:00
@findex stack_ shifts (statistics/2 option)
2001-04-09 20:54:03 +01:00
@code{ [@var{ Number of Heap Shifts} ,@var{ Number of Stack
Shifts} ,@var{ Number of Trail Shifts} ]}
@*
Number of times YAP had to
expand the heap, the stacks, or the trail. More detailed information is
available using @code{ yap_ flag(gc_ trace,verbose)} .
2008-09-01 02:01:01 +01:00
@item static_ code
@findex static_ code (statistics/2 option)
@code{ [@var{ Clause Size} ,@var{ Index Size} ,@var{ Tree Index
Size} ,@var{ Expansion Nodes Size} ,@var{ Index Switch Size} ]}
@*
Size of static code in YAP in bytes: @var{ Clause Size} , the number of
bytes allocated for clauses, plus
@var{ Index Size} , the number of bytes spent in the indexing code. The
indexing code is divided into a main tree, @var{ Tree Index
Size} , table that cache clauses for future expansion of the index
tree, @var{ Expansion Nodes Size} , and and
tables such as hash tables that select according to value, @var{ Index Switch Size} .
2001-04-09 20:54:03 +01:00
@item trail
@findex trail (statistics/2 option)
@code{ [@var{ Trail Used} ,@var{ Trail Free} ]}
@*
Space in kbytes currently being used and still available for the trail.
@item walltime
@findex walltime (statistics/2 option)
2007-12-27 02:40:28 +00:00
@code{ [@var{ Time since Boot} ,@var{ Time From Last Call to Walltime} ]}
2001-04-09 20:54:03 +01:00
@*
This gives the clock time in milliseconds since starting Prolog.
@end table
2008-01-31 23:31:47 +00:00
@item time(:@var{ Goal} )
@findex time/1
@snindex time/1
@cnindex time/1
Prints the CPU time and the wall time for the execution of @var{ Goal} .
Possible choice-points of @var{ Goal} are removed. Based on the SWI-Prolog
definition (minus reporting the number of inferences, which YAP currently
does not support).
2002-01-23 15:17:56 +00:00
@item yap_ flag(?@var{ Param} ,?@var{ Value} )
2001-04-09 20:54:03 +01:00
@findex yap_ flag/2
@snindex yap_ flag/2
@cnindex yap_ flag/2
Set or read system properties for @var{ Param} :
@table @code
2002-01-27 22:05:35 +00:00
@item argv
@findex argv (yap_ flag/2 option)
@* Read-only flag. It unifies with a list of atoms that gives the
2007-02-18 00:26:36 +00:00
arguments to YAP after @code{ --} .
2002-01-27 22:05:35 +00:00
2010-03-22 14:47:53 +00:00
@item agc_ margin
@findex agc_ margin (yap_ flag/2 option)
An integer: if this amount of atoms has been created since the last
atom-garbage collection, perform atom garbage collection at the first
opportunity. Initial value is 10,000. May be changed. A value of 0
(zero) disables atom garbage collection.
2011-06-22 12:27:05 +01:00
@item associate
@findex associate (yap_ flag/2 option)
@*
Read-write flag telling a suffix for files associated to Prolog
sources. It is @code{ yap} by default.
2001-04-09 20:54:03 +01:00
@item bounded [ISO]
@findex bounded (yap_ flag/2 option)
@*
2001-04-16 17:41:04 +01:00
Read-only flag telling whether integers are bounded. The value depends
on whether YAP uses the GMP library or not.
2001-04-09 20:54:03 +01:00
2002-09-03 15:28:09 +01:00
@item profiling
@findex call_ counting (yap_ flag/2 option)
@*
If @code{ off} (default) do not compile call counting information for
procedures. If @code{ on} compile predicates so that they calls and
retries to the predicate may be counted. Profiling data can be read through the
@code{ call_ count_ data/3} built-in.
2001-04-09 20:54:03 +01:00
@item char_ conversion [ISO]
@findex char_ conversion (yap_ flag/2 option)
@*
Writable flag telling whether a character conversion table is used when
reading terms. The default value for this flag is @code{ off} except in
@code{ sicstus} and @code{ iso} language modes, where it is @code{ on} .
@item character_ escapes [ISO]
@findex character_ escapes (yap_ flag/2 option)
@* Writable flag telling whether a character escapes are enables,
@code{ on} , or disabled, @code{ off} . The default value for this flag is
@code{ on} .
2001-04-17 22:07:41 +01:00
@c You can also use @code{ cprolog} mode, which corresponds to @code{ off} ,
@c @code{ iso} mode, which corresponds to @code{ on} , and @code{ sicstus}
@c mode, which corresponds to the mode traditionally used in SICStus
@c Prolog. In this mode back-quoted escape sequences should not close with
2002-10-11 04:39:11 +01:00
@c a backquote and unrecognized escape codes do not result in error.
2001-04-17 22:07:41 +01:00
2001-04-09 20:54:03 +01:00
@item debug [ISO]
@findex debug (yap_ flag/2 option)
@*
If @var{ Value} is unbound, tell whether debugging is @code{ on} or
@code{ off} . If @var{ Value} is bound to @code{ on} enable debugging, and if
it is bound to @code{ off} disable debugging.
2006-04-25 17:02:20 +01:00
+@item debugger_ print_ options
@findex debugger_ print_ options (yap_ flag/2 option)
@*
If bound, set the argument to the @code{ write_ term/3} options the
debugger uses to write terms. If unbound, show the current options.
2007-10-09 12:43:44 +01:00
@item dialect
@findex dialect (yap_ flag/2 option)
@*
Read-only flag that always returns @code{ yap} .
2001-04-09 20:54:03 +01:00
@item discontiguous_ warnings
@findex discontiguous_ warnings (yap_ flag/2 option)
@*
If @var{ Value} is unbound, tell whether warnings for discontiguous
predicates are @code{ on} or
@code{ off} . If @var{ Value} is bound to @code{ on} enable these warnings,
and if it is bound to @code{ off} disable them. The default for YAP is
@code{ off} , unless we are in @code{ sicstus} or @code{ iso} mode.
@item dollar_ as_ lower_ case
@findex dollar_ as_ lower_ case (yap_ flag/2 option)
@*
If @code{ off} (default) consider the character '$ ' a control character, if
@code{ on} consider '$ ' a lower case character.
@item double_ quotes [ISO]
@findex double_ quotes (yap_ flag/2 option)
@*
If @var{ Value} is unbound, tell whether a double quoted list of characters
token is converted to a list of atoms, @code{ chars} , to a list of integers,
@code{ codes} , or to a single atom, @code{ atom} . If @var{ Value} is bound, set to
2002-10-11 04:39:11 +01:00
the corresponding behavior. The default value is @code{ codes} .
2001-04-09 20:54:03 +01:00
2009-12-10 01:16:29 +00:00
@item executable
@findex executable(yap_ flag/2 option)
@* Read-only flag. It unifies with an atom that gives the
original program path.
2001-04-09 20:54:03 +01:00
@item fast
@findex fast (yap_ flag/2 option)
@*
If @code{ on} allow fast machine code, if @code{ off} (default) disable it. Only
available in experimental implementations.
2002-06-10 23:55:19 +01:00
@item fileerrors
@findex fileerrors (yap_ flag/2 option)
@*
If @code{ on} @code{ fileerrors} is @code{ on} , if @code{ off} (default)
@code{ fileerrors} is disabled.
2006-01-02 02:16:19 +00:00
@item float_ format
@findex float_ format (yap_ flag/2 option)
@* C-library @code{ printf()} format specification used by @code{ write/1} and
friends to determine how floating point numbers are printed. The
default is @code{ %.15g}. The specified value is passed to @code{printf()}
without further checking. For example, if you want less digits
printed, @code{ %g} will print all floats using 6 digits instead of the
default 15.
2001-04-09 20:54:03 +01:00
@item gc
@findex gc (yap_ flag/2 option)
@*
If @code{ on} allow garbage collection (default), if @code{ off} disable it.
@item gc_ margin
@findex gc_ margin (yap_ flag/2 option)
@*
Set or show the minimum free stack before starting garbage
collection. The default depends on total stack size.
@item gc_ trace
@findex gc_ trace (yap_ flag/2 option)
2002-01-28 04:30:40 +00:00
@* If @code{ off} (default) do not show information on garbage collection
and stack shifts, if @code{ on} inform when a garbage collection or stack
shift happened, if @code{ verbose} give detailed information on garbage
collection and stack shifts. Last, if @code{ very_ verbose} give detailed
information on data-structures found during the garbage collection
process, namely, on choice-points.
2001-04-09 20:54:03 +01:00
2007-09-27 16:25:34 +01:00
@item generate_ debugging_ info
@findex generate_ debugging_ info (yap_ flag/2 option)
@* If @code{ true} (default) generate debugging information for
procedures, including source mode. If @code{ false} predicates no
information is generated, although debugging is still possible, and
source mode is disabled.
2002-02-08 22:19:24 +00:00
@item host_ type
@findex host_ type (yap_ flag/2 option)
@* Return @code{ configure} system information, including the machine-id
2007-02-18 00:26:36 +00:00
for which YAP was compiled and Operating System information.
2002-02-08 22:19:24 +00:00
2001-04-09 20:54:03 +01:00
@item index
@findex index (yap_ flag/2 option)
@*
If @code{ on} allow indexing (default), if @code{ off} disable it.
2002-01-23 14:23:19 +00:00
@item informational_ messages
@findex informational_ messages (yap_ flag/2 option)
@*
If @code{ on} allow printing of informational messages, such as the ones
2002-01-23 15:19:40 +00:00
that are printed when consulting. If @code{ off} disable printing
2007-02-18 00:26:36 +00:00
these messages. It is @code{ on} by default except if YAP is booted with
2002-01-23 14:23:19 +00:00
the @code{ -L} flag.
2001-04-09 20:54:03 +01:00
@item integer_ rounding_ function [ISO]
@findex integer_ rounding_ function (yap_ flag/2 option)
@*
Read-only flag telling the rounding function used for integers. Takes the value
@code{ down} for the current version of YAP.
@item language
@findex language (yap_ flag/2 option)
@*
Choose whether YAP is closer to C-Prolog, @code{ cprolog} , iso-prolog,
@code{ iso} or SICStus Prolog, @code{ sicstus} . The current default is
@code{ cprolog} . This flag affects update semantics, leashing mode,
2008-04-04 23:05:34 +01:00
style checking, handling calls to undefined procedures, how directives
2001-04-09 20:54:03 +01:00
are interpreted, when to use dynamic, character escapes, and how files
are consulted.
@item max_ arity [ISO]
@findex max_ arity (yap_ flag/2 option)
@*
Read-only flag telling the maximum arity of a functor. Takes the value
@code{ unbounded} for the current version of YAP.
@item max_ integer [ISO]
@findex max_ integer (yap_ flag/2 option)
@*
Read-only flag telling the maximum integer in the
2001-04-16 17:41:04 +01:00
implementation. Depends on machine and Operating System
2006-02-08 19:13:11 +00:00
architecture, and on whether YAP uses the @code{ GMP} multi-precision
2002-10-11 04:39:11 +01:00
library. If @code{ bounded} is false, requests for @code{ max_ integer}
2001-04-16 17:41:04 +01:00
will fail.
2001-04-09 20:54:03 +01:00
2005-10-28 18:55:30 +01:00
@item max_ tagged_ integer
@findex max_ tagged_ integer (yap_ flag/2 option)
@*
Read-only flag telling the maximum integer we can store as a single
word. Depends on machine and Operating System
architecture. It can be used to find the word size of the current machine.
2001-04-09 20:54:03 +01:00
@item min_ integer [ISO]
@findex min_ integer (yap_ flag/2 option)
2001-04-16 17:41:04 +01:00
@* Read-only flag telling the minimum integer in the
implementation. Depends on machine and Operating System architecture,
2006-02-08 19:13:11 +00:00
and on whether YAP uses the @code{ GMP} multi-precision library. If
2002-10-11 04:39:11 +01:00
@code{ bounded} is false, requests for @code{ min_ integer} will fail.
2001-04-09 20:54:03 +01:00
2005-10-28 18:55:30 +01:00
@item min_ tagged_ integer
@findex max_ tagged_ integer (yap_ flag/2 option)
@*
Read-only flag telling the minimum integer we can store as a single
word. Depends on machine and Operating System
architecture.
2001-04-09 20:54:03 +01:00
@item n_ of_ integer_ keys_ in_ bb
@findex n_ of_ integer_ keys_ in_ bb (yap_ flag/2 option)
@*
Read or set the size of the hash table that is used for looking up the
blackboard when the key is an integer.
@item n_ of_ integer_ keys_ in_ db
@findex n_ of_ integer_ keys_ in_ db (yap_ flag/2 option)
@*
Read or set the size of the hash table that is used for looking up the
internal data-base when the key is an integer.
2008-03-12 15:37:34 +00:00
@item open_ expands_ filename
@findex open_ expands_ filename (yap_ flag/2 option)
@*
If @code{ true} the @code{ open/3} builtin performs filename-expansion
before opening a file (SICStus Prolog like). If @code{ false} it does not
(SWI-Prolog like).
2010-06-17 00:32:52 +01:00
@item open_ shared_ object
@findex open_ shared_ object (yap_ flag/2 option)
@*
If true, @code{ open_ shared_ object/2} and friends are implemented,
providing access to shared libraries (@code{ .so} files) or to dynamic link
libraries (@code{ .DLL} files).
2001-04-09 20:54:03 +01:00
@item profiling
@findex profiling (yap_ flag/2 option)
@*
If @code{ off} (default) do not compile profiling information for
procedures. If @code{ on} compile predicates so that they will output
profiling information. Profiling data can be read through the
@code{ profile_ data/3} built-in.
2010-02-28 00:05:38 +00:00
@item prompt_ alternatives_ on(atom, changeable)
@findex prompt_ alternatives_ on (yap_ flag/2 option)
2010-10-04 19:35:22 +01:00
SWI-Compatible option, determines prompting for alternatives in the Prolog toplevel. Default is @t{ groundness} , YAP prompts for alternatives if and only if the query contains variables. The alternative, default in SWI-Prolog is @t{ determinism} which implies the system prompts for alternatives if the goal succeeded while leaving choicepoints.
2010-02-28 00:05:38 +00:00
2001-04-09 20:54:03 +01:00
@item redefine_ warnings
@findex discontiguous_ warnings (yap_ flag/2 option)
@*
If @var{ Value} is unbound, tell whether warnings for procedures defined
in several different files are @code{ on} or
@code{ off} . If @var{ Value} is bound to @code{ on} enable these warnings,
and if it is bound to @code{ off} disable them. The default for YAP is
@code{ off} , unless we are in @code{ sicstus} or @code{ iso} mode.
2007-09-27 16:25:34 +01:00
@item shared_ object_ search_ path
@findex shared_ object_ search_ path (yap_ flag/2 option)
Name of the environment variable used by the system to search for shared
objects.
2011-06-22 12:27:05 +01:00
@item shared_ object_ extension
@findex shared_ object_ extension (yap_ flag/2 option)
Suffix associated with loadable code.
2001-04-09 20:54:03 +01:00
@item single_ var_ warnings
@findex single_ var_ warnings (yap_ flag/2 option)
@*
If @var{ Value} is unbound, tell whether warnings for singleton variables
are @code{ on} or @code{ off} . If @var{ Value} is bound to @code{ on} enable
these warnings, and if it is bound to @code{ off} disable them. The
default for YAP is @code{ off} , unless we are in @code{ sicstus} or
@code{ iso} mode.
@item strict_ iso
2008-03-31 23:56:22 +01:00
@findex strict_ iso (yap_ flag/2 option)
2001-04-09 20:54:03 +01:00
@*
If @var{ Value} is unbound, tell whether strict ISO compatibility mode
is @code{ on} or @code{ off} . If @var{ Value} is bound to @code{ on} set
language mode to @code{ iso} and enable strict mode. If @var{ Value} is
bound to @code{ off} disable strict mode, and keep the current language
mode. The default for YAP is @code{ off} .
2009-04-25 16:59:23 +01:00
Under strict ISO Prolog mode all calls to non-ISO built-ins generate an
2001-04-09 20:54:03 +01:00
error. Compilation of clauses that would call non-ISO built-ins will
also generate errors. Pre-processing for grammar rules is also
disabled. Module expansion is still performed.
Arguably, ISO Prolog does not provide all the functionality required
from a modern Prolog system. Moreover, because most Prolog
implementations do not fully implement the standard and because the
standard itself gives the implementor latitude in a few important
questions, such as the unification algorithm and maximum size for
2009-05-18 15:36:00 +01:00
numbers there is no guarantee that programs compliant with this mode
2001-04-09 20:54:03 +01:00
will work the same way in every Prolog and in every platform. We thus
believe this mode is mostly useful when investigating how a program
depends on a Prolog's platform specific features.
2002-12-10 14:36:22 +00:00
@item stack_ dump_ on_ error
@findex stack_ dump_ on_ error (yap_ flag/2 option)
@*
2007-02-18 00:26:36 +00:00
If @code{ on} show a stack dump when YAP finds an error. The default is
2002-12-10 14:36:22 +00:00
@code{ off} .
2001-04-09 20:54:03 +01:00
@item syntax_ errors
@findex syntax_ errors (yap_ flag/2 option)
@*
Control action to be taken after syntax errors while executing @code{ read/1} ,
@code{ read/2} , or @code{ read_ term/3} :
@table @code
@item dec10
@*
Report the syntax error and retry reading the term.
@item fail
@*
Report the syntax error and fail (default).
@item error
@*
Report the syntax error and generate an error.
@item quiet
@*
Just fail
@end table
2004-03-04 18:33:34 +00:00
@item system_ options
@findex system_ options (yap_ flag/2 option)
@* This read only flag tells which options were used to compile
2007-08-02 18:22:00 +01:00
YAP. Currently it informs whether the system supports @code{ big_ numbers} ,
2007-02-26 10:41:40 +00:00
@code{ coroutining} , @code{ depth_ limit} , @code{ low_ level_ tracer} ,
2007-08-02 18:22:00 +01:00
@code{ or-parallelism} , @code{ rational_ trees} , @code{ readline} , @code{ tabling} ,
2004-03-04 18:33:34 +00:00
@code{ threads} , or the @code{ wam_ profiler} .
2006-04-21 19:39:38 +01:00
@item tabling_ mode
@* Sets or reads the tabling mode for all tabled predicates. Please
@pxref{ Tabling} for the list of options.
2001-04-09 20:54:03 +01:00
@item to_ chars_ mode
@findex to_ chars_ modes (yap_ flag/2 option)
@* Define whether YAP should follow @code{ quintus} -like
semantics for the @code{ atom_ chars/1} or @code{ number_ chars/1} built-in,
or whether it should follow the ISO standard (@code{ iso} option).
2003-10-22 15:08:29 +01:00
+@item toplevel_ hook
2001-04-09 20:54:03 +01:00
@findex toplevel_ hook (yap_ flag/2 option)
@*
2003-10-22 15:08:29 +01:00
+If bound, set the argument to a goal to be executed before entering the
2001-04-09 20:54:03 +01:00
top-level. If unbound show the current goal or @code{ true} if none is
presented. Only the first solution is considered and the goal is not
backtracked into.
2006-04-25 17:02:20 +01:00
+@item toplevel_ print_ options
@findex toplevel_ print_ options (yap_ flag/2 option)
@*
+If bound, set the argument to the @code{ write_ term/3} options used to write
terms from the top-level. If unbound, show the current options.
2001-04-09 20:54:03 +01:00
@item typein_ module
@findex typein_ module (yap_ flag/2 option)
@*
If bound, set the current working or type-in module to the argument,
which must be an atom. If unbound, unify the argument with the current
working module.
2007-09-27 16:25:34 +01:00
@item unix
@findex unix (yap_ flag/2 option)
2009-04-25 16:59:23 +01:00
@* Read-only Boolean flag that unifies with @code{ true} if YAP is
2007-09-27 16:25:34 +01:00
running on an Unix system. Defined if the C-compiler used to compile
this version of YAP either defines @code{ _ _ unix_ _ } or @code{ unix} .
2001-04-09 20:54:03 +01:00
@item unknown [ISO]
@findex unknown (yap_ flag/2 option)
@*
2010-09-27 23:32:45 +01:00
Corresponds to calling the @code{ unknown/2} built-in. Possible values
are @code{ error} , @code{ fail} , and @code{ warning} .
2001-04-09 20:54:03 +01:00
@item update_ semantics
@findex update_ semantics (yap_ flag/2 option)
@*
Define whether YAP should follow @code{ immediate} update
semantics, as in C-Prolog (default), @code{ logical} update semantics,
as in Quintus Prolog, SICStus Prolog, or in the ISO standard. There is
also an intermediate mode, @code{ logical_ assert} , where dynamic
procedures follow logical semantics but the internal data base still
follows immediate semantics.
2001-04-16 17:41:04 +01:00
@item user_ error
@findex user_ error (yap_ flag/2 option)
@*
If the second argument is bound to a stream, set @code{ user_ error} to
this stream. If the second argument is unbound, unify the argument with
the current @code{ user_ error} stream.
By default, the @code{ user_ error} stream is set to a stream
corresponding to the Unix @code{ stderr} stream.
The next example shows how to use this flag:
@example
?- open( '/dev/null', append, Error,
[alias(mauri_ tripa)] ).
Error = '$ stream' ( 3 ) ? ;
no
?- set_ prolog_ flag(user_ error, mauri_ tripa).
close(mauri_ tripa).
yes
?-
@end example
2002-02-06 17:35:26 +00:00
We execute three commands. First, we open a stream in write mode and
give it an alias, in this case @code{ mauri_ tripa} . Next, we set
@code{ user_ error} to the stream via the alias. Note that after we did so
prompts from the system were redirected to the stream
@code{ mauri_ tripa} . Last, we close the stream. At this point, YAP
automatically redirects the @code{ user_ error} alias to the original
@code{ stderr} .
2001-04-16 17:41:04 +01:00
2010-02-28 00:42:47 +00:00
@item user_ flags
@findex user_ flags (yap_ flag/2 option)
@*
Define the behaviour of @code{ set_ prolog_ flag/2} if the flag is not known. Values are @code{ silent} , @code{ warning} and @code{ error} . The first two create the flag on-the-fly, with @code{ warning} printing a message. The value @code{ error} is consistent with ISO: it raises an existence error and does not create the flag. See also @code{ create_ prolog_ flag/3} . The default is@code{ error} , and developers are encouraged to use @code{ create_ prolog_ flag/3} to create flags for their library.
2001-04-16 17:41:04 +01:00
@item user_ input
@findex user_ input (yap_ flag/2 option)
@*
If the second argument is bound to a stream, set @code{ user_ input} to
this stream. If the second argument is unbound, unify the argument with
the current @code{ user_ input} stream.
By default, the @code{ user_ input} stream is set to a stream
corresponding to the Unix @code{ stdin} stream.
@item user_ output
@findex user_ output (yap_ flag/2 option)
@*
If the second argument is bound to a stream, set @code{ user_ output} to
this stream. If the second argument is unbound, unify the argument with
the current @code{ user_ output} stream.
By default, the @code{ user_ output} stream is set to a stream
corresponding to the Unix @code{ stdout} stream.
2008-03-12 15:51:58 +00:00
@item verbose
@findex verbose (yap_ flag/2 option)
@*
If @code{ normal} allow printing of informational and banner messages,
such as the ones that are printed when consulting. If @code{ silent}
disable printing these messages. It is @code{ normal} by default except if
2008-03-31 23:56:22 +01:00
YAP is booted with the @code{ -q} or @code{ -L} flag.
@item verbose_ load
@findex verbose_ load (yap_ flag/2 option)
@* If @code{ true} allow printing of informational messages when
consulting files. If @code{ false} disable printing these messages. It
is @code{ normal} by default except if YAP is booted with the @code{ -L}
flag.
2008-03-12 15:51:58 +00:00
2001-04-17 22:07:41 +01:00
@item version
@findex version (yap_ flag/2 option)
2007-10-09 12:43:44 +01:00
@* Read-only flag that returns an atom with the current version of
YAP.
@item version_ data
@findex version_ data (yap_ flag/2 option)
@* Read-only flag that reads a term of the form
@code{ yap} (@var{ Major} ,@var{ Minor} ,@var{ Patch} ,@var{ Undefined} ), where
@var{ Major} is the major version, @var{ Minor} is the minor version,
and @var{ Patch} is the patch number.
2001-04-17 22:07:41 +01:00
2007-09-27 16:25:34 +01:00
@item windows
@findex windoes (yap_ flag/2 option)
@*
Read-only boolean flag that unifies with tr @code{ true} if YAP is
running on an Windows machine.
2001-04-16 17:41:04 +01:00
@item write_ strings
@findex write_ strings (yap_ flag/2 option)
@* Writable flag telling whether the system should write lists of
integers that are writable character codes using the list notation. It
is @code{ on} if enables or @code{ off} if disabled. The default value for
this flag is @code{ off} .
2008-04-02 23:59:52 +01:00
@item max_ workers
@findex max_ workers (yap_ flag/2 option)
2008-04-03 00:08:36 +01:00
@* Read-only flag telling the maximum number of parallel processes.
2008-04-02 23:59:52 +01:00
2007-02-26 19:03:19 +00:00
@item max_ threads
@findex max_ threads (yap_ flag/2 option)
@* Read-only flag telling the maximum number of Prolog threads that can
be created.
2001-04-09 20:54:03 +01:00
@end table
@item current_ prolog_ flag(?@var{ Flag} ,-@var{ Value} ) [ISO]
@findex current_ prolog_ flag/2
@snindex current_ prolog_ flag/2
@cnindex current_ prolog_ flag/2
Obtain the value for a YAP Prolog flag. Equivalent to calling
@code{ yap_ flag/2} with the second argument unbound, and unifying the
returned second argument with @var{ Value} .
@item prolog_ flag(?@var{ Flag} ,-@var{ OldValue} ,+@var{ NewValue} )
@findex prolog_ flag/3
@syindex prolog_ flag/3
@cnindex prolog_ flag/3
Obtain the value for a YAP Prolog flag and then set it to a new
value. Equivalent to first calling @code{ current_ prolog_ flag/2} with the
second argument @var{ OldValue} unbound and then calling
@code{ set_ prolog_ flag/2} with the third argument @var{ NewValue} .
@item set_ prolog_ flag(+@var{ Flag} ,+@var{ Value} ) [ISO]
@findex set_ prolog_ flag/2
@snindex set_ prolog_ flag/2
@cnindex set_ prolog_ flag/2
Set the value for YAP Prolog flag @code{ Flag} . Equivalent to
calling @code{ yap_ flag/2} with both arguments bound.
2009-12-04 00:30:07 +00:00
@item create_ prolog_ flag(+@var{ Flag} ,+@var{ Value} ,+@var{ Options} )
@findex create_ prolog_ flag/2
@snindex create_ prolog_ flag/2
@cnindex create_ prolog_ flag/2
Create a new YAP Prolog flag. @var{ Options} include @code{ type(+Type)} and @code{ access(+Access)} with @var{ Access}
one of @code{ read_ only} or @code{ read_ write} and @var{ Type} one of @code{ boolean} , @code{ integer} , @code{ float} , @code{ atom}
and @code{ term} (that is, no type).
2001-04-09 20:54:03 +01:00
@item op(+@var{ P} ,+@var{ T} ,+@var{ A} ) [ISO]
@findex op/3
@syindex op/3
@cyindex op/3
Defines the operator @var{ A} or the list of operators @var{ A} with type
@var{ T} (which must be one of @code{ xfx} , @code{ xfy} ,@code{ yfx} ,
@code{ xf} , @code{ yf} , @code{ fx} or @code{ fy} ) and precedence @var{ P}
(see appendix iv for a list of predefined operators).
Note that if there is a preexisting operator with the same name and
type, this operator will be discarded. Also, @code{ ','} may not be defined
as an operator, and it is not allowed to have the same for an infix and
2002-10-11 04:39:11 +01:00
a postfix operator.
2001-04-09 20:54:03 +01:00
@item current_ op(@var{ P} ,@var{ T} ,@var{ F} ) [ISO]
@findex current_ op/3
@syindex current_ op/3
@cnindex current_ op/3
Defines the relation: @var{ P} is a currently defined operator of type
@var{ T} and precedence @var{ P} .
@item prompt(-@var{ A} ,+@var{ B} )
@findex prompt/2
@syindex prompt/2
@cyindex prompt/2
Changes YAP input prompt from @var{ A} to @var{ B} .
@item initialization
@findex initialization/0
@syindex initialization/0
@cnindex initialization/0
Execute the goals defined by initialization/1. Only the first answer is
considered.
@item prolog_ initialization(@var{ G} )
@findex prolog_ initialization/1
@saindex prolog_ initialization/1
@cnindex prolog_ initialization/1
Add a goal to be executed on system initialization. This is compatible
with SICStus Prolog's @code{ initialization/1} .
@item version
@findex version/0
@saindex version/0
@cnindex version/0
Write YAP's boot message.
@item version(-@var{ Message} )
@findex version/1
@syindex version/1
@cnindex version/1
Add a message to be written when yap boots or after aborting. It is not
possible to remove messages.
@item prolog_ load_ context(?@var{ Key} , ?@var{ Value} )
@findex prolog_ load_ context/2
@syindex prolog_ load_ context/2
@cnindex prolog_ load_ context/2
Obtain information on what is going on in the compilation process. The
following keys are available:
@table @code
@item directory
@findex directory (prolog_ load_ context/2 option)
@*
Full name for the directory where YAP is currently consulting the
file.
@item file
@findex file (prolog_ load_ context/2 option)
@*
Full name for the file currently being consulted. Notice that included
filed are ignored.
@item module
@findex module (prolog_ load_ context/2 option)
@*
Current source module.
@item source
@findex file (prolog_ load_ context/2 option)
@*
Full name for the file currently being read in, which may be consulted,
reconsulted, or included.
@item stream
@findex file (prolog_ load_ context/2 option)
@*
Stream currently being read in.
@item term_ position
@findex file (prolog_ load_ context/2 option)
@*
2011-04-30 10:57:00 +01:00
Stream position at the stream currently being read in. For SWI
compatibility, it is a term of the form
@code{ '$ stream _ position' ( 0 ,Line, 0 , 0 , 0 ) } .
2001-04-09 20:54:03 +01:00
@end table
2009-11-23 10:05:52 +00:00
@item source_ location(?@var{ FileName} , ?@var{ Line} )
@findex source_ location/2
@syindex source_ location/2
@cnindex source_ location/2
SWI-compatible predicate. If the last term has been read from a physical file (i.e., not from the file user or a string), unify File with an absolute path to the file and Line with the line-number in the file. Please use @code{ prolog_ load_ context/2} .
2010-02-28 22:24:51 +00:00
@item source_ file(?@var{ File} )
@findex source_ file/1
@syindex source_ file/1
@cnindex source_ file/1
SWI-compatible predicate. True if @var{ File} is a loaded Prolog source file.
@item source_ file(?@var{ ModuleAndPred} ,?@var{ File} )
@findex source_ file/2
@syindex source_ file/2
@cnindex source_ file/2
SWI-compatible predicate. True if the predicate specified by @var{ ModuleAndPred} was loaded from file @var{ File} , where @var{ File} is an absolute path name (see @code{ absolute_ file_ name/2} ).
2010-02-26 23:13:22 +00:00
@end table
2007-02-18 00:26:36 +00:00
@node Library, SWI-Prolog, Built-ins, Top
2001-04-09 20:54:03 +01:00
@chapter Library Predicates
Library files reside in the library_ directory path (set by the
@code{ LIBDIR} variable in the Makefile for YAP). Currently,
most files in the library are from the Edinburgh Prolog library.
@menu
2007-02-18 00:26:36 +00:00
Library, Extensions, Built-ins, Top
2010-04-20 23:06:41 +01:00
* Aggregate :: SWI and SICStus compatible aggregate library
2008-05-15 14:41:48 +01:00
* Apply:: SWI-Compatible Apply library.
2001-08-09 19:00:45 +01:00
* Association Lists:: Binary Tree Implementation of Association Lists.
2001-04-09 20:54:03 +01:00
* AVL Trees:: Predicates to add and lookup balanced binary trees.
2010-12-02 19:57:55 +00:00
* Block Diagram:: Block Diagrams of Prolog code
2007-09-16 21:27:57 +01:00
* Cleanup:: Call With registered Cleanup Calls
* DGraphs:: Directed Graphs Implemented With Red-Black Trees
2001-04-09 20:54:03 +01:00
* Heaps:: Labelled binary tree where the key of each node is less
2001-08-09 19:00:45 +01:00
than or equal to the keys of its children.
2007-09-16 21:27:57 +01:00
* LAM:: LAM MPI
2010-08-04 23:26:50 +01:00
* Lambda:: Ulrich Neumerkel's Lambda Library
2001-04-09 20:54:03 +01:00
* Lists:: List Manipulation
2008-09-01 02:41:09 +01:00
* LineUtilities:: Line Manipulation Utilities
2010-04-20 23:06:41 +01:00
* MapList:: SWI-Compatible Apply library.
2007-07-03 16:24:20 +01:00
* matrix:: Matrix Objects
2007-06-29 02:33:35 +01:00
* MATLAB:: Matlab Interface
2006-08-26 00:22:12 +01:00
* Non-Backtrackable Data Structures:: Queues, Heaps, and Beams.
2001-04-09 20:54:03 +01:00
* Ordered Sets:: Ordered Set Manipulation
* Pseudo Random:: Pseudo Random Numbers
* Queues:: Queue Manipulation
* Random:: Random Numbers
2006-08-02 19:18:31 +01:00
* Read Utilities:: SWI inspired utilities for fast stream scanning.
2002-06-18 05:23:15 +01:00
* Red-Black Trees:: Predicates to add, lookup and delete in red-black binary trees.
2001-04-09 20:54:03 +01:00
* RegExp:: Regular Expression Manipulation
2010-06-17 00:32:52 +01:00
* shlib:: SWI Prolog shlib library
2001-04-09 20:54:03 +01:00
* Splay Trees:: Splay Trees
* String I/O:: Writing To and Reading From Strings
2001-05-24 16:26:41 +01:00
* System:: System Utilities
2001-04-09 20:54:03 +01:00
* Terms:: Utilities on Terms
* Timeout:: Call With Timeout
* Trees:: Updatable Binary Trees
2007-09-16 21:27:57 +01:00
* Tries:: Trie Data Structure
2001-04-09 20:54:03 +01:00
* UGraphs:: Unweighted Graphs
2006-04-10 20:24:52 +01:00
* UnDGraphs:: Undirected Graphs Using DGraphs
2001-04-09 20:54:03 +01:00
@end menu
2006-06-02 05:23:09 +01:00
2001-04-09 20:54:03 +01:00
2010-04-20 23:06:41 +01:00
@node Aggregate, Apply, , Library
@section Aggregate
@cindex aggregate
This is the SWI-Prolog library based on the Quintus and SICStus 4
2010-10-28 18:05:18 +01:00
library. @c To be done - Analysing the aggregation template
2010-04-20 23:06:41 +01:00
@c and compiling a predicate for the list aggregation can be done at
@c compile time. - aggregate_ all/3 can be rewritten to run in constant
@c space using non-backtrackable assignment on a term.
2008-05-15 14:41:48 +01:00
2010-04-20 23:06:41 +01:00
This library provides aggregating operators over the solutions of a
predicate. The operations are a generalisation of the @code{ bagof/3} ,
@code{ setof/3} and @code{ findall/3} built-in predicates. The defined
aggregation operations are counting, computing the sum, minimum,
maximum, a bag of solutions and a set of solutions. We first give a
simple example, computing the country with the smallest area:
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@example
smallest_ country(Name, Area) :-
aggregate(min(A, N), country(N, A), min(Area, Name)).
@end example
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
There are four aggregation predicates, distinguished on two properties.
2001-08-09 19:00:45 +01:00
@table @code
2008-07-16 11:45:47 +01:00
2010-04-20 23:06:41 +01:00
@item aggregate vs. aggregate_ all
The aggregate predicates use setof/3 (aggregate/4) or bagof/3
(aggregate/3), dealing with existential qualified variables
(@var{ Var} /\@ var{ Goal} ) and providing multiple solutions for the
remaining free variables in @var{ Goal} . The aggregate_ all/3
predicate uses findall/3, implicitly qualifying all free variables
and providing exactly one solution, while aggregate_ all/4 uses
sort/2 over solutions and Distinguish (see below) generated using
findall/3.
@item The @var{ Distinguish} argument
The versions with 4 arguments provide a @var{ Distinguish} argument
that allow for keeping duplicate bindings of a variable in the
result. For example, if we wish to compute the total population of
all countries we do not want to lose results because two countries
have the same population. Therefore we use:
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@example
aggregate(sum(P), Name, country(Name, P), Total)
@end example
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@end table
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
All aggregation predicates support the following operator below in
@var{ Template} . In addition, they allow for an arbitrary named compound
term where each of the arguments is a term from the list below. I.e. the
term @code{ r(min(X), max(X))} computes both the minimum and maximum
binding for @var{ X} .
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@table @code
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@item count
Count number of solutions. Same as @code{ sum(1)} .
@item sum(@var{ Expr} )
Sum of @var{ Expr} for all solutions.
@item min(@var{ Expr} )
Minimum of @var{ Expr} for all solutions.
@item min(@var{ Expr} , @var{ Witness} )
A term min(@var{ Min} , @var{ Witness} ), where @var{ Min} is the minimal version of @var{ Expr}
over all Solution and @var{ Witness} is any other template applied to
Solution that produced @var{ Min} . If multiple solutions provide the same
minimum, @var{ Witness} corresponds to the first solution.
@item max(@var{ Expr} )
Maximum of @var{ Expr} for all solutions.
@item max(@var{ Expr} , @var{ Witness} )
As min(@var{ Expr} , @var{ Witness} ), but producing the maximum result.
@item set(@var{ X} )
An ordered set with all solutions for @var{ X} .
@item bag(@var{ X} )
A list of all solutions for @var{ X} .
@end table
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
The predicates are:
@table @code
2008-05-15 14:41:48 +01:00
2010-04-20 23:06:41 +01:00
@item [nondet]aggregate(+@var{ Template} , :@var{ Goal} , -@var{ Result} )
@findex aggregate/3
@syindex aggregate/3
@cnindex aggregate/3
Aggregate bindings in @var{ Goal} according to @var{ Template} . The
aggregate/3 version performs bagof/3 on @var{ Goal} .
@item [nondet]aggregate(+@var{ Template} , +@var{ Discriminator} , :@var{ Goal} , -@var{ Result} )
@findex aggregate/4
@syindex aggregate/4
@cnindex aggregate/4
Aggregate bindings in @var{ Goal} according to @var{ Template} . The
aggregate/3 version performs setof/3 on @var{ Goal} .
@item [semidet]aggregate_ all(+@var{ Template} , :@var{ Goal} , -@var{ Result} )
@findex aggregate_ all/3
@syindex aggregate_ all/3
@cnindex aggregate_ all/3
Aggregate bindings in @var{ Goal} according to @var{ Template} . The
aggregate_ all/3 version performs findall/3 on @var{ Goal} .
@item [semidet]aggregate_ all(+@var{ Template} , +@var{ Discriminator} , :@var{ Goal} , -@var{ Result} )
@findex aggregate_ all/4
@syindex aggregate_ all/4
@cnindex aggregate_ all/4
Aggregate bindings in @var{ Goal} according to @var{ Template} . The
aggregate_ all/3 version performs findall/3 followed by sort/2 on
@var{ Goal} .
@item foreach(:Generator, :@var{ Goal} )
@findex foreach/2
@syindex foreach/2
@cnindex foreach/2
True if the conjunction of instances of @var{ Goal} using the
bindings from Generator is true. Unlike forall/2, which runs a
failure-driven loop that proves @var{ Goal} for each solution of
Generator, foreach creates a conjunction. Each member of the
conjunction is a copy of @var{ Goal} , where the variables it shares
with Generator are filled with the values from the corresponding
solution.
The implementation executes forall/2 if @var{ Goal} does not contain
any variables that are not shared with Generator.
Here is an example:
@example
?- foreach(between(1,4,X), dif(X,Y)), Y = 5.
Y = 5
?- foreach(between(1,4,X), dif(X,Y)), Y = 3.
No
@end example
2010-10-04 19:35:22 +01:00
Notice that @var{ Goal} is copied repeatedly, which may cause
2010-04-20 23:06:41 +01:00
problems if attributed variables are involved.
@item [det]free_ variables(:Generator, +@var{ Template} , +VarList0, -VarList)
@findex free_ variables/4
@syindex free_ variables/4
@cnindex free_ variables/4
In order to handle variables properly, we have to find all the universally quantified variables in the Generator. All variables as yet unbound are universally quantified, unless
2008-05-15 14:41:48 +01:00
2010-04-20 23:06:41 +01:00
@enumerate
@item they occur in the template
@item they are bound by X/\P , setof, or bagof
@end enumerate
2008-05-15 14:41:48 +01:00
2010-04-20 23:06:41 +01:00
@code{ free_ variables(Generator, Template, OldList, NewList)} finds this set, using OldList as an accumulator.
@end table
2008-05-15 14:41:48 +01:00
2010-04-20 23:06:41 +01:00
The original author of this code was Richard O'Keefe. Jan Wielemaker
made some SWI-Prolog enhancements, sponsored by SecuritEase,
http://www.securitease.com. The code is public domain (from DEC10 library).
@c To be done
@c - Distinguish between control-structures and data terms.
@c - Exploit our built-in term_ variables/2 at some places?
2008-05-15 14:41:48 +01:00
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
@node Apply, Association Lists, Aggregate, Library
@section Apply Macros
@cindex apply
2001-08-09 19:00:45 +01:00
2010-04-20 23:06:41 +01:00
This library provides a SWI-compatible set of utilities for applying a
predicate to all elements of a list. The library just forwards
definitions from the @code{ maplist} library.
2001-08-09 19:00:45 +01:00
2006-06-02 05:23:09 +01:00
2010-04-20 23:06:41 +01:00
@node Association Lists, AVL Trees, Apply, Library
2001-04-09 20:54:03 +01:00
@section Association Lists
@cindex association list
The following association list manipulation predicates are available
2006-04-10 20:24:52 +01:00
once included with the @code{ use_ module(library(assoc))} command. The
original library used Richard O'Keefe's implementation, on top of
unbalanced binary trees. The current code utilises code from the
red-black trees library and emulates the SICStus Prolog interface.
2001-04-09 20:54:03 +01:00
@table @code
@item assoc_ to_ list(+@var{ Assoc} ,?@var{ List} )
@findex assoc_ to_ list/2
@syindex assoc_ to_ list/2
@cnindex assoc_ to_ list/2
Given an association list @var{ Assoc} unify @var{ List} with a list of
the form @var{ Key-Val} , where the elements @var{ Key} are in ascending
order.
2006-04-10 20:24:52 +01:00
@item del_ assoc(+@var{ Key} , +@var{ Assoc} , ?@var{ Val} , ?@var{ NewAssoc} )
@findex del_ assoc/4
@syindex del_ assoc/4
@cnindex del_ assoc/4
Succeeds if @var{ NewAssoc} is an association list, obtained by removing
the element with @var{ Key} and @var{ Val} from the list @var{ Assoc} .
@item del_ max_ assoc(+@var{ Assoc} , ?@var{ Key} , ?@var{ Val} , ?@var{ NewAssoc} )
@findex del_ max_ assoc/4
@syindex del_ max_ assoc/4
@cnindex del_ max_ assoc/4
Succeeds if @var{ NewAssoc} is an association list, obtained by removing
the largest element of the list, with @var{ Key} and @var{ Val} from the
list @var{ Assoc} .
@item del_ min_ assoc(+@var{ Assoc} , ?@var{ Key} , ?@var{ Val} , ?@var{ NewAssoc} )
@findex del_ min_ assoc/4
@syindex del_ min_ assoc/4
@cnindex del_ min_ assoc/4
Succeeds if @var{ NewAssoc} is an association list, obtained by removing
the smallest element of the list, with @var{ Key} and @var{ Val}
from the list @var{ Assoc} .
2001-04-09 20:54:03 +01:00
@item empty_ assoc(+@var{ Assoc} )
@findex empty_ assoc/1
@syindex empty_ assoc/1
@cnindex empty_ assoc/1
Succeeds if association list @var{ Assoc} is empty.
@item gen_ assoc(+@var{ Assoc} ,?@var{ Key} ,?@var{ Value} )
@findex gen_ assoc/3
@syindex gen_ assoc/3
@cnindex gen_ assoc/3
Given the association list @var{ Assoc} , unify @var{ Key} and @var{ Value}
with two associated elements. It can be used to enumerate all elements
in the association list.
@item get_ assoc(+@var{ Key} ,+@var{ Assoc} ,?@var{ Value} )
2006-04-10 20:24:52 +01:00
@findex get_ next_ assoc/4
@syindex get_ next_ assoc/4
@cnindex get_ next_ assoc/4
2001-04-09 20:54:03 +01:00
If @var{ Key} is one of the elements in the association list @var{ Assoc} ,
return the associated value.
@item get_ assoc(+@var{ Key} ,+@var{ Assoc} ,?@var{ Value} ,+@var{ NAssoc} ,?@var{ NValue} )
@findex get_ assoc/5
@syindex get_ assoc/5
@cnindex get_ assoc/5
If @var{ Key} is one of the elements in the association list @var{ Assoc} ,
return the associated value @var{ Value} and a new association list
@var{ NAssoc} where @var{ Key} is associated with @var{ NValue} .
2006-04-10 20:24:52 +01:00
@item get_ prev_ assoc(+@var{ Key} ,+@var{ Assoc} ,?@var{ Next} ,?@var{ Value} )
@findex get_ prev_ assoc/4
@syindex get_ prev_ assoc/4
@cnindex get_ prev_ assoc/4
If @var{ Key} is one of the elements in the association list @var{ Assoc} ,
return the previous key, @var{ Next} , and its value, @var{ Value} .
@item get_ next_ assoc(+@var{ Key} ,+@var{ Assoc} ,?@var{ Next} ,?@var{ Value} )
@findex get_ assoc/3
@syindex get_ assoc/3
@cnindex get_ assoc/3
If @var{ Key} is one of the elements in the association list @var{ Assoc} ,
return the next key, @var{ Next} , and its value, @var{ Value} .
@item is_ assoc(+@var{ Assoc} )
@findex is_ assoc/1
@syindex is_ assoc/1
@cnindex is_ assoc/1
Succeeds if @var{ Assoc} is an association list, that is, if it is a
red-black tree.
2001-04-09 20:54:03 +01:00
@item list_ to_ assoc(+@var{ List} ,?@var{ Assoc} )
@findex list_ to_ assoc/2
@syindex list_ to_ assoc/2
@cnindex list_ to_ assoc/2
Given a list @var{ List} such that each element of @var{ List} is of the
form @var{ Key-Val} , and all the @var{ Keys} are unique, @var{ Assoc} is
the corresponding association list.
2006-04-10 20:24:52 +01:00
@item map_ assoc(+@var{ Pred} ,+@var{ Assoc} )
@findex map_ assoc/2
@syindex map_ assoc/2
@cnindex map_ assoc/2
Succeeds if the unary predicate name @var{ Pred} (@var{ Val} ) holds for every
element in the association list.
2001-04-09 20:54:03 +01:00
@item map_ assoc(+@var{ Pred} ,+@var{ Assoc} ,?@var{ New} )
@findex map_ assoc/3
@syindex map_ assoc/3
@cnindex map_ assoc/3
Given the binary predicate name @var{ Pred} and the association list
@var{ Assoc} , @var{ New} in an association list with keys in @var{ Assoc} ,
and such that if @var{ Key-Val} is in @var{ Assoc} , and @var{ Key-Ans} is in
@var{ New} , then @var{ Pred} (@var{ Val} ,@var{ Ans} ) holds.
2006-04-10 20:24:52 +01:00
@item max_ assoc(+@var{ Assoc} ,-@var{ Key} ,?@var{ Value} )
@findex max_ assoc/3
@syindex max_ assoc/3
@cnindex max_ assoc/3
Given the association list
@var{ Assoc} , @var{ Key} in the largest key in the list, and @var{ Value}
the associated value.
@item min_ assoc(+@var{ Assoc} ,-@var{ Key} ,?@var{ Value} )
@findex min_ assoc/3
@syindex min_ assoc/3
@cnindex min_ assoc/3
Given the association list
@var{ Assoc} , @var{ Key} in the smallest key in the list, and @var{ Value}
the associated value.
2001-04-09 20:54:03 +01:00
@item ord_ list_ to_ assoc(+@var{ List} ,?@var{ Assoc} )
@findex ord_ list_ to_ assoc/2
@syindex ord_ list_ to_ assoc/2
@cnindex ord_ list_ to_ assoc/2
Given an ordered list @var{ List} such that each element of @var{ List} is
of the form @var{ Key-Val} , and all the @var{ Keys} are unique, @var{ Assoc} is
the corresponding association list.
@item put_ assoc(+@var{ Key} ,+@var{ Assoc} ,+@var{ Val} ,+@var{ New} )
@findex put_ assoc/4
@syindex put_ assoc/4
@cnindex put_ assoc/4
The association list @var{ New} includes and element of association
@var{ key} with @var{ Val} , and all elements of @var{ Assoc} that did not
have key @var{ Key} .
@end table
@node AVL Trees, Heaps, Association Lists, Library
@section AVL Trees
@cindex AVL trees
AVL trees are balanced search binary trees. They are named after their
inventors, Adelson-Velskii and Landis, and they were the first
dynamically balanced trees to be proposed. The YAP AVL tree manipulation
predicates library uses code originally written by Martin van Emdem and
published in the Logic Programming Newsletter, Autumn 1981. A bug in
this code was fixed by Philip Vasey, in the Logic Programming
Newsletter, Summer 1982. The library currently only includes routines to
2002-06-18 05:23:15 +01:00
insert and lookup elements in the tree. Please try red-black trees if
you need deletion.
2001-04-09 20:54:03 +01:00
@table @code
2006-10-19 16:09:03 +01:00
@item avl_ new(+@var{ T} )
@findex avl_ new/1
@snindex avl_ new/1
@cnindex avl_ new/1
Create a new tree.
@item avl_ insert(+@var{ Key} ,?@var{ Value} ,+@var{ T0} ,-@var{ TF} )
2001-04-09 20:54:03 +01:00
@findex avl_ insert/4
@snindex avl_ insert/4
@cnindex avl_ insert/4
Add an element with key @var{ Key} and @var{ Value} to the AVL tree
@var{ T0} creating a new AVL tree @var{ TF} . Duplicated elements are
allowed.
@item avl_ lookup(+@var{ Key} ,-@var{ Value} ,+@var{ T} )
@findex avl_ lookup/3
@snindex avl_ lookup/3
@cnindex avl_ lookup/3
Lookup an element with key @var{ Key} in the AVL tree
@var{ T} , returning the value @var{ Value} .
@end table
@node Heaps, Lists, AVL Trees, Library
@section Heaps
@cindex heap
A heap is a labelled binary tree where the key of each node is less than
or equal to the keys of its sons. The point of a heap is that we can
keep on adding new elements to the heap and we can keep on taking out
the minimum element. If there are N elements total, the total time is
O(NlgN). If you know all the elements in advance, you are better off
doing a merge-sort, but this file is for when you want to do say a
best-first search, and have no idea when you start how many elements
there will be, let alone what they are.
The following heap manipulation routines are available once included
with the @code{ use_ module(library(heaps))} command.
@table @code
@item add_ to_ heap(+@var{ Heap} ,+@var{ key} ,+@var{ Datum} ,-@var{ NewHeap} )
2001-06-12 15:07:59 +01:00
@findex add_ to_ heap/4
@syindex add_ to_ heap/4
@cnindex add_ to_ heap/4
2001-04-09 20:54:03 +01:00
Inserts the new @var{ Key-Datum} pair into the heap. The insertion is not
stable, that is, if you insert several pairs with the same @var{ Key} it
is not defined which of them will come out first, and it is possible for
any of them to come out first depending on the history of the heap.
2002-01-08 03:47:18 +00:00
@item empty_ heap(?@var{ Heap} )
@findex empty_ heap/1
@syindex empty_ heap/1
@cnindex empty_ heap/1
Succeeds if @var{ Heap} is an empty heap.
2001-04-09 20:54:03 +01:00
@item get_ from_ heap(+@var{ Heap} ,-@var{ key} ,-@var{ Datum} ,-@var{ Heap} )
2001-06-12 15:07:59 +01:00
@findex get_ from_ heap/4
@syindex get_ from_ heap/4
@cnindex get_ from_ heap/4
2001-04-09 20:54:03 +01:00
Returns the @var{ Key-Datum} pair in @var{ OldHeap} with the smallest
@var{ Key} , and also a @var{ Heap} which is the @var{ OldHeap} with that
pair deleted.
@item heap_ size(+@var{ Heap} , -@var{ Size} )
2001-06-12 15:07:59 +01:00
@findex heap_ size/2
@syindex heap_ size/2
@cnindex heap_ size/2
2001-04-09 20:54:03 +01:00
Reports the number of elements currently in the heap.
@item heap_ to_ list(+@var{ Heap} , -@var{ List} )
2001-06-12 15:07:59 +01:00
@findex heap_ to_ list/2
@syindex heap_ to_ list/2
@cnindex heap_ to_ list/2
2001-04-09 20:54:03 +01:00
Returns the current set of @var{ Key-Datum} pairs in the @var{ Heap} as a
@var{ List} , sorted into ascending order of @var{ Keys} .
@item list_ to_ heap(+@var{ List} , -@var{ Heap} )
2001-06-12 15:07:59 +01:00
@findex list_ to_ heap/2
@syindex list_ to_ heap/2
@cnindex list_ to_ heap/2
2001-04-09 20:54:03 +01:00
Takes a list of @var{ Key-Datum} pairs (such as keysort could be used to sort)
and forms them into a heap.
@item min_ of_ heap(+@var{ Heap} , -@var{ Key} , -@var{ Datum} )
@findex min_ of_ heap/3
@syindex min_ of_ heap/3
@cnindex min_ of_ heap/3
Returns the Key-Datum pair at the top of the heap (which is of course
the pair with the smallest Key), but does not remove it from the heap.
@item min_ of_ heap(+@var{ Heap} , -@var{ Key1} , -@var{ Datum1} ,
-@var{ Key2} , -@var{ Datum2} )
@findex min_ of_ heap/5
@syindex min_ of_ heap/5
@cnindex min_ of_ heap/5
Returns the smallest (Key1) and second smallest (Key2) pairs in the
heap, without deleting them.
@end table
2008-09-01 02:41:09 +01:00
@node Lists, LineUtilities, Heaps, Library
2001-04-09 20:54:03 +01:00
@section List Manipulation
@cindex list manipulation
The following list manipulation routines are available once included
with the @code{ use_ module(library(lists))} command.
@table @code
@item append(?@var{ Prefix} ,?@var{ Suffix} ,?@var{ Combined} )
@findex append/3
@syindex append/3
@cnindex append/3
True when all three arguments are lists, and the members of
@var{ Combined} are the members of @var{ Prefix} followed by the members of @var{ Suffix} .
It may be used to form @var{ Combined} from a given @var{ Prefix} , @var{ Suffix} or to take
a given @var{ Combined} apart.
2008-02-12 17:03:59 +00:00
@item append(?@var{ Lists} ,?@var{ Combined} )
@findex append/2
@syindex append/2
@cnindex append/2
Holds if the lists of @var{ Lists} can be concatenated as a
@var{ Combined} list.
2001-04-09 20:54:03 +01:00
@item delete(+@var{ List} , ?@var{ Element} , ?@var{ Residue} )
@findex delete/3
@syindex delete/3
@cnindex delete/3
True when @var{ List} is a list, in which @var{ Element} may or may not
occur, and @var{ Residue} is a copy of @var{ List} with all elements
identical to @var{ Element} deleted.
2002-09-17 17:43:00 +01:00
@item flatten(+@var{ List} , ?@var{ FlattenedList} )
@findex flatten/2
@syindex flatten/2
@cnindex flatten/2
Flatten a list of lists @var{ List} into a single list
@var{ FlattenedList} .
@example
?- flatten([[1],[2,3],[4,[5,6],7,8]],L).
L = [1,2,3,4,5,6,7,8] ? ;
no
@end example
2001-04-09 20:54:03 +01:00
@item last(+@var{ List} ,?@var{ Last} )
@findex last/2
@syindex last/2
@cnindex last/2
True when @var{ List} is a list and @var{ Last} is identical to its last element.
2001-04-17 22:07:41 +01:00
@item list_ concat(+@var{ Lists} ,?@var{ List} )
@findex list_ concat/2
@snindex list_ concat/2
@cnindex list_ concat/2
True when @var{ Lists} is a list of lists and @var{ List} is the
concatenation of @var{ Lists} .
2001-04-09 20:54:03 +01:00
@item member(?@var{ Element} , ?@var{ Set} )
@findex member/2
@syindex member/2
@cnindex member/2
True when @var{ Set} is a list, and @var{ Element} occurs in it. It may be used
to test for an element or to enumerate all the elements by backtracking.
@item memberchk(+@var{ Element} , +@var{ Set} )
@findex memberchk/2
@syindex memberchk/2
@cnindex memberchk/2
As @code{ member/2} , but may only be used to test whether a known
@var{ Element} occurs in a known Set. In return for this limited use, it
is more efficient when it is applicable.
2001-11-19 23:19:23 +00:00
@item nth0(?@var{ N} , ?@var{ List} , ?@var{ Elem} )
2008-07-23 00:34:50 +01:00
@findex nth0/3
@syindex nth0/3
@cnindex nth0/3
2001-04-09 20:54:03 +01:00
True when @var{ Elem} is the Nth member of @var{ List} ,
counting the first as element 0. (That is, throw away the first
N elements and unify @var{ Elem} with the next.) It can only be used to
select a particular element given the list and index. For that
task it is more efficient than @code{ member/2}
2008-07-23 00:34:50 +01:00
@item nth1(?@var{ N} , ?@var{ List} , ?@var{ Elem} )
@findex nth1/3
@syindex nth1/3
@cnindex nth1/3
2001-04-09 20:54:03 +01:00
The same as @code{ nth0/3} , except that it counts from
1, that is @code{ nth(1, [H|_ ], H)} .
2008-07-23 00:34:50 +01:00
@item nth(?@var{ N} , ?@var{ List} , ?@var{ Elem} )
@findex nth/3
@syindex nth/3
@cnindex nth/3
The same as @code{ nth1/3} .
2001-08-27 16:27:29 +01:00
@item nth0(?@var{ N} , ?@var{ List} , ?@var{ Elem} , ?@var{ Rest} )
2001-04-09 20:54:03 +01:00
@findex nth0/4
@syindex nth0/4
@cnindex nth0/4
Unifies @var{ Elem} with the Nth element of @var{ List} ,
counting from 0, and @var{ Rest} with the other elements. It can be used
to select the Nth element of @var{ List} (yielding @var{ Elem} and @var{ Rest} ), or to
insert @var{ Elem} before the Nth (counting from 1) element of @var{ Rest} , when
it yields @var{ List} , e.g. @code{ nth0(2, List, c, [a,b,d,e])} unifies List with
2001-08-27 16:27:29 +01:00
@code{ [a,b,c,d,e]} . @code{ nth/4} is the same except that it counts from 1. @code{ nth0/4}
can be used to insert @var{ Elem} after the Nth element of @var{ Rest} .
2008-07-23 00:34:50 +01:00
@item nth1(?@var{ N} , ?@var{ List} , ?@var{ Elem} , ?@var{ Rest} )
@findex nth1/4
@syindex nth1/4
@cnindex nth1/4
2001-08-27 16:27:29 +01:00
Unifies @var{ Elem} with the Nth element of @var{ List} , counting from 1,
and @var{ Rest} with the other elements. It can be used to select the
Nth element of @var{ List} (yielding @var{ Elem} and @var{ Rest} ), or to
insert @var{ Elem} before the Nth (counting from 1) element of
2009-10-23 23:21:42 +01:00
@var{ Rest} , when it yields @var{ List} , e.g. @code{ nth(3, List, c,
2001-08-27 16:27:29 +01:00
[a,b,d,e])} unifies List with @code{ [a,b,c,d,e]} . @code{ nth/4}
can be used to insert @var{ Elem} after the Nth element of @var{ Rest} .
2001-04-09 20:54:03 +01:00
2008-07-23 00:34:50 +01:00
@item nth(?@var{ N} , ?@var{ List} , ?@var{ Elem} , ?@var{ Rest} )
@findex nth/4
@syindex nth/4
@cnindex nth/4
Same as @code{ nth1/4} .
2001-04-09 20:54:03 +01:00
@item permutation(+@var{ List} ,?@var{ Perm} )
@findex permutation/2
@syindex permutation/2
@cnindex permutation/2
True when @var{ List} and @var{ Perm} are permutations of each other.
2002-11-18 17:25:22 +00:00
@item remove_ duplicates(+@var{ List} , ?@var{ Pruned} )
@findex remove_ duplicates/2
@syindex remove_ duplicates/2
@cnindex remove_ duplicates/2
2001-04-09 20:54:03 +01:00
Removes duplicated elements from @var{ List} . Beware: if the @var{ List} has
non-ground elements, the result may surprise you.
@item reverse(+@var{ List} , ?@var{ Reversed} )
@findex reverse/2
@syindex reverse/2
@cnindex reverse/2
True when @var{ List} and @var{ Reversed} are lists with the same elements
but in opposite orders.
@item same_ length(?@var{ List1} , ?@var{ List2} )
@findex same_ length/2
@syindex same_ length/2
@cnindex same_ length/2
True when @var{ List1} and @var{ List2} are both lists and have the same number
of elements. No relation between the values of their elements is
implied.
Modes @code{ same_ length(-,+)} and @code{ same_ length(+,-)} generate either list given
the other; mode @code{ same_ length(-,-)} generates two lists of the same length,
in which case the arguments will be bound to lists of length 0, 1, 2, ...
2008-07-23 00:34:50 +01:00
@item select(?@var{ Element} , ?@var{ List} , ?@var{ Residue} )
2001-04-09 20:54:03 +01:00
@findex select/3
@syindex select/3
@cnindex select/3
2008-07-23 00:34:50 +01:00
True when @var{ Set} is a list, @var{ Element} occurs in @var{ List} , and
@var{ Residue} is everything in @var{ List} except @var{ Element} (things
stay in the same order).
@item selectchk(?@var{ Element} , ?@var{ List} , ?@var{ Residue} )
@findex selectchk/3
@snindex selectchk/3
@cnindex selectchk/3
Semi-deterministic selection from a list. Steadfast: defines as
@example
selectchk(Elem, List, Residue) :-
select(Elem, List, Rest0), !,
Rest = Rest0.
@end example
2001-04-09 20:54:03 +01:00
@item sublist(?@var{ Sublist} , ?@var{ List} )
@findex sublist/2
@syindex sublist/2
@cnindex sublist/2
True when both @code{ append(_ ,Sublist,S)} and @code{ append(S,_ ,List)} hold.
@item suffix(?@var{ Suffix} , ?@var{ List} )
@findex suffix/2
@syindex suffix/2
@cnindex suffix/2
Holds when @code{ append(_ ,Suffix,List)} holds.
2001-04-26 15:44:43 +01:00
@item sum_ list(?@var{ Numbers} , ?@var{ Total} )
@findex sum_ list/2
2005-01-29 04:43:14 +00:00
@syindex sum_ list/2
2001-04-26 15:44:43 +01:00
@cnindex sum_ list/2
2005-01-29 04:43:14 +00:00
True when @var{ Numbers} is a list of numbers, and @var{ Total} is their sum.
2001-04-26 15:44:43 +01:00
2008-11-03 16:00:22 +00:00
@item sum_ list(?@var{ Numbers} , +@var{ SoFar} , ?@var{ Total} )
@findex sum_ list/3
@syindex sum_ list/3
@cnindex sum_ list/3
True when @var{ Numbers} is a list of numbers, and @var{ Total} is the sum of their total plus @var{ SoFar} .
2001-04-09 20:54:03 +01:00
@item sumlist(?@var{ Numbers} , ?@var{ Total} )
@findex sumlist/2
@syindex sumlist/2
@cnindex sumlist/2
2001-04-26 15:44:43 +01:00
True when @var{ Numbers} is a list of integers, and @var{ Total} is their
sum. The same as @code{ sum_ list/2} , please do use @code{ sum_ list/2}
instead.
2001-04-09 20:54:03 +01:00
2005-01-29 04:43:14 +00:00
@item max_ list(?@var{ Numbers} , ?@var{ Max} )
@findex max_ list/2
@syindex max_ list/2
@cnindex max_ list/2
True when @var{ Numbers} is a list of numbers, and @var{ Max} is the maximum.
@item min_ list(?@var{ Numbers} , ?@var{ Min} )
@findex min_ list/2
@syindex min_ list/2
@cnindex min_ list/2
True when @var{ Numbers} is a list of numbers, and @var{ Min} is the minimum.
2008-07-23 00:34:50 +01:00
@item numlist(+@var{ Low} , +@var{ High} , +@var{ List} )
@findex numlist/3
@syindex numlist/3
@cnindex numlist/3
2009-04-25 16:59:23 +01:00
If @var{ Low} and @var{ High} are integers with @var{ Low} =<
2008-07-23 00:34:50 +01:00
@var{ High} , unify @var{ List} to a list @code{ [Low, Low+1, ...High]} . See
also @code{ between/3} .
2010-04-21 00:15:11 +01:00
@item intersection(+@var{ Set1} , +@var{ Set2} , +@var{ Set3} )
@findex intersection/3
@syindex intersection/3
@cnindex intersection/3
Succeeds if @var{ Set3} unifies with the intersection of @var{ Set1} and
@var{ Set2} . @var{ Set1} and @var{ Set2} are lists without duplicates. They
need not be ordered.
2001-04-09 20:54:03 +01:00
2011-01-04 03:55:42 +00:00
@item subtract(+@var{ Set} , +@var{ Delete} , ?@var{ Result} )
@findex subtract/3
@syindex subtract/3
@cnindex subtract/3
Delete all elements from @var{ Set} that occur in @var{ Delete} (a set)
and unify the result with @var{ Result} . Deletion is based on
unification using @code{ memberchk/2} . The complexity is
@code{ |Delete|*|Set|} .
See @code{ ord_ subtract/3} .
@end table
2010-04-20 23:06:41 +01:00
@node LineUtilities, MapList, Lists, Library
2008-09-01 02:41:09 +01:00
@section Line Manipulation Utilities
@cindex Line Utilities Library
This package provides a set of useful predicates to manipulate
sequences of characters codes, usually first read in as a line. It is
2010-10-04 19:35:22 +01:00
available by loading the library @code{ library(lineutils)} .
2008-09-01 02:41:09 +01:00
@table @code
@item search_ for(+@var{ Char} ,+@var{ Line} )
@findex search_ for/2
@snindex search_ for/2
@cnindex search_ for/2
Search for a character @var{ Char} in the list of codes @var{ Line} .
@item search_ for(+@var{ Char} ,+@var{ Line} )
@findex search_ for/2
@snindex search_ for/2
@cnindex search_ for/2
Search for a character @var{ Char} in the list of codes @var{ Line} .
@item search_ for(+@var{ Char} ,+@var{ Line} ,-@var{ RestOfine} )
@findex search_ for/2
@snindex search_ for/2
@cnindex search_ for/2
Search for a character @var{ Char} in the list of codes @var{ Line} ,
@var{ RestOfLine} has the line to the right.
@item scan_ natural(?@var{ Nat} ,+@var{ Line} ,+@var{ RestOfLine} )
@findex scan_ natural/3
@snindex scan_ natural/3
@cnindex scan_ natural/3
Scan the list of codes @var{ Line} for a natural number @var{ Nat} , zero
or a positive integer, and unify @var{ RestOfLine} with the remainder
of the line.
@item scan_ integer(?@var{ Int} ,+@var{ Line} ,+@var{ RestOfLine} )
@findex scan_ integer/3
@snindex scan_ integer/3
@cnindex scan_ integer/3
Scan the list of codes @var{ Line} for an integer @var{ Nat} , either a
positive, zero, or negative integer, and unify @var{ RestOfLine} with
the remainder of the line.
@item split(+@var{ Line} ,+@var{ Separators} ,-@var{ Split} )
@findex split/3
@snindex split/3
@cnindex split/3
Unify @var{ Words} with a set of strings obtained from @var{ Line} by
using the character codes in @var{ Separators} as separators. As an
example, consider:
@example
?- split("Hello * I am free"," *",S).
S = ["Hello","I","am","free"] ?
no
@end example
2009-07-15 23:30:27 +01:00
@item split(+@var{ Line} ,-@var{ Split} )
@findex split/2
@snindex split/2
@cnindex split/2
Unify @var{ Words} with a set of strings obtained from @var{ Line} by
using the blank characters as separators.
@item fields(+@var{ Line} ,+@var{ Separators} ,-@var{ Split} )
@findex fields/3
@snindex fields/3
@cnindex fields/3
Unify @var{ Words} with a set of strings obtained from @var{ Line} by
using the character codes in @var{ Separators} as separators for
fields. If two separators occur in a row, the field is considered
empty. As an example, consider:
@example
?- fields("Hello I am free"," *",S).
S = ["Hello","","I","am","","free"] ?
@end example
@item fields(+@var{ Line} ,-@var{ Split} )
@findex fields/2
@snindex fields/2
@cnindex fields/2
Unify @var{ Words} with a set of strings obtained from @var{ Line} by
using the blank characters as field separators.
2008-09-01 02:41:09 +01:00
@item glue(+@var{ Words} ,+@var{ Separator} ,-@var{ Line} )
@findex glue/3
@snindex glue/3
@cnindex glue/3
Unify @var{ Line} with string obtained by glueing @var{ Words} with
the character code @var{ Separator} .
@item copy_ line(+@var{ StreamInput} ,+@var{ StreamOutput} )
@findex copy_ line/2
@snindex copy_ line/2
@cnindex copy_ line/2
Copy a line from @var{ StreamInput} to @var{ StreamOutput} .
@item copy_ line(+@var{ StreamInput} ,+@var{ StreamOutput} )
@findex copy_ line/2
@snindex copy_ line/2
@cnindex copy_ line/2
Copy a line from @var{ StreamInput} to @var{ StreamOutput} .
@item process(+@var{ StreamInp} , +@var{ Goal} )
@findex process/2
@snindex process/2
@cnindex process/2
For every line @var{ LineIn} in stream @var{ StreamInp} , call
@code{ call(Goal,LineIn)} .
@item filter(+@var{ StreamInp} , +@var{ StreamOut} , +@var{ Goal} )
@findex filter/3
@snindex filter/3
@cnindex filter/3
For every line @var{ LineIn} in stream @var{ StreamInp} , execute
@code{ call(Goal,LineIn,LineOut)} , and output @var{ LineOut} to
stream @var{ StreamOut} .
@item file_ filter(+@var{ FileIn} , +@var{ FileOut} , +@var{ Goal} )
2010-04-18 21:48:00 +01:00
@findex file_ filter/3
@snindex file_ filter/3
@cnindex file_ filter/3
2008-09-01 02:41:09 +01:00
For every line @var{ LineIn} in file @var{ FileIn} , execute
@code{ call(Goal,LineIn,LineOut)} , and output @var{ LineOut} to file
@var{ FileOut} .
2010-04-18 21:48:00 +01:00
@item file_ filter(+@var{ FileIn} , +@var{ FileOut} , +@var{ Goal} ,
+@var{ FormatCommand} , +@var{ Arguments} )
@findex file_ filter_ with_ init/5
@snindex file_ filter_ with_ init/5
@cnindex file_ filter_ with_ init/5
Same as @code{ file_ filter/3} , but before starting the filter execute
@code{ format/3} on the output stream, using @var{ FormatCommand} and
@var{ Arguments} .
2008-09-01 02:41:09 +01:00
@end table
2010-04-20 23:06:41 +01:00
@node MapList, matrix, LineUtilities, Library
@section Maplist
@cindex macros
This library provides a set of utilities for applying a predicate to
all elements of a list or to all sub-terms of a term. They allow to
easily perform the most common do-loop constructs in Prolog. To avoid
performance degradation due to @code{ apply/2} , each call creates an
equivalent Prolog program, without meta-calls, which is executed by
the Prolog engine instead. Note that if the equivalent Prolog program
already exists, it will be simply used. The library is based on code
by Joachim Schimpf and on code from SWI-Prolog.
The following routines are available once included with the
@code{ use_ module(library(apply_ macros))} command.
@table @code
@item maplist(+@var{ Pred} , ?@var{ ListIn} , ?@var{ ListOut} )
@findex maplist/3
@snindex maplist/3
@cnindex maplist/3
Creates @var{ ListOut} by applying the predicate @var{ Pred} to all
elements of @var{ ListIn} .
@item maplist(+@var{ Pred} , ?@var{ ListIn} )
@findex maplist/3
@snindex maplist/3
@cnindex maplist/3
Creates @var{ ListOut} by applying the predicate @var{ Pred} to all
elements of @var{ ListIn} .
@item maplist(+@var{ Pred} , ?@var{ L1} , ?@var{ L2} , ?@var{ L3} )
@findex maplist/4
@snindex maplist/4
@cnindex maplist/4
@var{ L1} , @var{ L2} , and @var{ L3} are such that
@code{ call(@var{ Pred} ,@var{ A1} ,@var{ A2} ,@var{ A3} )} holds for every
corresponding element in lists @var{ L1} , @var{ L2} , and @var{ L3} .
@item maplist(+@var{ Pred} , ?@var{ L1} , ?@var{ L2} , ?@var{ L3} , ?@var{ L4} )
@findex maplist/5
@snindex maplist/5
@cnindex maplist/5
@var{ L1} , @var{ L2} , @var{ L3} , and @var{ L4} are such that
@code{ call(@var{ Pred} ,@var{ A1} ,@var{ A2} ,@var{ A3} ,@var{ A4} )} holds
for every corresponding element in lists @var{ L1} , @var{ L2} , @var{ L3} , and
@var{ L4} .
@item checklist(+@var{ Pred} , +@var{ List} )
@findex checklist/2
@snindex checklist/2
@cnindex checklist/2
Succeeds if the predicate @var{ Pred} succeeds on all elements of @var{ List} .
@item selectlist(+@var{ Pred} , +@var{ ListIn} , ?@var{ ListOut} )
@findex selectlist/3
@snindex selectlist/3
@cnindex selectlist/3
Creates @var{ ListOut} of all list elements of @var{ ListIn} that pass a given test
@item convlist(+@var{ Pred} , +@var{ ListIn} , ?@var{ ListOut} )
@findex convlist/3
@snindex convlist/3
@cnindex convlist/3
A combination of @code{ maplist} and @code{ selectlist} : creates @var{ ListOut} by
applying the predicate @var{ Pred} to all list elements on which
@var{ Pred} succeeds
@item sumlist(+@var{ Pred} , +@var{ List} , ?@var{ AccIn} , ?@var{ AccOut} )
@findex sumlist/4
@snindex sumlist/4
@cnindex sumlist/4
Calls @var{ Pred} on all elements of List and collects a result in
@var{ Accumulator} .
@item mapargs(+@var{ Pred} , ?@var{ TermIn} , ?@var{ TermOut} )
@findex mapargs/3
@snindex mapargs/3
@cnindex mapargs/3
Creates @var{ TermOut} by applying the predicate @var{ Pred} to all
arguments of @var{ TermIn}
@item sumargs(+@var{ Pred} , +@var{ Term} , ?@var{ AccIn} , ?@var{ AccOut} )
@findex sumargs/4
@snindex sumargs/4
@cnindex sumargs/4
Calls the predicate @var{ Pred} on all arguments of @var{ Term} and
collects a result in @var{ Accumulator}
@item mapnodes(+@var{ Pred} , +@var{ TermIn} , ?@var{ TermOut} )
@findex mapnodes/3
@snindex mapnodes/3
@cnindex mapnodes/3
Creates @var{ TermOut} by applying the predicate @var{ Pred}
to all sub-terms of @var{ TermIn} (depth-first and left-to-right order)
@item checknodes(+@var{ Pred} , +@var{ Term} )
@findex checknodes/3
@snindex checknodes/3
@cnindex checknodes/3
Succeeds if the predicate @var{ Pred} succeeds on all sub-terms of
@var{ Term} (depth-first and left-to-right order)
@item sumnodes(+@var{ Pred} , +@var{ Term} , ?@var{ AccIn} , ?@var{ AccOut} )
@findex sumnodes/4
@snindex sumnodes/4
@cnindex sumnodes/4
Calls the predicate @var{ Pred} on all sub-terms of @var{ Term} and
collect a result in @var{ Accumulator} (depth-first and left-to-right
order)
@item include(+@var{ Pred} , +@var{ ListIn} , ?@var{ ListOut} )
@findex include/3
@snindex include/3
@cnindex include/3
Same as @code{ selectlist/3} .
@item exclude(+@var{ Goal} , +@var{ List1} , ?@var{ List2} )
@findex exclude/3
@snindex exclude/3
@cnindex exclude/3
Filter elements for which @var{ Goal} fails. True if @var{ List2} contains
those elements @var{ Xi} of @var{ List1} for which @code{ call(Goal, Xi)} fails.
@item partition(+@var{ Pred} , +@var{ List1} , ?@var{ Included} , ?@var{ Excluded} )
@findex partition/4
@snindex partition/4
@cnindex partition/4
Filter elements of @var{ List} according to @var{ Pred} . True if
@var{ Included} contains all elements for which @code{ call(Pred, X)}
succeeds and @var{ Excluded} contains the remaining elements.
@item partition(+@var{ Pred} , +@var{ List1} , ?@var{ Lesser} , ?@var{ Equal} , ?@var{ Greater} )
@findex partition/5
@snindex partition/5
@cnindex partition/5
Filter list according to @var{ Pred} in three sets. For each element
@var{ Xi} of @var{ List} , its destination is determined by
@code{ call(Pred, Xi, Place)} , where @var{ Place} must be unified to one
of @code{ <} , @code{ =} or @code{ >} . @code{ Pred} must be deterministic.
@end table
Examples:
@example
%given
plus(X,Y,Z) :- Z is X + Y.
plus_ if_ pos(X,Y,Z) :- Y > 0, Z is X + Y.
vars(X, Y, [X|Y]) :- var(X), !.
vars(_ , Y, Y).
trans(TermIn, TermOut) :-
2010-12-07 17:50:51 +00:00
nonvar(TermIn),
2010-04-20 23:06:41 +01:00
TermIn =.. [p|Args],
2010-12-07 17:50:51 +00:00
TermOut =..[q|Args], !.
2010-04-20 23:06:41 +01:00
trans(X,X).
%success
maplist(plus(1), [1,2,3,4], [2,3,4,5]).
checklist(var, [X,Y,Z]).
selectlist(<(0), [-1,0,1], [1]).
convlist(plus_ if_ pos(1), [-1,0,1], [2]).
sumlist(plus, [1,2,3,4], 1, 11).
mapargs(number_ atom,s(1,2,3), s('1','2','3')).
2010-12-07 17:50:51 +00:00
sumargs(vars, s(1,X,2,Y), [], [Y,X]).m
apnodes(trans, p(a,p(b,a),c), q(a,q(b,a),c)).
2010-04-20 23:06:41 +01:00
checknodes(\= =(T), p(X,p(Y,X),Z)).
sumnodes(vars, [c(X), p(X,Y), q(Y)], [], [Y,Y,X,X]).
% another one
maplist(mapargs(number_ atom),[c(1),s(1,2,3)],[c('1'),s('1','2','3')]).
@end example
@node matrix, MATLAB, MapList, Library
2007-10-28 01:54:09 +01:00
@section Matrix Library
@cindex Matrix Library
2007-07-03 16:24:20 +01:00
This package provides a fast implementation of multi-dimensional
matrices of integers and floats. In contrast to dynamic arrays, these
matrices are multi-dimensional and compact. In contrast to static
arrays. these arrays are allocated in the stack. Matrices are available
by loading the library @code{ library(matrix)} .
Notice that the functionality in this library is only partial. Please
2010-05-03 14:26:56 +01:00
contact the YAP maintainers if you require extra functionality.
2007-07-03 16:24:20 +01:00
@table @code
@item matrix_ new(+@var{ Type} ,+@var{ Dims} ,-@var{ Matrix} )
@findex matrix_ new/3
@snindex matrix_ new/3
@cnindex matrix_ new/3
Create a new matrix @var{ Matrix} of type @var{ Type} , which may be one of
@code{ ints} or @code{ floats} , and with a list of dimensions @var{ Dims} .
The matrix will be initialised to zeros.
@example
?- matrix_ new(ints,[2,3],Matrix).
Matrix = 0
@end example
Notice that currently YAP will always write a matrix as @code{ 0} .
@item matrix_ new(+@var{ Type} ,+@var{ Dims} ,+@var{ List} ,-@var{ Matrix} )
@findex matrix_ new/4
@snindex matrix_ new/4
@cnindex matrix_ new/4
Create a new matrix @var{ Matrix} of type @var{ Type} , which may be one of
@code{ ints} or @code{ floats} , with dimensions @var{ Dims} , and
initialised from list @var{ List} .
@item matrix_ new_ set(?@var{ Dims} ,+@var{ OldMatrix} ,+@var{ Value} ,-@var{ NewMatrix} )
@findex matrix_ new_ set/4
@snindex matrix_ new_ set/4
@cnindex matrix_ new_ set/4
Create a new matrix @var{ NewMatrix} of type @var{ Type} , with dimensions
@var{ Dims} . The elements of @var{ NewMatrix} are set to @var{ Value} .
@item matrix_ dims(+@var{ Matrix} ,-@var{ Dims} )
@findex matrix_ dims/2
@snindex matrix_ dims/2
@cnindex matrix_ dims/2
Unify @var{ Dims} with a list of dimensions for @var{ Matrix} .
@item matrix_ ndims(+@var{ Matrix} ,-@var{ Dims} )
@findex matrix_ ndims/2
@snindex matrix_ ndims/2
@cnindex matrix_ ndims/2
Unify @var{ NDims} with the number of dimensions for @var{ Matrix} .
@item matrix_ size(+@var{ Matrix} ,-@var{ NElems} )
@findex matrix_ size/2
@snindex matrix_ size/2
@cnindex matrix_ size/2
Unify @var{ NElems} with the number of elements for @var{ Matrix} .
@item matrix_ type(+@var{ Matrix} ,-@var{ Type} )
@findex matrix_ type/2
@snindex matrix_ type/2
@cnindex matrix_ type/2
Unify @var{ NElems} with the type of the elements in @var{ Matrix} .
@item matrix_ to_ list(+@var{ Matrix} ,-@var{ Elems} )
@findex matrix_ to_ list/2
@snindex matrix_ to_ list/2
@cnindex matrix_ to_ list/2
Unify @var{ Elems} with the list including all the elements in @var{ Matrix} .
@item matrix_ get(+@var{ Matrix} ,+@var{ Position} ,-@var{ Elem} )
@findex matrix_ get/3
@snindex matrix_ get/3
@cnindex matrix_ get/3
Unify @var{ Elem} with the element of @var{ Matrix} at position
@var{ Position} .
@item matrix_ set(+@var{ Matrix} ,+@var{ Position} ,+@var{ Elem} )
@findex matrix_ set/3
@snindex matrix_ set/3
@cnindex matrix_ set/3
Set the element of @var{ Matrix} at position
@var{ Position} to @var{ Elem} .
@item matrix_ set_ all(+@var{ Matrix} ,+@var{ Elem} )
@findex matrix_ set_ all/2
@snindex matrix_ set_ all/2
@cnindex matrix_ set_ all/2
Set all element of @var{ Matrix} to @var{ Elem} .
@item matrix_ add(+@var{ Matrix} ,+@var{ Position} ,+@var{ Operand} )
@findex matrix_ add/3
@snindex matrix_ add/3
@cnindex matrix_ add/3
Add @var{ Operand} to the element of @var{ Matrix} at position
@var{ Position} .
@item matrix_ inc(+@var{ Matrix} ,+@var{ Position} )
@findex matrix_ inc/2
@snindex matrix_ inc/2
@cnindex matrix_ inc/2
Increment the element of @var{ Matrix} at position @var{ Position} .
@item matrix_ inc(+@var{ Matrix} ,+@var{ Position} ,-@var{ Element} )
@findex matrix_ inc/3
@snindex matrix_ inc/3
@cnindex matrix_ inc/3
Increment the element of @var{ Matrix} at position @var{ Position} and
unify with @var{ Element} .
@item matrix_ dec(+@var{ Matrix} ,+@var{ Position} )
@findex matrix_ dec/2
@snindex matrix_ dec/2
@cnindex matrix_ dec/2
Decrement the element of @var{ Matrix} at position @var{ Position} .
@item matrix_ dec(+@var{ Matrix} ,+@var{ Position} ,-@var{ Element} )
@findex matrix_ dec/3
@snindex matrix_ dec/3
@cnindex matrix_ dec/3
Decrement the element of @var{ Matrix} at position @var{ Position} and
unify with @var{ Element} .
@item matrix_ arg_ to_ offset(+@var{ Matrix} ,+@var{ Position} ,-@var{ Offset} )
@findex matrix_ arg_ to_ offset/3
@snindex matrix_ arg_ to_ offset/3
@cnindex matrix_ arg_ to_ offset/3
Given matrix @var{ Matrix} return what is the numerical @var{ Offset} of
the element at @var{ Position} .
@item matrix_ offset_ to_ arg(+@var{ Matrix} ,-@var{ Offset} ,+@var{ Position} )
@findex matrix_ offset_ to_ arg/3
@snindex matrix_ offset_ to_ arg/3
@cnindex matrix_ offset_ to_ arg/3
Given a position @var{ Position } for matrix @var{ Matrix} return the
corresponding numerical @var{ Offset} from the beginning of the matrix.
@item matrix_ max(+@var{ Matrix} ,+@var{ Max} )
@findex matrix_ max/2
@snindex matrix_ max/2
@cnindex matrix_ max/2
Unify @var{ Max} with the maximum in matrix @var{ Matrix} .
@item matrix_ maxarg(+@var{ Matrix} ,+@var{ Maxarg} )
@findex matrix_ maxarg/2
@snindex matrix_ maxarg/2
@cnindex matrix_ maxarg/2
Unify @var{ Max} with the position of the maximum in matrix @var{ Matrix} .
@item matrix_ min(+@var{ Matrix} ,+@var{ Min} )
@findex matrix_ min/2
@snindex matrix_ min/2
@cnindex matrix_ min/2
Unify @var{ Min} with the minimum in matrix @var{ Matrix} .
@item matrix_ minarg(+@var{ Matrix} ,+@var{ Minarg} )
@findex matrix_ minarg/2
@snindex matrix_ minarg/2
@cnindex matrix_ minarg/2
Unify @var{ Min} with the position of the minimum in matrix @var{ Matrix} .
@item matrix_ sum(+@var{ Matrix} ,+@var{ Sum} )
@findex matrix_ sum/2
@snindex matrix_ sum/2
@cnindex matrix_ sum/2
Unify @var{ Sum} with the sum of all elements in matrix @var{ Matrix} .
@c @item matrix_ add_ to_ all(+@var{ Matrix} ,+@var{ Element} )
@c @findex matrix_ add_ to_ all/2
@c @snindex matrix_ add_ to_ all/2
@c @cnindex matrix_ add_ to_ all/2
@c Add @var{ Element} to all elements of matrix @var{ Matrix} .
@item matrix_ agg_ lines(+@var{ Matrix} ,+@var{ Aggregate} )
@findex matrix_ agg_ lines/2
@snindex matrix_ agg_ lines/2
@cnindex matrix_ agg_ lines/2
If @var{ Matrix} is a n-dimensional matrix, unify @var{ Aggregate} with
the n-1 dimensional matrix where each element is obtained by adding all
Matrix elements with same last n-1 index.
@item matrix_ agg_ cols(+@var{ Matrix} ,+@var{ Aggregate} )
@findex matrix_ agg_ cols/2
@snindex matrix_ agg_ cols/2
@cnindex matrix_ agg_ cols/2
If @var{ Matrix} is a n-dimensional matrix, unify @var{ Aggregate} with
the one dimensional matrix where each element is obtained by adding all
Matrix elements with same first index.
@item matrix_ op(+@var{ Matrix1} ,+@var{ Matrix2} ,+@var{ Op} ,-@var{ Result} )
@findex matrix_ op/4
@snindex matrix_ op/4
@cnindex matrix_ op/4
@var{ Result} is the result of applying @var{ Op} to matrix @var{ Matrix1}
and @var{ Matrix2} . Currently, only addition (@code{ +} ) is supported.
@item matrix_ op_ to_ all(+@var{ Matrix1} ,+@var{ Op} ,+@var{ Operand} ,-@var{ Result} )
@findex matrix_ op/4
@snindex matrix_ op/4
@cnindex matrix_ op/4
@var{ Result} is the result of applying @var{ Op} to all elements of
@var{ Matrix1} , with @var{ Operand} as the second argument. Currently,
only addition (@code{ +} ), multiplication (@code{ +} ), and division
(@code{ /} ) are supported.
@item matrix_ op_ to_ lines(+@var{ Matrix1} ,+@var{ Lines} ,+@var{ Op} ,-@var{ Result} )
@findex matrix_ op_ to_ lines/4
@snindex matrix_ op_ to_ lines/4
@cnindex matrix_ op_ to_ lines/4
@var{ Result} is the result of applying @var{ Op} to all elements of
@var{ Matrix1} , with the corresponding element in @var{ Lines} as the
second argument. Currently, only division (@code{ /} ) is supported.
@item matrix_ op_ to_ cols(+@var{ Matrix1} ,+@var{ Cols} ,+@var{ Op} ,-@var{ Result} )
@findex matrix_ op_ to_ cols/4
@snindex matrix_ op_ to_ cols/4
@cnindex matrix_ op_ to_ cols/4
@var{ Result} is the result of applying @var{ Op} to all elements of
@var{ Matrix1} , with the corresponding element in @var{ Cols} as the
second argument. Currently, only addition (@code{ +} ) is
supported. Notice that @var{ Cols} will have n-1 dimensions.
2007-11-16 14:58:41 +00:00
@item matrix_ shuffle(+@var{ Matrix} ,+@var{ NewOrder} ,-@var{ Shuffle} )
@findex matrix_ shuffle/3
@snindex matrix_ shuffle/3
@cnindex matrix_ shuffle/3
Shuffle the dimensions of matrix @var{ Matrix} according to
@var{ NewOrder} . The list @var{ NewOrder} must have all the dimensions of
@var{ Matrix} , starting from 0.
@item matrix_ transpose(+@var{ Matrix} ,-@var{ Transpose} )
@findex matrix_ reorder/3
@snindex matrix_ reorder/3
@cnindex matrix_ reorder/3
Transpose matrix @var{ Matrix} to @var{ Transpose} . Equivalent to:
@example
matrix_ transpose(Matrix,Transpose) :-
matrix_ shuffle(Matrix,[1,0],Transpose).
@end example
@item matrix_ expand(+@var{ Matrix} ,+@var{ NewDimensions} ,-@var{ New} )
@findex matrix_ expand/3
@snindex matrix_ expand/3
@cnindex matrix_ expand/3
Expand @var{ Matrix} to occupy new dimensions. The elements in
@var{ NewDimensions} are either 0, for an existing dimension, or a
positive integer with the size of the new dimension.
@item matrix_ select(+@var{ Matrix} ,+@var{ Dimension} ,+@var{ Index} ,-@var{ New} )
2008-10-31 09:47:58 +00:00
@findex matrix_ select/4
@snindex matrix_ select/4
@cnindex matrix_ select/4
2007-11-16 14:58:41 +00:00
Select from @var{ Matrix} the elements who have @var{ Index} at
@var{ Dimension} .
2008-10-31 09:47:58 +00:00
@item matrix_ row(+@var{ Matrix} ,+@var{ Column} ,-@var{ NewMatrix} )
@findex matrix_ row/3
@snindex matrix_ row/3
@cnindex matrix_ row/3
Select from @var{ Matrix} the row matching @var{ Column} as new matrix @var{ NewMatrix} . @var{ Column} must have one less dimension than the original matrix.
@var{ Dimension} .
2007-07-03 16:24:20 +01:00
@end table
@node MATLAB, Non-Backtrackable Data Structures, matrix, Library
2007-06-29 02:33:35 +01:00
@section MATLAB Package Interface
@cindex Matlab Interface
The MathWorks MATLAB is a widely used package for array
processing. YAP now includes a straightforward interface to MATLAB. To
actually use it, you need to install YAP calling @code{ configure} with
the @code{ --with-matlab=DIR} option, and you need to call
@code{ use_ module(library(lists))} command.
2010-09-24 00:47:02 +01:00
Accessing the matlab dynamic libraries can be complicated. In Linux
machines, to use this interface, you may have to set the environment
variable @t{ LD_ LIBRARY_ PATH} . Next, follows an example using bash in a
64-bit Linux PC:
@example
export LD_ LIBRARY_ PATH=''$ MATLAB _ HOME" / sys / os / glnxa 64 :'' $ MATLAB_ HOME"/bin/glnxa64:''$ LD _ LIBRARY _ PATH"
@end example
where @code{ MATLAB_ HOME} is the directory where matlab is installed
at. Please replace @code{ ax64} for @code{ x86} on a 32-bit PC.
2007-06-29 02:33:35 +01:00
@table @code
@item start_ matlab(+@var{ Options} )
@findex start_ matlab/1
@snindex start_ matlab/1
@cnindex start_ matlab/1
Start a matlab session. The argument @var{ Options} may either be the
empty string/atom or the command to call matlab. The command may fail.
@item close_ matlab
@findex close_ matlab/0
@snindex close_ matlab/0
@cnindex close_ matlab/0
Stop the current matlab session.
@item matlab_ on
@findex matlab_ on/0
@snindex matlab_ on/0
@cnindex matlab_ on/0
Holds if a matlab session is on.
@item matlab_ eval_ string(+@var{ Command} )
@findex matlab_ eval_ string/1
@snindex matlab_ eval_ string/1
@cnindex matlab_ eval_ string/1
Holds if matlab evaluated successfully the command @var{ Command} .
@item matlab_ eval_ string(+@var{ Command} , -@var{ Answer} )
@findex matlab_ eval_ string/2
@snindex matlab_ eval_ string/2
@cnindex matlab_ eval_ string/2
MATLAB will evaluate the command @var{ Command} and unify @var{ Answer}
with a string reporting the result.
@item matlab_ cells(+@var{ Size} , ?@var{ Array} )
@findex matlab_ cells/2
@snindex matlab_ cells/2
@cnindex matlab_ cells/2
MATLAB will create an empty vector of cells of size @var{ Size} , and if
@var{ Array} is bound to an atom, store the array in the matlab
variable with name @var{ Array} . Corresponds to the MATLAB command @code{ cells} .
@item matlab_ cells(+@var{ SizeX} , +@var{ SizeY} , ?@var{ Array} )
@findex matlab_ cells/3
@snindex matlab_ cells/3
@cnindex matlab_ cells/3
MATLAB will create an empty array of cells of size @var{ SizeX} and
@var{ SizeY} , and if @var{ Array} is bound to an atom, store the array
in the matlab variable with name @var{ Array} . Corresponds to the
MATLAB command @code{ cells} .
@item matlab_ initialized_ cells(+@var{ SizeX} , +@var{ SizeY} , +@var{ List} , ?@var{ Array} )
@findex matlab_ initialized_ cells/4
@snindex matlab_ initialized_ cells/4
@cnindex matlab_ initialized_ cells/4
MATLAB will create an array of cells of size @var{ SizeX} and
@var{ SizeY} , initialized from the list @var{ List} , and if @var{ Array}
is bound to an atom, store the array in the matlab variable with name
@var{ Array} .
@item matlab_ matrix(+@var{ SizeX} , +@var{ SizeY} , +@var{ List} , ?@var{ Array} )
@findex matlab_ matrix/4
@snindex matlab_ matrix/4
@cnindex matlab_ matrix/4
MATLAB will create an array of floats of size @var{ SizeX} and @var{ SizeY} ,
initialized from the list @var{ List} , and if @var{ Array} is bound to
an atom, store the array in the matlab variable with name @var{ Array} .
@item matlab_ set(+@var{ MatVar} , +@var{ X} , +@var{ Y} , +@var{ Value} )
@findex matlab_ set/4
@snindex matlab_ set/4
@cnindex matlab_ set/4
Call MATLAB to set element @var{ MatVar} (@var{ X} , @var{ Y} ) to
@var{ Value} . Notice that this command uses the MATLAB array access
convention.
@item matlab_ get_ variable(+@var{ MatVar} , -@var{ List} )
@findex matlab_ get_ variable/2
@snindex matlab_ get_ variable/2
@cnindex matlab_ get_ variable/2
Unify MATLAB variable @var{ MatVar} with the List @var{ List} .
@item matlab_ item(+@var{ MatVar} , +@var{ X} , ?@var{ Val} )
@findex matlab_ item/3
@snindex matlab_ item/3
@cnindex matlab_ item/3
Read or set MATLAB @var{ MatVar} (@var{ X} ) from/to @var{ Val} . Use
@code{ C} notation for matrix access (ie, starting from 0).
@item matlab_ item(+@var{ MatVar} , +@var{ X} , +@var{ Y} , ?@var{ Val} )
@findex matlab_ item/4
@snindex matlab_ item/4
@cnindex matlab_ item/4
Read or set MATLAB @var{ MatVar} (@var{ X} ,@var{ Y} ) from/to @var{ Val} . Use
@code{ C} notation for matrix access (ie, starting from 0).
@item matlab_ item1(+@var{ MatVar} , +@var{ X} , ?@var{ Val} )
@findex matlab_ item/3
@snindex matlab_ item/3
@cnindex matlab_ item/3
Read or set MATLAB @var{ MatVar} (@var{ X} ) from/to @var{ Val} . Use
MATLAB notation for matrix access (ie, starting from 1).
@item matlab_ item1(+@var{ MatVar} , +@var{ X} , +@var{ Y} , ?@var{ Val} )
@findex matlab_ item/4
@snindex matlab_ item/4
@cnindex matlab_ item/4
Read or set MATLAB @var{ MatVar} (@var{ X} ,@var{ Y} ) from/to @var{ Val} . Use
MATLAB notation for matrix access (ie, starting from 1).
@item matlab_ sequence(+@var{ Min} , +@var{ Max} , ?@var{ Array} )
@findex matlab_ sequence/3
@snindex matlab_ sequence/3
@cnindex matlab_ sequence/3
MATLAB will create a sequence going from @var{ Min} to @var{ Max} , and
if @var{ Array} is bound to an atom, store the sequence in the matlab
variable with name @var{ Array} .
@item matlab_ vector(+@var{ Size} , +@var{ List} , ?@var{ Array} )
@findex matlab_ vector/4
@snindex matlab_ vector/4
@cnindex matlab_ vector/4
MATLAB will create a vector of floats of size @var{ Size} , initialized
from the list @var{ List} , and if @var{ Array} is bound to an atom,
store the array in the matlab variable with name @var{ Array} .
@item matlab_ zeros(+@var{ Size} , ?@var{ Array} )
@findex matlab_ zeros/2
@snindex matlab_ zeros/2
@cnindex matlab_ zeros/2
MATLAB will create a vector of zeros of size @var{ Size} , and if
@var{ Array} is bound to an atom, store the array in the matlab
variable with name @var{ Array} . Corresponds to the MATLAB command
@code{ zeros} .
@item matlab_ zeros(+@var{ SizeX} , +@var{ SizeY} , ?@var{ Array} )
@findex matlab_ zeros/3
@snindex matlab_ zeros/3
@cnindex matlab_ zeros/3
MATLAB will create an array of zeros of size @var{ SizeX} and
@var{ SizeY} , and if @var{ Array} is bound to an atom, store the array
in the matlab variable with name @var{ Array} . Corresponds to the
MATLAB command @code{ zeros} .
@item matlab_ zeros(+@var{ SizeX} , +@var{ SizeY} , +@var{ SizeZ} , ?@var{ Array} )
@findex matlab_ zeros/4
@snindex matlab_ zeros/4
@cnindex matlab_ zeros/4
MATLAB will create an array of zeros of size @var{ SizeX} , @var{ SizeY} ,
and @var{ SizeZ} . If @var{ Array} is bound to an atom, store the array
in the matlab variable with name @var{ Array} . Corresponds to the
MATLAB command @code{ zeros} .
@item matlab_ zeros(+@var{ SizeX} , +@var{ SizeY} , +@var{ SizeZ} , ?@var{ Array} )
@findex matlab_ zeros/4
@snindex matlab_ zeros/4
@cnindex matlab_ zeros/4
MATLAB will create an array of zeros of size @var{ SizeX} , @var{ SizeY} ,
and @var{ SizeZ} . If @var{ Array} is bound to an atom, store the array
in the matlab variable with name @var{ Array} . Corresponds to the
MATLAB command @code{ zeros} .
@end table
@node Non-Backtrackable Data Structures, Ordered Sets, MATLAB, Library
2006-08-26 00:22:12 +01:00
@section Non-Backtrackable Data Structures
The following routines implement well-known data-structures using global
non-backtrackable variables (implemented on the Prolog stack). The
data-structures currently supported are Queues, Heaps, and Beam for Beam
search. They are allowed through @code{ library(nb)} .
@table @code
@item nb_ queue(-@var{ Queue} )
@findex nb_ queue/1
@snindex nb_ queue/1
@cnindex nb_ queue/1
Create a @var{ Queue} .
@item nb_ queue_ close(+@var{ Queue} , -@var{ Head} , ?@var{ Tail} )
@findex nb_ queue_ close/3
@snindex nb_ queue_ close/3
@cnindex nb_ queue_ close/3
Unify the queue @var{ Queue} with a difference list
@var{ Head} -@var{ Tail} . The queue will now be empty and no further
elements can be added.
2009-05-16 02:55:24 +01:00
@item nb_ queue_ enqueue(+@var{ Queue} , +@var{ Element} )
2006-08-26 00:22:12 +01:00
@findex nb_ queue_ enqueue/2
@snindex nb_ queue_ enqueue/2
@cnindex nb_ queue_ enqueue/2
Add @var{ Element} to the front of the queue @var{ Queue} .
@item nb_ queue_ dequeue(+@var{ Queue} , -@var{ Element} )
@findex nb_ queue_ dequeue/2
@snindex nb_ queue_ dequeue/2
@cnindex nb_ queue_ dequeue/2
Remove @var{ Element} from the front of the queue @var{ Queue} . Fail if
the queue is empty.
@item nb_ queue_ peek(+@var{ Queue} , -@var{ Element} )
@findex nb_ queue_ peek/2
@snindex nb_ queue_ peek/2
@cnindex nb_ queue_ peek/2
@var{ Element} is the front of the queue @var{ Queue} . Fail if
the queue is empty.
@item nb_ queue_ size(+@var{ Queue} , -@var{ Size} )
@findex nb_ queue_ size/2
@snindex nb_ queue_ size/2
@cnindex nb_ queue_ size/2
Unify @var{ Size} with the number of elements in the queue @var{ Queue} .
@item nb_ queue_ empty(+@var{ Queue} )
@findex nb_ queue_ empty/1
@snindex nb_ queue_ empty/1
@cnindex nb_ queue_ empty/1
Succeeds if @var{ Queue} is empty.
@item nb_ heap(+@var{ DefaultSize} ,-@var{ Heap} )
@findex nb_ heap/1
@snindex nb_ heap/1
@cnindex nb_ heap/1
Create a @var{ Heap} with default size @var{ DefaultSize} . Note that size
will expand as needed.
@item nb_ heap_ close(+@var{ Heap} )
@findex nb_ heap_ close/1
@snindex nb_ heap_ close/1
@cnindex nb_ heap_ close/1
Close the heap @var{ Heap} : no further elements can be added.
@item nb_ heap_ add(+@var{ Heap} , +@var{ Key} , +@var{ Value} )
@findex nb_ heap_ add/3
@snindex nb_ heap_ add/3
@cnindex nb_ heap_ add/3
Add @var{ Key} -@var{ Value} to the heap @var{ Heap} . The key is sorted on
@var{ Key} only.
@item nb_ heap_ del(+@var{ Heap} , -@var{ Key} , -@var{ Value} )
@findex nb_ heap_ del/3
@snindex nb_ heap_ del/3
@cnindex nb_ heap_ del/3
Remove element @var{ Key} -@var{ Value} with smallest @var{ Value} in heap
@var{ Heap} . Fail if the heap is empty.
@item nb_ heap_ peek(+@var{ Heap} , -@var{ Key} , -@var{ Value} ))
@findex nb_ heap_ peek/3
@snindex nb_ heap_ peek/3
@cnindex nb_ heap_ peek/3
@var{ Key} -@var{ Value} is the element with smallest @var{ Key} in the heap
@var{ Heap} . Fail if the heap is empty.
@item nb_ heap_ size(+@var{ Heap} , -@var{ Size} )
@findex nb_ heap_ size/2
@snindex nb_ heap_ size/2
@cnindex nb_ heap_ size/2
Unify @var{ Size} with the number of elements in the heap @var{ Heap} .
@item nb_ heap_ empty(+@var{ Heap} )
@findex nb_ heap_ empty/1
@snindex nb_ heap_ empty/1
@cnindex nb_ heap_ empty/1
Succeeds if @var{ Heap} is empty.
@item nb_ beam(+@var{ DefaultSize} ,-@var{ Beam} )
@findex nb_ beam/1
@snindex nb_ beam/1
@cnindex nb_ beam/1
Create a @var{ Beam} with default size @var{ DefaultSize} . Note that size
is fixed throughout.
@item nb_ beam_ close(+@var{ Beam} )
@findex nb_ beam_ close/1
@snindex nb_ beam_ close/1
@cnindex nb_ beam_ close/1
Close the beam @var{ Beam} : no further elements can be added.
@item nb_ beam_ add(+@var{ Beam} , +@var{ Key} , +@var{ Value} )
@findex nb_ beam_ add/3
@snindex nb_ beam_ add/3
@cnindex nb_ beam_ add/3
Add @var{ Key} -@var{ Value} to the beam @var{ Beam} . The key is sorted on
@var{ Key} only.
@item nb_ beam_ del(+@var{ Beam} , -@var{ Key} , -@var{ Value} )
@findex nb_ beam_ del/3
@snindex nb_ beam_ del/3
@cnindex nb_ beam_ del/3
Remove element @var{ Key} -@var{ Value} with smallest @var{ Value} in beam
@var{ Beam} . Fail if the beam is empty.
@item nb_ beam_ peek(+@var{ Beam} , -@var{ Key} , -@var{ Value} ))
@findex nb_ beam_ peek/3
@snindex nb_ beam_ peek/3
@cnindex nb_ beam_ peek/3
@var{ Key} -@var{ Value} is the element with smallest @var{ Key} in the beam
@var{ Beam} . Fail if the beam is empty.
@item nb_ beam_ size(+@var{ Beam} , -@var{ Size} )
@findex nb_ beam_ size/2
@snindex nb_ beam_ size/2
@cnindex nb_ beam_ size/2
Unify @var{ Size} with the number of elements in the beam @var{ Beam} .
@item nb_ beam_ empty(+@var{ Beam} )
@findex nb_ beam_ empty/1
@snindex nb_ beam_ empty/1
@cnindex nb_ beam_ empty/1
Succeeds if @var{ Beam} is empty.
@end table
@node Ordered Sets, Pseudo Random, Non-Backtrackable Data Structures, Library
2001-04-09 20:54:03 +01:00
@section Ordered Sets
@cindex ordered set
The following ordered set manipulation routines are available once
2001-04-25 21:31:00 +01:00
included with the @code{ use_ module(library(ordsets))} command. An
ordered set is represented by a list having unique and ordered
elements. Output arguments are guaranteed to be ordered sets, if the
relevant inputs are. This is a slightly patched version of Richard
O'Keefe's original library.
2001-04-09 20:54:03 +01:00
@table @code
@item list_ to_ ord_ set(+@var{ List} , ?@var{ Set} )
@findex list_ to_ ord_ set/2
@syindex list_ to_ ord_ set/2
@cnindex list_ to_ ord_ set/2
2001-04-25 21:31:00 +01:00
Holds when @var{ Set} is the ordered representation of the set
represented by the unordered representation @var{ List} .
2001-04-09 20:54:03 +01:00
@item merge(+@var{ List1} , +@var{ List2} , -@var{ Merged} )
@findex merge/3
@syindex merge/3
@cnindex merge/3
Holds when @var{ Merged} is the stable merge of the two given lists.
2001-04-25 21:31:00 +01:00
Notice that @code{ merge/3} will not remove duplicates, so merging
ordered sets will not necessarily result in an ordered set. Use
@code{ ord_ union/3} instead.
2001-04-09 20:54:03 +01:00
@item ord_ add_ element(+@var{ Set1} , +@var{ Element} , ?@var{ Set2} )
@findex ord_ add_ element/3
@syindex ord_ add_ element/3
@cnindex ord_ add_ element/3
2002-10-11 04:39:11 +01:00
Inserting @var{ Element} in @var{ Set1} returns @var{ Set2} . It should give
2001-04-09 20:54:03 +01:00
exactly the same result as @code{ merge(Set1, [Element], Set2)} , but a
bit faster, and certainly more clearly. The same as @code{ ord_ insert/3} .
@item ord_ del_ element(+@var{ Set1} , +@var{ Element} , ?@var{ Set2} )
@findex ord_ del_ element/3
@syindex ord_ del_ element/3
@cnindex ord_ del_ element/3
Removing @var{ Element} from @var{ Set1} returns @var{ Set2} .
@item ord_ disjoint(+@var{ Set1} , +@var{ Set2} )
@findex ord_ disjoint/2
@syindex ord_ disjoint/2
@cnindex ord_ disjoint/2
Holds when the two ordered sets have no element in common.
2001-04-26 15:44:43 +01:00
@item ord_ member(+@var{ Element} , +@var{ Set} )
@findex ord_ member/2
@syindex ord_ member/2
@cnindex ord_ member/2
2001-04-09 20:54:03 +01:00
Holds when @var{ Element} is a member of @var{ Set} .
@item ord_ insert(+@var{ Set1} , +@var{ Element} , ?@var{ Set2} )
@findex ord_ insert/3
@syindex ord_ insert/3
@cnindex ord_ insert/3
2002-10-11 04:39:11 +01:00
Inserting @var{ Element} in @var{ Set1} returns @var{ Set2} . It should give
2001-04-09 20:54:03 +01:00
exactly the same result as @code{ merge(Set1, [Element], Set2)} , but a
bit faster, and certainly more clearly. The same as @code{ ord_ add_ element/3} .
@item ord_ intersect(+@var{ Set1} , +@var{ Set2} )
@findex ord_ intersect/2
@syindex ord_ intersect/2
@cnindex ord_ intersect/2
Holds when the two ordered sets have at least one element in common.
@item ord_ intersection(+@var{ Set1} , +@var{ Set2} , ?@var{ Intersection} )
@findex ord_ intersect/3
@syindex ord_ intersect/3
@cnindex ord_ intersect/3
Holds when Intersection is the ordered representation of @var{ Set1}
and @var{ Set2} .
2005-02-18 21:34:02 +00:00
@item ord_ intersection(+@var{ Set1} , +@var{ Set2} , ?@var{ Intersection} , ?@var{ Diff} )
@findex ord_ intersect/4
@syindex ord_ intersect/4
@cnindex ord_ intersect/4
Holds when Intersection is the ordered representation of @var{ Set1}
2006-02-08 19:13:11 +00:00
and @var{ Set2} . @var{ Diff} is the difference between @var{ Set2} and @var{ Set1} .
2005-02-18 21:34:02 +00:00
2001-04-09 20:54:03 +01:00
@item ord_ seteq(+@var{ Set1} , +@var{ Set2} )
@findex ord_ seteq/2
@syindex ord_ seteq/2
@cnindex ord_ seteq/2
Holds when the two arguments represent the same set.
@item ord_ setproduct(+@var{ Set1} , +@var{ Set2} , -@var{ Set} )
@findex ord_ setproduct/3
@syindex ord_ setproduct/3
@cnindex ord_ setproduct/3
If Set1 and Set2 are ordered sets, Product will be an ordered
set of x1-x2 pairs.
@item ord_ subset(+@var{ Set1} , +@var{ Set2} )
@findex ordsubset/2
@syindex ordsubset/2
@cnindex ordsubset/2
Holds when every element of the ordered set @var{ Set1} appears in the
ordered set @var{ Set2} .
@item ord_ subtract(+@var{ Set1} , +@var{ Set2} , ?@var{ Difference} )
@findex ord_ subtract/3
@syindex ord_ subtract/3
@cnindex ord_ subtract/3
Holds when @var{ Difference} contains all and only the elements of @var{ Set1}
which are not also in @var{ Set2} .
@item ord_ symdiff(+@var{ Set1} , +@var{ Set2} , ?@var{ Difference} )
@findex ord_ symdiff/3
@syindex ord_ symdiff/3
@cnindex ord_ symdiff/3
Holds when @var{ Difference} is the symmetric difference of @var{ Set1}
and @var{ Set2} .
@item ord_ union(+@var{ Sets} , ?@var{ Union} )
@findex ord_ union/2
@syindex ord_ union/2
@cnindex ord_ union/2
Holds when @var{ Union} is the union of the lists @var{ Sets} .
@item ord_ union(+@var{ Set1} , +@var{ Set2} , ?@var{ Union} )
@findex ord_ union/3
@syindex ord_ union/3
@cnindex ord_ union/3
Holds when @var{ Union} is the union of @var{ Set1} and @var{ Set2} .
@item ord_ union(+@var{ Set1} , +@var{ Set2} , ?@var{ Union} , ?@var{ Diff} )
@findex ord_ union/4
@syindex ord_ union/4
@cnindex ord_ union/4
Holds when @var{ Union} is the union of @var{ Set1} and @var{ Set2} and
@var{ Diff} is the difference.
@end table
@node Pseudo Random, Queues, Ordered Sets, Library
@section Pseudo Random Number Integer Generator
@cindex pseudo random
The following routines produce random non-negative integers in the range
2006-02-08 19:13:11 +00:00
0 .. 2^ (w-1) -1, where w is the word size available for integers, e.g.
2001-04-09 20:54:03 +01:00
32 for Intel machines and 64 for Alpha machines. Note that the numbers
generated by this random number generator are repeatable. This generator
was originally written by Allen Van Gelder and is based on Knuth Vol 2.
@table @code
@item rannum(-@var{ I} )
@findex rannum/1
@snindex rannum/1
@cnindex rannum/1
Produces a random non-negative integer @var{ I} whose low bits are not
all that random, so it should be scaled to a smaller range in general.
The integer @var{ I} is in the range 0 .. 2^ (w-1) - 1. You can use:
@example
rannum(X) :- yap_ flag(max_ integer,MI), rannum(R), X is R/MI.
@end example
to obtain a floating point number uniformly distributed between 0 and 1.
@item ranstart
@findex ranstart/0
@snindex ranstart/0
@cnindex ranstart/0
2002-10-11 04:39:11 +01:00
Initialize the random number generator using a built-in seed. The
2001-04-09 20:54:03 +01:00
@code{ ranstart/0} built-in is always called by the system when loading
the package.
@item ranstart(+@var{ Seed} )
@findex ranstart/1
@snindex ranstart/1
@cnindex ranstart/1
2002-10-11 04:39:11 +01:00
Initialize the random number generator with user-defined @var{ Seed} . The
2001-04-09 20:54:03 +01:00
same @var{ Seed} always produces the same sequence of numbers.
@item ranunif(+@var{ Range} ,-@var{ I} )
@findex ranunif/2
@snindex ranunif/2
@cnindex ranunif/2
@code{ ranunif/2} produces a uniformly distributed non-negative random
integer @var{ I} over a caller-specified range @var{ R} . If range is @var{ R} ,
the result is in 0 .. @var{ R} -1.
@end table
@node Queues, Random, Pseudo Random, Library
@section Queues
@cindex queue
The following queue manipulation routines are available once
included with the @code{ use_ module(library(queues))} command. Queues are
implemented with difference lists.
@table @code
@item make_ queue(+@var{ Queue} )
@findex make_ queue/1
@syindex make_ queue/1
@cnindex make_ queue/1
Creates a new empty queue. It should only be used to create a new queue.
@item join_ queue(+@var{ Element} , +@var{ OldQueue} , -@var{ NewQueue} )
@findex join_ queue/3
@syindex join_ queue/3
@cnindex join_ queue/3
Adds the new element at the end of the queue.
@item list_ join_ queue(+@var{ List} , +@var{ OldQueue} , -@var{ NewQueue} )
@findex list_ join_ queue/3
@syindex list_ join_ queue/3
@cnindex list_ join_ queue/3
Ads the new elements at the end of the queue.
@item jump_ queue(+@var{ Element} , +@var{ OldQueue} , -@var{ NewQueue} )
@findex jump_ queue/3
@syindex jump_ queue/3
@cnindex jump_ queue/3
Adds the new element at the front of the list.
@item list_ jump_ queue(+@var{ List} , +@var{ OldQueue} , +@var{ NewQueue} )
@findex list_ jump_ queue/3
@syindex list_ jump_ queue/3
@cnindex list_ jump_ queue/3
Adds all the elements of @var{ List} at the front of the queue.
@item head_ queue(+@var{ Queue} , ?@var{ Head} )
@findex head_ queue/2
@syindex head_ queue/2
@cnindex head_ queue/2
Unifies Head with the first element of the queue.
@item serve_ queue(+@var{ OldQueue} , +@var{ Head} , -@var{ NewQueue} )
@findex serve_ queue/3
@syindex serve_ queue/3
@cnindex serve_ queue/3
Removes the first element of the queue for service.
@item empty_ queue(+@var{ Queue} )
@findex empty_ queue/1
@syindex empty_ queue/1
@cnindex empty_ queue/1
Tests whether the queue is empty.
@item length_ queue(+@var{ Queue} , -@var{ Length} )
@findex length_ queue/2
@syindex length_ queue/2
@cnindex length_ queue/2
Counts the number of elements currently in the queue.
@item list_ to_ queue(+@var{ List} , -@var{ Queue} )
@findex list_ to_ queue/2
@syindex list_ to_ queue/2
@cnindex list_ to_ queue/2
Creates a new queue with the same elements as @var{ List.}
@item queue_ to_ list(+@var{ Queue} , -@var{ List} )
@findex queue_ to_ list/2
@syindex queue_ to_ list/2
@cnindex queue_ to_ list/2
Creates a new list with the same elements as @var{ Queue} .
@end table
2006-08-02 19:18:31 +01:00
@node Random, Read Utilities, Queues, Library
2001-04-09 20:54:03 +01:00
@section Random Number Generator
@cindex queue
The following random number operations are included with the
2007-02-18 00:26:36 +00:00
@code{ use_ module(library(random))} command. Since YAP-4.3.19 YAP uses
2001-06-11 21:20:36 +01:00
the O'Keefe public-domain algorithm, based on the "Applied Statistics"
algorithm AS183.
2001-04-09 20:54:03 +01:00
@table @code
@item getrand(-@var{ Key} )
@findex getrand/1
@syindex getrand/1
@cnindex getrand/1
Unify @var{ Key} with a term of the form @code{ rand(X,Y,Z)} describing the
current state of the random number generator.
@item random(-@var{ Number} )
@findex random/1
@syindex random/1
@cnindex random/1
Unify @var{ Number} with a floating-point number in the range @code{ [0...1)} .
2002-08-09 17:36:55 +01:00
@item random(+@var{ LOW} , +@var{ HIGH} , -@var{ NUMBER} )
2001-04-09 20:54:03 +01:00
@findex random/3
@syindex random/3
@cnindex random/3
Unify @var{ Number} with a number in the range
@code{ [LOW...HIGH)} . If both @var{ LOW} and @var{ HIGH} are
integers then @var{ NUMBER} will also be an integer, otherwise
@var{ NUMBER} will be a floating-point number.
@item randseq(+@var{ LENGTH} , +@var{ MAX} , -@var{ Numbers} )
@findex randseq/3
@syindex randseq/3
@cnindex randseq/3
Unify @var{ Numbers} with a list of @var{ LENGTH} unique random integers
2010-11-23 12:24:05 +00:00
in the range @code{ [1<> ...@var{ MAX} )} .
2001-04-09 20:54:03 +01:00
@item randset(+@var{ LENGTH} , +@var{ MAX} , -@var{ Numbers} )
@findex randset/3
@syindex randset/3
@cnindex randset/3
Unify @var{ Numbers} with an ordered list of @var{ LENGTH} unique random
2010-11-23 12:24:05 +00:00
integers in the range @code{ [1<> ...@var{ MAX} )} .
2001-04-09 20:54:03 +01:00
@item setrand(+@var{ Key} )
@findex setrand/1
@syindex setrand/1
@cnindex setrand/1
Use a term of the form @code{ rand(X,Y,Z)} to set a new state for the
random number generator. The integer @code{ X} must be in the range
@code{ [1...30269)} , the integer @code{ Y} must be in the range
@code{ [1...30307)} , and the integer @code{ Z} must be in the range
@code{ [1...30323)} .
@end table
2006-08-02 19:18:31 +01:00
@node Read Utilities, Red-Black Trees, Random, Library
@section Read Utilities
The @code{ readutil} library contains primitives to read lines, files,
multiple terms, etc.
@table @code
@item read_ line_ to_ codes(+@var{ Stream} , -@var{ Codes} )
@findex read_ line_ to_ codes/2
@snindex read_ line_ to_ codes/2
@cnindex read_ line_ to_ codes/2
Read the next line of input from @var{ Stream} and unify the result with
@var{ Codes} @emph{ after} the line has been read. A line is ended by a
newline character or end-of-file. Unlike @code{ read_ line_ to_ codes/3} ,
this predicate removes trailing newline character.
On end-of-file the atom @code{ end_ of_ file} is returned. See also
@code{ at_ end_ of_ stream/[0,1]} .
@item read_ line_ to_ codes(+@var{ Stream} , -@var{ Codes} , ?@var{ Tail} )
@findex read_ line_ to_ codes/3
@snindex read_ line_ to_ codes/3
@cnindex read_ line_ to_ codes/3
2009-04-25 16:59:23 +01:00
Difference-list version to read an input line to a list of character
2006-08-02 19:18:31 +01:00
codes. Reading stops at the newline or end-of-file character, but
unlike @code{ read_ line_ to_ codes/2} , the newline is retained in the
2009-04-25 16:59:23 +01:00
output. This predicate is especially useful for reading a block of
2006-08-02 19:18:31 +01:00
lines upto some delimiter. The following example reads an HTTP header
ended by a blank line:
@example
read_ header_ data(Stream, Header) :-
read_ line_ to_ codes(Stream, Header, Tail),
read_ header_ data(Header, Stream, Tail).
read_ header_ data("\r \n ", _ , _ ) :- !.
read_ header_ data("\n ", _ , _ ) :- !.
read_ header_ data("", _ , _ ) :- !.
read_ header_ data(_ , Stream, Tail) :-
read_ line_ to_ codes(Stream, Tail, NewTail),
read_ header_ data(Tail, Stream, NewTail).
@end example
@item read_ stream_ to_ codes(+@var{ Stream} , -@var{ Codes} )
@findex read_ stream_ to_ codes/3
@snindex read_ stream_ to_ codes/3
@cnindex read_ stream_ to_ codes/3
Read all input until end-of-file and unify the result to @var{ Codes} .
@item read_ stream_ to_ codes(+@var{ Stream} , -@var{ Codes} , ?@var{ Tail} )
@findex read_ stream_ to_ codes/3
@snindex read_ stream_ to_ codes/3
@cnindex read_ stream_ to_ codes/3
Difference-list version of @code{ read_ stream_ to_ codes/2} .
@item read_ file_ to_ codes(+@var{ Spec} , -@var{ Codes} , +@var{ Options} )
@findex read_ file_ to_ codes/3
@snindex read_ file_ to_ codes/3
@cnindex read_ file_ to_ codes/3
Read a file to a list of character codes. Currently ignores
@var{ Options} .
@c @var{ Spec} is a
@c file-specification for absolute_ file_ name/3. @var{ Codes} is the
@c resulting code-list. @var{ Options} is a list of options for
@c absolute_ file_ name/3 and open/4. In addition, the option
@c \term { tail} { Tail} is defined, forming a difference-list.
@item read_ file_ to_ terms(+@var{ Spec} , -@var{ Terms} , +@var{ Options} )
@findex read_ file_ to_ terms/3
@snindex read_ file_ to_ terms/3
@cnindex read_ file_ to_ terms/3
2009-04-25 16:59:23 +01:00
Read a file to a list of Prolog terms (see read/1). @c @var{ Spec} is a
2006-08-02 19:18:31 +01:00
@c file-specification for absolute_ file_ name/3. @var{ Terms} is the
@c resulting list of Prolog terms. @var{ Options} is a list of options for
@c absolute_ file_ name/3 and open/4. In addition, the option
@c \term { tail} { Tail} is defined, forming a difference-list.
@c \end { description}
@end table
@node Red-Black Trees, RegExp, Read Utilities, Library
2002-06-18 05:23:15 +01:00
@section Red-Black Trees
@cindex Red-Black Trees
Red-Black trees are balanced search binary trees. They are named because
nodes can be classified as either red or black. The code we include is
based on "Introduction to Algorithms", second edition, by Cormen,
Leiserson, Rivest and Stein. The library includes routines to insert,
lookup and delete elements in the tree.
@table @code
2006-04-10 20:24:52 +01:00
@item rb_ new(?@var{ T} )
@findex rb_ new/1
@snindex rb_ new/1
@cnindex rb_ new/1
Create a new tree.
@item rb_ empty(?@var{ T} )
@findex rb_ empty/1
@snindex rb_ empty/1
@cnindex rb_ empty/1
Succeeds if tree @var{ T} is empty.
@item is_ rbtree(+@var{ T} )
@findex is_ rbtree/1
@snindex is_ rbtree/1
@cnindex is_ rbtree/1
Check whether @var{ T} is a valid red-black tree.
@item rb_ insert(+@var{ T0} ,+@var{ Key} ,?@var{ Value} ,+@var{ TF} )
@findex rb_ insert/4
@snindex rb_ insert/4
@cnindex rb_ insert/4
2002-06-18 05:23:15 +01:00
Add an element with key @var{ Key} and @var{ Value} to the tree
2006-04-10 20:24:52 +01:00
@var{ T0} creating a new red-black tree @var{ TF} . Duplicated elements are not
2002-06-18 05:23:15 +01:00
allowed.
2008-06-16 22:22:15 +01:00
@snindex rb_ insert_ new/4
@cnindex rb_ insert_ new/4
Add a new element with key @var{ Key} and @var{ Value} to the tree
@var{ T0} creating a new red-black tree @var{ TF} . Fails is an element
with @var{ Key} exists in the tree.
2006-04-10 20:24:52 +01:00
@item rb_ lookup(+@var{ Key} ,-@var{ Value} ,+@var{ T} )
@findex rb_ lookup/3
@snindex rb_ lookup/3
@cnindex rb_ lookup/3
Backtrack through all elements with key @var{ Key} in the red-black tree
@var{ T} , returning for each the value @var{ Value} .
@item rb_ lookupall(+@var{ Key} ,-@var{ Value} ,+@var{ T} )
@findex rb_ lookupall/3
@snindex rb_ lookupall/3
@cnindex rb_ lookupall/3
2004-05-17 22:42:12 +01:00
Lookup all elements with key @var{ Key} in the red-black tree
2002-06-18 05:23:15 +01:00
@var{ T} , returning the value @var{ Value} .
2006-04-10 20:24:52 +01:00
@item rb_ delete(+@var{ T} ,+@var{ Key} ,-@var{ TN} )
@findex rb_ delete/3
@snindex rb_ delete/3
@cnindex rb_ delete/3
2002-06-18 05:23:15 +01:00
Delete element with key @var{ Key} from the tree @var{ T} , returning a new
tree @var{ TN} .
2006-04-10 20:24:52 +01:00
@item rb_ delete(+@var{ T} ,+@var{ Key} ,-@var{ Val} ,-@var{ TN} )
@findex rb_ delete/4
@snindex rb_ delete/4
@cnindex rb_ delete/4
Delete element with key @var{ Key} from the tree @var{ T} , returning the
value @var{ Val} associated with the key and a new tree @var{ TN} .
@item rb_ del_ min(+@var{ T} ,-@var{ Key} ,-@var{ Val} ,-@var{ TN} )
@findex rb_ del_ min/4
@snindex rb_ del_ min/4
@cnindex rb_ del_ min/4
Delete the least element from the tree @var{ T} , returning the key
@var{ Key} , the value @var{ Val} associated with the key and a new tree
@var{ TN} .
@item rb_ del_ max(+@var{ T} ,-@var{ Key} ,-@var{ Val} ,-@var{ TN} )
@findex rb_ del_ max/4
@snindex rb_ del_ max/4
@cnindex rb_ del_ max/4
Delete the largest element from the tree @var{ T} , returning the key
@var{ Key} , the value @var{ Val} associated with the key and a new tree
@var{ TN} .
@item rb_ update(+@var{ T} ,+@var{ Key} ,+@var{ NewVal} ,-@var{ TN} )
@findex rb_ update/4
@snindex rb_ update/4
@cnindex rb_ update/4
Tree @var{ TN} is tree @var{ T} , but with value for @var{ Key} associated
with @var{ NewVal} . Fails if it cannot find @var{ Key} in @var{ T} .
@item rb_ apply(+@var{ T} ,+@var{ Key} ,+@var{ G} ,-@var{ TN} )
@findex rb_ apply/4
@snindex rb_ apply/4
@cnindex rb_ apply/4
If the value associated with key @var{ Key} is @var{ Val0} in @var{ T} , and
2006-05-19 18:49:25 +01:00
if @code{ call(G,Val0,ValF)} holds, then @var{ TN} differs from
@var{ T} only in that @var{ Key} is associated with value @var{ ValF} in
tree @var{ TN} . Fails if it cannot find @var{ Key} in @var{ T} , or if
@code{ call(G,Val0,ValF)} is not satisfiable.
2006-04-10 20:24:52 +01:00
@item rb_ visit(+@var{ T} ,-@var{ Pairs} )
@findex rb_ visit/2
@snindex rb_ visit/2
@cnindex rb_ visit/2
@var{ Pairs} is an infix visit of tree @var{ T} , where each element of
2006-05-19 18:49:25 +01:00
@var{ Pairs} is of the form @var{ K} -@var{ Val} .
2006-04-10 20:24:52 +01:00
@item rb_ size(+@var{ T} ,-@var{ Size} )
@findex rb_ size/2
@snindex rb_ size/2
@cnindex rb_ size/2
@var{ Size} is the number of elements in @var{ T} .
@item rb_ keys(+@var{ T} ,+@var{ Keys} )
@findex rb_ keys/2
@snindex rb_ keys/2
@cnindex rb_ keys/2
@var{ Keys} is an infix visit with all keys in tree @var{ T} . Keys will be
sorted, but may be duplicate.
@item rb_ map(+@var{ T} ,+@var{ G} ,-@var{ TN} )
@findex rb_ map/3
@snindex rb_ map/3
@cnindex rb_ map/3
For all nodes @var{ Key} in the tree @var{ T} , if the value associated with
key @var{ Key} is @var{ Val0} in tree @var{ T} , and if
2006-05-19 18:49:25 +01:00
@code{ call(G,Val0,ValF)} holds, then the value associated with @var{ Key}
in @var{ TN} is @var{ ValF} . Fails if or if @code{ call(G,Val0,ValF)} is not
2006-04-10 20:24:52 +01:00
satisfiable for all @var{ Var0} .
@item rb_ partial_ map(+@var{ T} ,+@var{ Keys} ,+@var{ G} ,-@var{ TN} )
@findex rb_ partial_ map/4
@snindex rb_ partial_ map/4
@cnindex rb_ partial_ map/4
For all nodes @var{ Key} in @var{ Keys} , if the value associated with key
2006-05-19 18:49:25 +01:00
@var{ Key} is @var{ Val0} in tree @var{ T} , and if @code{ call(G,Val0,ValF)}
2006-04-10 20:24:52 +01:00
holds, then the value associated with @var{ Key} in @var{ TN} is
2006-05-19 18:49:25 +01:00
@var{ ValF} . Fails if or if @code{ call(G,Val0,ValF)} is not satisfiable
2006-04-10 20:24:52 +01:00
for all @var{ Var0} . Assumes keys are not repeated.
@item rb_ clone(+@var{ T} ,+@var{ NT} ,+@var{ Nodes} )
@findex rb_ clone/3
@snindex rb_ clone/3
@cnindex rb_ clone/3
``Clone'' the red-back tree into a new tree with the same keys as the
original but with all values set to unbound values. Nodes is a list
containing all new nodes as pairs @var{ K-V} .
@item rb_ min(+@var{ T} ,-@var{ Key} ,-@var{ Value} )
@findex rb_ min/3
@snindex rb_ min/3
@cnindex rb_ min/3
@var{ Key} is the minimum key in @var{ T} , and is associated with @var{ Val} .
@item rb_ max(+@var{ T} ,-@var{ Key} ,-@var{ Value} )
@findex rb_ max/3
@snindex rb_ max/3
@cnindex rb_ max/3
@var{ Key} is the maximal key in @var{ T} , and is associated with @var{ Val} .
@item rb_ next(+@var{ T} , +@var{ Key} ,-@var{ Next} ,-@var{ Value} )
@findex rb_ next/4
@snindex rb_ next/4
@cnindex rb_ next/4
@var{ Next} is the next element after @var{ Key} in @var{ T} , and is
associated with @var{ Val} .
@item rb_ previous(+@var{ T} , +@var{ Key} ,-@var{ Previous} ,-@var{ Value} )
@findex rb_ previous/4
@snindex rb_ previous/4
@cnindex rb_ previous/4
@var{ Previous} is the previous element after @var{ Key} in @var{ T} , and is
associated with @var{ Val} .
@item list_ to_ rbtree(+@var{ L} , -@var{ T} )
@findex list_ to_ rbtree/2
@snindex list_ to_ rbtree/2
@cnindex list_ to_ rbtree/2
@var{ T} is the red-black tree corresponding to the mapping in list @var{ L} .
@item ord_ list_ to_ rbtree(+@var{ L} , -@var{ T} )
@findex list_ to_ rbtree/2
@snindex list_ to_ rbtree/2
@cnindex list_ to_ rbtree/2
@var{ T} is the red-black tree corresponding to the mapping in ordered
list @var{ L} .
2002-06-18 05:23:15 +01:00
@end table
2010-06-17 00:32:52 +01:00
@node RegExp, shlib, Red-Black Trees, Library
2001-04-09 20:54:03 +01:00
@section Regular Expressions
@cindex regular expressions
This library includes routines to determine whether a regular expression
matches part or all of a string. The routines can also return which
parts parts of the string matched the expression or subexpressions of
it. This library relies on Henry Spencer's @code{ C} -package and is only
available in operating systems that support dynamic loading. The
@code{ C} -code has been obtained from the sources of FreeBSD-4.0 and is
protected by copyright from Henry Spencer and from the Regents of the
University of California (see the file library/regex/COPYRIGHT for
further details).
Much of the description of regular expressions below is copied verbatim
from Henry Spencer's manual page.
A regular expression is zero or more branches, separated by ``|''. It
matches anything that matches one of the branches.
A branch is zero or more pieces, concatenated. It matches a match for
the first, followed by a match for the second, etc.
A piece is an atom possibly followed by ``*'', ``+'', or ``?''. An atom
followed by ``*'' matches a sequence of 0 or more matches of the atom.
An atom followed by ``+'' matches a sequence of 1 or more matches of the
atom. An atom followed by ``?'' matches a match of the atom, or the
null string.
An atom is a regular expression in parentheses (matching a match for the
regular expression), a range (see below), ``.'' (matching any single
character), ``^ '' (matching the null string at the beginning of the
input string), ``$ '' ( matching the null string at the end of the input
string), a ``\' ' followed by a single character (matching that
character), or a single character with no other significance (matching
that character).
A range is a sequence of characters enclosed in ``[]''. It normally
matches any single character from the sequence. If the sequence begins
with ``^ '', it matches any single character not from the rest of the
sequence. If two characters in the sequence are separated by ``-'',
this is shorthand for the full list of ASCII characters between them
(e.g. ``[0-9]'' matches any decimal digit). To include a literal ``]''
in the sequence, make it the first character (following a possible
``^ ''). To include a literal ``-'', make it the first or last
character.
@table @code
@item regexp(+@var{ RegExp} ,+@var{ String} ,+@var{ Opts} )
@findex regexp/3
@snindex regexp/3
@cnindex regexp/3
Match regular expression @var{ RegExp} to input string @var{ String}
according to options @var{ Opts} . The options may be:
@itemize @bullet
@item @code{ nocase} : Causes upper-case characters in @var{ String} to
be treated as lower case during the matching process.
@end itemize
2008-03-25 11:54:08 +00:00
@item regexp(+@var{ RegExp} ,+@var{ String} ,+@var{ Opts} ,?@var{ SubMatchVars} )
2001-04-09 20:54:03 +01:00
@findex regexp/4
@snindex regexp/4
@cnindex regexp/4
Match regular expression @var{ RegExp} to input string @var{ String}
according to options @var{ Opts} . The variable @var{ SubMatchVars} should
2008-03-25 11:54:08 +00:00
be originally unbound or a list of unbound variables all will contain a
sequence of matches, that is, the head of @var{ SubMatchVars} will
contain the characters in @var{ String} that matched the leftmost
parenthesized subexpression within @var{ RegExp} , the next head of list
will contain the characters that matched the next parenthesized
subexpression to the right in @var{ RegExp} , and so on.
2001-04-09 20:54:03 +01:00
The options may be:
@itemize @bullet
@item @code{ nocase} : Causes upper-case characters in @var{ String} to
be treated as lower case during the matching process.
@item @code{ indices} : Changes what is stored in
@var{ SubMatchVars} . Instead of storing the matching characters from
@var{ String} , each variable will contain a term of the form @var{ IO-IF}
giving the indices in @var{ String} of the first and last characters in
the matching range of characters.
@end itemize
In general there may be more than one way to match a regular expression
to an input string. For example, consider the command
@example
regexp("(a*)b*","aabaaabb", [], [X,Y])
@end example
Considering only the rules given so far, @var{ X} and @var{ Y} could end up
with the values @code{ "aabb"} and @code{ "aa"} , @code{ "aaab"} and
@code{ "aaa"} , @code{ "ab"} and @code{ "a"} , or any of several other
2006-02-08 19:13:11 +00:00
combinations. To resolve this potential ambiguity @code{ regexp} chooses among
2001-04-09 20:54:03 +01:00
alternatives using the rule ``first then longest''. In other words, it
considers the possible matches in order working from left to right
across the input string and the pattern, and it attempts to match longer
pieces of the input string before shorter ones. More specifically, the
following rules apply in decreasing order of priority:
@enumerate
@item If a regular expression could match two different parts of an
input string then it will match the one that begins earliest.
@item If a regular expression contains "|" operators then the leftmost matching sub-expression is chosen.
@item In *, +, and ? constructs, longer matches are chosen in preference to shorter ones.
@item In sequences of expression components the components are considered from left to right.
@end enumerate
In the example from above, @code{ "(a*)b*"} matches @code{ "aab"} : the
@code{ "(a*)"} portion of the pattern is matched first and it consumes
the leading @code{ "aa"} ; then the @code{ "b*"} portion of the pattern
consumes the next @code{ "b"} . Or, consider the following example:
@example
regexp("(ab|a)(b*)c", "abc", [], [X,Y,Z])
@end example
After this command @var{ X} will be @code{ "abc"} , @var{ Y} will be
@code{ "ab"} , and @var{ Z} will be an empty string. Rule 4 specifies that
@code{ "(ab|a)"} gets first shot at the input string and Rule 2 specifies
that the @code{ "ab"} sub-expression is checked before the @code{ "a"}
sub-expression. Thus the @code{ "b"} has already been claimed before the
@code{ "(b*)"} component is checked and @code{ (b*)} must match an empty string.
@end table
2010-06-17 00:32:52 +01:00
@node shlib, Splay Trees, RegExp, Library
@section SWI-Prolog's shlib library
@cindex SWI-Compatible foreign file loading
This section discusses the functionality of the (autoload)
@code{ library(shlib)} , providing an interface to manage shared
libraries.
One of the files provides a global function @code{ install_ mylib()} that
initialises the module using calls to @code{ PL_ register_ foreign()} . Here is a
simple example file @code{ mylib.c} , which creates a Windows MessageBox:
@example
#include <windows.h>
#include <SWI-Prolog.h>
static foreign_ t
pl_ say_ hello(term_ t to)
@{ char *a;
if ( PL_ get_ atom_ chars(to, & a) )
@{ MessageBox(NULL, a, "DLL test", MB_ OK|MB_ TASKMODAL);
PL_ succeed;
@}
PL_ fail;
@}
install_ t
install_ mylib()
@{ PL_ register_ foreign("say_ hello", 1, pl_ say_ hello, 0);
@}
@end example
Now write a file mylib.pl:
@example
:- module(mylib, [ say_ hello/1 ]).
:- use_ foreign_ library(foreign(mylib)).
@end example
The file mylib.pl can be loaded as a normal Prolog file and provides the predicate defined in C.
@table @code
@item [det]load_ foreign_ library(:@var{ FileSpec} )
@item [det]load_ foreign_ library(:@var{ FileSpec} , +@var{ Entry} :atom)
@findex load_ foreign_ library/1
@snindex load_ foreign_ library/1
@cnindex load_ foreign_ library/1
@findex load_ foreign_ library/2
@snindex load_ foreign_ library/2
@cnindex load_ foreign_ library/2
Load a shared object or DLL. After loading the @var{ Entry} function is
called without arguments. The default entry function is composed
from @code{ install_ } , followed by the file base-name. E.g., the
load-call below calls the function @code{ install_ mylib()} . If the platform
prefixes extern functions with @code{ _ } , this prefix is added before
calling.
@example
...
load_ foreign_ library(foreign(mylib)),
...
@end example
@var{ FileSpec} is a specification for
@code{ absolute_ file_ name/3} . If searching the file fails, the plain
name is passed to the OS to try the default method of the OS for
locating foreign objects. The default definition of
@code{ file_ search_ path/2} searches <prolog home>/lib/Yap.
See also
@code{ use_ foreign_ library/1,2} are intended for use in
directives.
@item [det]use_ foreign_ library(+@var{ FileSpec} )
@item [det]use_ foreign_ library(+@var{ FileSpec} , +@var{ Entry} :atom)
@findex use_ foreign_ library/1
@snindex use_ foreign_ library/1
@cnindex use_ foreign_ library/1
@findex use_ foreign_ library/2
@snindex use_ foreign_ library/2
@cnindex use_ foreign_ library/2
Load and install a foreign library as load_ foreign_ library/1,2 and
register the installation using @code{ initialization/2} with the option
now. This is similar to using:
@example
:- initialization(load_ foreign_ library(foreign(mylib))).
@end example
but using the @code{ initialization/1} wrapper causes the library to
be loaded after loading of the file in which it appears is
completed, while @code{ use_ foreign_ library/1} loads the library
immediately. I.e. the difference is only relevant if the remainder
of the file uses functionality of the @code{ C} -library.
@item [det]unload_ foreign_ library(+@var{ FileSpec} )
@item [det]unload_ foreign_ library(+@var{ FileSpec} , +@var{ Exit} :atom)
@findex unload_ foreign_ library/1
@snindex unload_ foreign_ library/1
@cnindex unload_ foreign_ library/1
@findex unload_ foreign_ library/2
@snindex unload_ foreign_ library/2
@cnindex unload_ foreign_ library/2
Unload a shared
object or DLL. After calling the @var{ Exit} function, the shared object is
removed from the process. The default exit function is composed from
@code{ uninstall_ } , followed by the file base-name.
@item current_ foreign_ library(?@var{ File} , ?@var{ Public} )
@findex current_ foreign_ library/2
@snindex current_ foreign_ library/2
@cnindex current_ foreign_ library/2
Query currently
loaded shared libraries.
@c @item reload_ foreign_ libraries
@c @findex reload_ foreign_ libraries/0
@c @snindex reload_ foreign_ libraries/0
@c @cnindex reload_ foreign_ libraries/0
@c Reload all foreign
@c libraries loaded (after restore of a state created using
@c @code{ qsave_ program/2} ).
@end table
@node Splay Trees, String I/O, shlib, Library
2001-04-09 20:54:03 +01:00
@section Splay Trees
@cindex splay trees
Splay trees are explained in the paper "Self-adjusting Binary Search
Trees", by D.D. Sleator and R.E. Tarjan, JACM, vol. 32, No.3, July 1985,
p. 668. They are designed to support fast insertions, deletions and
removals in binary search trees without the complexity of traditional
balanced trees. The key idea is to allow the tree to become
unbalanced. To make up for this, whenever we find a node, we move it up
to the top. We use code by Vijay Saraswat originally posted to the Prolog
mailing-list.
@table @code
@item splay_ access(-@var{ Return} ,+@var{ Key} ,?@var{ Val} ,+@var{ Tree} ,-@var{ NewTree} )
@findex splay_ access/5
@snindex splay_ access/5
@cnindex splay_ access/5
2004-03-08 15:38:36 +00:00
If item @var{ Key} is in tree @var{ Tree} , return its @var{ Val} and
2003-08-27 14:37:10 +01:00
unify @var{ Return} with @code{ true} . Otherwise unify @var{ Return} with
2001-04-09 20:54:03 +01:00
@code{ null} . The variable @var{ NewTree} unifies with the new tree.
@item splay_ delete(+@var{ Key} ,?@var{ Val} ,+@var{ Tree} ,-@var{ NewTree} )
@findex splay_ delete/4
@snindex splay_ delete/4
@cnindex splay_ delete/4
Delete item @var{ Key} from tree @var{ Tree} , assuming that it is present
already. The variable @var{ Val} unifies with a value for key @var{ Key} ,
and the variable @var{ NewTree} unifies with the new tree. The predicate
will fail if @var{ Key} is not present.
2002-04-23 23:43:10 +01:00
@item splay_ init(-@var{ NewTree} )
@findex splay_ init/3
@snindex splay_ init/3
@cnindex splay_ init/3
2002-10-11 04:39:11 +01:00
Initialize a new splay tree.
2002-04-23 23:43:10 +01:00
2001-04-09 20:54:03 +01:00
@item splay_ insert(+@var{ Key} ,?@var{ Val} ,+@var{ Tree} ,-@var{ NewTree} )
@findex splay_ insert/4
@snindex splay_ insert/4
@cnindex splay_ insert/4
2003-08-27 14:37:10 +01:00
Insert item @var{ Key} in tree @var{ Tree} , assuming that it is not
there already. The variable @var{ Val} unifies with a value for key
@var{ Key} , and the variable @var{ NewTree} unifies with the new
tree. In our implementation, @var{ Key} is not inserted if it is
already there: rather it is unified with the item already in the tree.
2001-04-09 20:54:03 +01:00
@item splay_ join(+@var{ LeftTree} ,+@var{ RighTree} ,-@var{ NewTree} )
@findex splay_ join/3
@snindex splay_ join/3
@cnindex splay_ join/3
Combine trees @var{ LeftTree} and @var{ RighTree} into a single
2003-08-27 14:37:10 +01:00
tree@var{ NewTree} containing all items from both trees. This operation
2001-04-09 20:54:03 +01:00
assumes that all items in @var{ LeftTree} are less than all those in
@var{ RighTree} and destroys both @var{ LeftTree} and @var{ RighTree} .
@item splay_ split(+@var{ Key} ,?@var{ Val} ,+@var{ Tree} ,-@var{ LeftTree} ,-@var{ RightTree} )
@findex splay_ split/5
@snindex splay_ split/5
@cnindex splay_ split/5
2003-08-27 14:37:10 +01:00
Construct and return two trees @var{ LeftTree} and @var{ RightTree} ,
where @var{ LeftTree} contains all items in @var{ Tree} less than
@var{ Key} , and @var{ RightTree} contains all items in @var{ Tree}
greater than @var{ Key} . This operations destroys @var{ Tree} .
2001-04-09 20:54:03 +01:00
@end table
2001-05-24 16:26:41 +01:00
@node String I/O, System, Splay Trees, Library
2001-04-09 20:54:03 +01:00
@section Reading From and Writing To Strings
@cindex string I/O
From Version 4.3.2 onwards YAP implements SICStus Prolog compatible
String I/O. The library allows users to read from and write to a memory
buffer as if it was a file. The memory buffer is built from or converted
to a string of character codes by the routines in library. Therefore, if
one wants to read from a string the string must be fully instantiated
2006-02-08 19:13:11 +00:00
before the library built-in opens the string for reading. These commands
2001-04-09 20:54:03 +01:00
are available through the @code{ use_ module(library(charsio))} command.
@table @code
@item format_ to_ chars(+@var{ Form} , +@var{ Args} , -@var{ Result} )
@findex format_ to_ chars/3
@syindex format_ to_ chars/3
@cnindex format_ to_ chars/3
Execute the built-in procedure @code{ format/2} with form @var{ Form} and
arguments @var{ Args} outputting the result to the string of character
codes @var{ Result} .
2009-05-20 17:14:48 +01:00
@item format_ to_ chars(+@var{ Form} , +@var{ Args} , -@var{ Result} , -@var{ Result0} )
2001-04-09 20:54:03 +01:00
@findex format_ to_ chars/4
@syindex format_ to_ chars/4
@cnindex format_ to_ chars/4
Execute the built-in procedure @code{ format/2} with form @var{ Form} and
arguments @var{ Args} outputting the result to the difference list of
character codes @var{ Result-Result0} .
@item write_ to_ chars(+@var{ Term} , -@var{ Result} )
@findex write_ to_ chars/2
@syindex write_ to_ chars/2
@cnindex write_ to_ chars/2
Execute the built-in procedure @code{ write/1} with argument @var{ Term}
outputting the result to the string of character codes @var{ Result} .
@item write_ to_ chars(+@var{ Term} , -@var{ Result0} , -@var{ Result} )
@findex write_ to_ chars/3
@syindex write_ to_ chars/3
@cnindex write_ to_ chars/3
Execute the built-in procedure @code{ write/1} with argument @var{ Term}
outputting the result to the difference list of character codes
@var{ Result-Result0} .
@item atom_ to_ chars(+@var{ Atom} , -@var{ Result} )
@findex atom_ to_ chars/2
@syindex atom_ to_ chars/2
@cnindex atom_ to_ chars/2
Convert the atom @var{ Atom} to the string of character codes
@var{ Result} .
@item atom_ to_ chars(+@var{ Atom} , -@var{ Result0} , -@var{ Result} )
@findex atom_ to_ chars/3
@syindex atom_ to_ chars/3
@cnindex atom_ to_ chars/3
Convert the atom @var{ Atom} to the difference list of character codes
@var{ Result-Result0} .
@item number_ to_ chars(+@var{ Number} , -@var{ Result} )
@findex number_ to_ chars/2
@syindex number_ to_ chars/2
@cnindex number_ to_ chars/2
Convert the number @var{ Number} to the string of character codes
@var{ Result} .
@item number_ to_ chars(+@var{ Number} , -@var{ Result0} , -@var{ Result} )
@findex number_ to_ chars/3
@syindex number_ to_ chars/3
@cnindex number_ to_ chars/3
Convert the atom @var{ Number} to the difference list of character codes
@var{ Result-Result0} .
2010-01-26 12:19:13 +00:00
@item atom_ to_ term(+@var{ Atom} , -@var{ Term} , -@var{ Bindings} )
@findex atom_ to_ term/3
@syindex atom_ to_ term/3
@cnindex atom_ to_ term/3
Use @var{ Atom} as input to @code{ read_ term/2} using the option @code{ variable_ names} and return the read term in @var{ Term} and the variable bindings in @var{ Bindings} . @var{ Bindings} is a list of @code{ Name = Var} couples, thus providing access to the actual variable names. See also @code{ read_ term/2} . If Atom has no valid syntax, a syntax_ error exception is raised.
2010-05-23 18:39:46 +01:00
@item term_ to_ atom(?@var{ Term} , ?@var{ Atom} )
@findex term_ to_ atom/2
@syindex term_ to_ atom/2
@cnindex term_ to_ atom/2
True if @var{ Atom} describes a term that unifies with @var{ Term} . When
@var{ Atom} is instantiated @var{ Atom} is converted and then unified with
@var{ Term} . If @var{ Atom} has no valid syntax, a syntax_ error exception
is raised. Otherwise @var{ Term} is ``written'' on @var{ Atom} using
@code{ write_ term/2} with the option quoted(true).
2010-01-26 12:19:13 +00:00
2001-04-09 20:54:03 +01:00
@item read_ from_ chars(+@var{ Chars} , -@var{ Term} )
@findex read_ from_ chars/2
@syindex read_ from_ chars/2
@cnindex read_ from_ chars/2
Parse the list of character codes @var{ Chars} and return the result in
the term @var{ Term} . The character codes to be read must terminate with
a dot character such that either (i) the dot character is followed by
blank characters; or (ii) the dot character is the last character in the
string.
@item open_ chars_ stream(+@var{ Chars} , -@var{ Stream} )
@findex open_ chars_ stream/2
@syindex open_ chars_ stream/2
@cnindex open_ chars_ stream/2
Open the list of character codes @var{ Chars} as a stream @var{ Stream} .
@item with_ output_ to_ chars(?@var{ Goal} , -@var{ Chars} )
@findex with_ output_ to_ chars/2
@syindex with_ output_ to_ chars/2
@cnindex with_ output_ to_ chars/2
Execute goal @var{ Goal} such that its standard output will be sent to a
memory buffer. After successful execution the contents of the memory
buffer will be converted to the list of character codes @var{ Chars} .
@item with_ output_ to_ chars(?@var{ Goal} , ?@var{ Chars0} , -@var{ Chars} )
@findex with_ output_ to_ chars/3
@syindex with_ output_ to_ chars/3
@cnindex with_ output_ to_ chars/3
Execute goal @var{ Goal} such that its standard output will be sent to a
memory buffer. After successful execution the contents of the memory
buffer will be converted to the difference list of character codes
@var{ Chars-Chars0} .
@item with_ output_ to_ chars(?@var{ Goal} , -@var{ Stream} , ?@var{ Chars0} , -@var{ Chars} )
@findex with_ output_ to_ chars/4
@syindex with_ output_ to_ chars/4
@cnindex with_ output_ to_ chars/4
Execute goal @var{ Goal} such that its standard output will be sent to a
memory buffer. After successful execution the contents of the memory
buffer will be converted to the difference list of character codes
@var{ Chars-Chars0} and @var{ Stream} receives the stream corresponding to
the memory buffer.
@end table
The implementation of the character IO operations relies on three YAP
2006-02-08 19:13:11 +00:00
built-ins:
2001-04-09 20:54:03 +01:00
@table @code
@item charsio:open_ mem_ read_ stream(+@var{ String} , -@var{ Stream} )
Store a string in a memory buffer and output a stream that reads from this
memory buffer.
@item charsio:open_ mem_ write_ stream(-@var{ Stream} )
Create a new memory buffer and output a stream that writes to it.
@item charsio:peek_ mem_ write_ stream(-@var{ Stream} , L0, L)
Convert the memory buffer associated with stream @var{ Stream} to the
difference list of character codes @var{ L-L0} .
@end table
@noindent
2006-02-08 19:13:11 +00:00
These built-ins are initialized to belong to the module @code{ charsio} in
2001-04-09 20:54:03 +01:00
@code{ init.yap} . Novel procedures for manipulating strings by explicitly
importing these built-ins.
YAP does not currently support opening a @code{ charsio} stream in
@code{ append} mode, or seeking in such a stream.
2001-05-24 16:26:41 +01:00
@node System, Terms, String I/O, Library
@section Calling The Operating System from YAP
@cindex Operating System Utilities
2007-02-18 00:26:36 +00:00
YAP now provides a library of system utilities compatible with the
2001-05-28 20:54:53 +01:00
SICStus Prolog system library. This library extends and to some point
replaces the functionality of Operating System access routines. The
library includes Unix/Linux and Win32 @code{ C} code. They
are available through the @code{ use_ module(library(system))} command.
@table @code
@item datime(datime(-@var{ Year} , -@var{ Month} , -@var{ DayOfTheMonth} ,
-@var{ Hour} , -@var{ Minute} , -@var{ Second} )
@findex datime/1
@syindex datime/1
@cnindex datime/1
The @code{ datime/1} procedure returns the current date and time, with
information on @var{ Year} , @var{ Month} , @var{ DayOfTheMonth} ,
@var{ Hour} , @var{ Minute} , and @var{ Second} . The @var{ Hour} is returned
on local time. This function uses the WIN32
@code{ GetLocalTime} function or the Unix @code{ localtime} function.
@example
?- datime(X).
X = datime(2001,5,28,15,29,46) ?
@end example
2004-08-11 17:14:55 +01:00
@item mktime(datime(+@var{ Year} , +@var{ Month} , +@var{ DayOfTheMonth} ,
+@var{ Hour} , +@var{ Minute} , +@var{ Second} ), -@var{ Seconds} )
@findex mktime/2
@snindex mktime/2
@cnindex mktime/2
The @code{ mktime/1} procedure returns the number of @var{ Seconds}
elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time
(UTC). The user provides information on @var{ Year} , @var{ Month} ,
@var{ DayOfTheMonth} , @var{ Hour} , @var{ Minute} , and @var{ Second} . The
2005-10-28 18:55:30 +01:00
@var{ Hour} is given on local time. This function uses the WIN32
2004-08-11 17:14:55 +01:00
@code{ GetLocalTime} function or the Unix @code{ mktime} function.
@example
?- mktime(datime(2001,5,28,15,29,46),X).
X = 991081786 ? ;
@end example
2001-05-28 20:54:53 +01:00
@item delete_ file(+@var{ File} )
@findex delete_ file/1
@syindex delete_ file/1
@cnindex delete_ file/1
The @code{ delete_ file/1} procedure removes file @var{ File} . If
@var{ File} is a directory, remove the directory @emph{ and all its
subdirectories} .
@example
?- delete_ file(x).
@end example
@item delete_ file(+@var{ File} ,+@var{ Opts} )
@findex delete_ file/2
@syindex delete_ file/2
@cnindex delete_ file/2
The @code{ delete_ file/2} procedure removes file @var{ File} according to
options @var{ Opts} . These options are @code{ directory} if one should
remove directories, @code{ recursive} if one should remove directories
recursively, and @code{ ignore} if errors are not to be reported.
This example is equivalent to using the @code{ delete_ file/1} predicate:
@example
?- delete_ file(x, [recursive]).
@end example
@item directory_ files(+@var{ Dir} ,+@var{ List} )
@findex directory_ files/2
@syindex directory_ files/2
@cnindex directory_ files/2
Given a directory @var{ Dir} , @code{ directory_ files/2} procedures a
listing of all files and directories in the directory:
@example
?- directory_ files('.',L), writeq(L).
['Makefile.~1~','sys.so','Makefile','sys.o',x,..,'.']
@end example
The predicates uses the @code{ dirent} family of routines in Unix
environments, and @code{ findfirst} in WIN32.
@item file_ exists(+@var{ File} )
@findex file_ exists/1
@syindex file_ exists/1
@cnindex file_ exists/1
The atom @var{ File} corresponds to an existing file.
@item file_ exists(+@var{ File} ,+@var{ Permissions} )
@findex file_ exists/2
@syindex file_ exists/2
@cnindex file_ exists/2
The atom @var{ File} corresponds to an existing file with permissions
compatible with @var{ Permissions} . YAP currently only accepts for
permissions to be described as a number. The actual meaning of this
number is Operating System dependent.
@item file_ property(+@var{ File} ,?@var{ Property} )
@findex file_ property/2
@syindex file_ property/2
@cnindex file_ property/2
The atom @var{ File} corresponds to an existing file, and @var{ Property}
2002-10-11 04:39:11 +01:00
will be unified with a property of this file. The properties are of the
2001-06-12 15:07:59 +01:00
form @code{ type(@var{ Type} )} , which gives whether the file is a regular
2001-05-28 20:54:53 +01:00
file, a directory, a fifo file, or of unknown type;
2001-06-12 15:07:59 +01:00
@code{ size(@var{ Size} )} , with gives the size for a file, and
@code{ mod_ time(@var{ Time} )} , which gives the last time a file was
2001-05-28 20:54:53 +01:00
modified according to some Operating System dependent
2002-06-11 06:30:47 +01:00
timestamp; @code{ mode(@var{ mode} )} , gives the permission flags for the
file, and @code{ linkto(@var{ FileName} )} , gives the file pointed to by a
symbolic link. Properties can be obtained through backtracking:
2001-05-28 20:54:53 +01:00
@example
?- file_ property('Makefile',P).
P = type(regular) ? ;
P = size(2375) ? ;
P = mod_ time(990826911) ? ;
no
@end example
@item make_ directory(+@var{ Dir} )
@findex make_ directory/2
@syindex make_ directory/2
@cnindex make_ directory/2
Create a directory @var{ Dir} . The name of the directory must be an atom.
@item rename_ file(+@var{ OldFile} ,+@var{ NewFile} )
@findex rename_ file/2
@syindex rename_ file/2
@cnindex rename_ file/2
Create file @var{ OldFile} to @var{ NewFile} . This predicate uses the
2006-02-08 19:13:11 +00:00
@code{ C} built-in function @code{ rename} .
2001-05-28 20:54:53 +01:00
@item environ(?@var{ EnvVar} ,+@var{ EnvValue} )
@findex environ/2
@syindex environ/2
@cnindex environ/2
Unify environment variable @var{ EnvVar} with its value @var{ EnvValue} ,
if there is one. This predicate is backtrackable in Unix systems, but
not currently in Win32 configurations.
@example
?- environ('HOME',X).
X = 'C:\\ cygwin\\ home\\ administrator' ?
@end example
2001-06-29 13:45:54 +01:00
@item host_ id(-@var{ Id} )
@findex host_ id/1
@syindex host_ id/1
@cnindex host_ id/1
2007-02-18 00:26:36 +00:00
Unify @var{ Id} with an identifier of the current host. YAP uses the
2001-06-29 13:45:54 +01:00
@code{ hostid} function when available,
@item host_ name(-@var{ Name} )
@findex host_ name/1
@syindex host_ name/1
@cnindex host_ name/1
2007-02-18 00:26:36 +00:00
Unify @var{ Name} with a name for the current host. YAP uses the
2001-06-29 13:45:54 +01:00
@code{ hostname} function in Unix systems when available, and the
@code{ GetComputerName} function in WIN32 systems.
@item kill(@var{ Id} ,+@var{ SIGNAL} )
@findex kill/2
@syindex kill/2
@cnindex kill/2
Send signal @var{ SIGNAL} to process @var{ Id} . In Unix this predicate is
a direct interface to @code{ kill} so one can send signals to groups of
processes. In WIN32 the predicate is an interface to
2009-04-25 16:59:23 +01:00
@code{ TerminateProcess} , so it kills @var{ Id} independently of @var{ SIGNAL} .
2001-06-29 13:45:54 +01:00
@item mktemp(@var{ Spec} ,-@var{ File} )
@findex mktemp/2
@syindex mktemp/2
@cnindex mktemp/2
Direct interface to @code{ mktemp} : given a @var{ Spec} , that is a file
name with six @var{ X} to it, create a file name @var{ File} . Use
@code{ tmpnam/1} instead.
@item pid(-@var{ Id} )
@findex pid/1
@syindex pid/1
@cnindex pid/1
Unify @var{ Id} with the process identifier for the current
process. An interface to the @t{ getpid} function.
@item tmpnam(-@var{ File} )
@findex tmpnam/1
@syindex tmpnam/1
@cnindex tmpnam/1
2008-05-23 00:25:21 +01:00
Interface with @var{ tmpnam} : obtain a new, unique file name @var{ File} .
@item tmp_ file(-@var{ File} )
@findex tmp_ file/2
@snindex tmp_ file/2
@cnindex tmp_ file/2
Create a name for a temporary file. @var{ Base} is an user provided
identifier for the category of file. The @var{ TmpName} is guaranteed to
be unique. If the system halts, it will automatically remove all created
temporary files.
2001-06-29 13:45:54 +01:00
2007-10-05 19:24:30 +01:00
@item exec(+@var{ Command} ,[+@var{ InputStream} ,+@var{ OutputStream} ,+@var{ ErrorStream} ],-@var{ PID} )
2001-05-28 20:54:53 +01:00
@findex exec/3
@syindex exec/3
@cnindex exec/3
Execute command @var{ Command} with its streams connected to
2007-10-05 19:24:30 +01:00
@var{ InputStream} , @var{ OutputStream} , and @var{ ErrorStream} . The
process that executes the command is returned as @var{ PID} . The
command is executed by the default shell @code{ bin/sh -c} in Unix.
2001-06-29 13:45:54 +01:00
The following example demonstrates the use of @code{ exec/3} to send a
command and process its output:
@example
exec(ls,[std,pipe(S),null],P),repeat, get0(S,C), (C = -1, close(S) ! ; put(C)).
@end example
The streams may be one of standard stream, @code{ std} , null stream,
@code{ null} , or @code{ pipe(S)} , where @var{ S} is a pipe stream. Note
that it is up to the user to close the pipe.
2001-05-28 20:54:53 +01:00
2001-06-29 13:45:54 +01:00
@item popen(+@var{ Command} , +@var{ TYPE} , -@var{ Stream} )
@findex popen/3
@syindex popen/3
@cnindex popen/3
Interface to the @t{ popen} function. It opens a process by creating a
pipe, forking and invoking @var{ Command} on the current shell. Since a
pipe is by definition unidirectional the @var{ Type} argument may be
@code{ read} or @code{ write} , not both. The stream should be closed
using @code{ close/1} , there is no need for a special @code{ pclose}
command.
The following example demonstrates the use of @code{ popen/3} to process
the output of a command, as @code{ exec/3} would do:
@example
?- popen(ls,read,X),repeat, get0(X,C), (C = -1, ! ; put(C)).
X = 'C:\\ cygwin\\ home\\ administrator' ?
@end example
The WIN32 implementation of @code{ popen/3} relies on @code{ exec/3} .
2001-06-08 15:52:54 +01:00
@item shell
@findex shell/0
@syindex shell/0
@cnindex shell/0
2007-02-18 00:26:36 +00:00
Start a new shell and leave YAP in background until the shell
completes. YAP uses the shell given by the environment variable
2001-06-08 15:52:54 +01:00
@code{ SHELL} . In WIN32 environment YAP will use @code{ COMSPEC} if
@code{ SHELL} is undefined.
@item shell(+@var{ Command} )
@findex shell/1
@syindex shell/1
@cnindex shell/1
2007-02-18 00:26:36 +00:00
Execute command @var{ Command} under a new shell. YAP will be in
background until the command completes. In Unix environments YAP uses
2001-06-08 15:52:54 +01:00
the shell given by the environment variable @code{ SHELL} with the option
@code{ " -c "} . In WIN32 environment YAP will use @code{ COMSPEC} if
@code{ SHELL} is undefined, in this case with the option @code{ " /c "} .
@item shell(+@var{ Command} ,-@var{ Status} )
@findex shell/1
@syindex shell/1
@cnindex shell/1
Execute command @var{ Command} under a new shell and unify @var{ Status}
2007-02-18 00:26:36 +00:00
with the exit for the command. YAP will be in background until the
command completes. In Unix environments YAP uses the shell given by the
2001-06-08 15:52:54 +01:00
environment variable @code{ SHELL} with the option @code{ " -c "} . In
WIN32 environment YAP will use @code{ COMSPEC} if @code{ SHELL} is
undefined, in this case with the option @code{ " /c "} .
2001-06-07 18:54:29 +01:00
@item sleep(+@var{ Time} )
@findex sleep/1
@syindex sleep/1
@cnindex sleep/1
2006-12-30 11:29:30 +00:00
Block the current thread for @var{ Time} seconds. When YAP is compiled
without multi-threading support, this predicate blocks the YAP process.
The number of seconds must be a positive number, and it may an integer
or a float. The Unix implementation uses @code{ usleep} if the number of
seconds is below one, and @code{ sleep} if it is over a second. The WIN32
implementation uses @code{ Sleep} for both cases.
2001-06-07 18:54:29 +01:00
2001-06-29 13:45:54 +01:00
@item system
@findex system/0
@syindex system/0
@cnindex system/0
2007-02-18 00:26:36 +00:00
Start a new default shell and leave YAP in background until the shell
completes. YAP uses @code{ /bin/sh} in Unix systems and @code{ COMSPEC} in
2001-06-29 13:45:54 +01:00
WIN32.
@item system(+@var{ Command} ,-@var{ Res} )
@findex system/2
@syindex system/2
@cnindex system/2
Interface to @code{ system} : execute command @var{ Command} and unify
@var{ Res} with the result.
2001-06-07 18:54:29 +01:00
@item wait(+@var{ PID} ,-@var{ Status} )
@findex wait/2
@syindex wait/2
@cnindex wait/2
Wait until process @var{ PID} terminates, and return its exits @var{ Status} .
2001-05-28 20:54:53 +01:00
@end table
2007-09-16 21:27:57 +01:00
@node Terms, Tries, System, Library
2001-04-09 20:54:03 +01:00
@section Utilities On Terms
@cindex utilities on terms
The next routines provide a set of commonly used utilities to manipulate
terms. Most of these utilities have been implemented in @code{ C} for
efficiency. They are available through the
2002-09-17 20:42:06 +01:00
@code{ use_ module(library(terms))} command.
2001-04-09 20:54:03 +01:00
@table @code
2002-03-07 05:13:21 +00:00
@item cyclic_ term(?@var{ Term} )
@findex cyclic_ term/1
@syindex cyclic_ term/1
@cnindex cyclic_ term/1
Succeed if the argument @var{ Term} is a cyclic term.
2001-04-09 20:54:03 +01:00
@item term_ hash(+@var{ Term} , ?@var{ Hash} )
@findex term_ hash/2
@syindex term_ hash/2
@cnindex term_ hash/2
If @var{ Term} is ground unify @var{ Hash} with a positive integer
calculated from the structure of the term. Otherwise the argument
@var{ Hash} is left unbound. The range of the positive integer is from
@code{ 0} to, but not including, @code{ 33554432} .
@item term_ hash(+@var{ Term} , +@var{ Depth} , +@var{ Range} , ?@var{ Hash} )
@findex term_ hash/4
@syindex term_ hash/4
@cnindex term_ hash/4
Unify @var{ Hash} with a positive integer calculated from the structure
of the term. The range of the positive integer is from @code{ 0} to, but
not including, @var{ Range} . If @var{ Depth} is @code{ -1} the whole term
is considered. Otherwise, the term is considered only up to depth
@code{ 1} , where the constants and the principal functor have depth
@code{ 1} , and an argument of a term with depth @var{ I} has depth @var{ I+1} .
2009-03-10 16:21:05 +00:00
@item variables_ within_ term(+@var{ Variables} ,?@var{ Term} , -@var{ OutputVariables} )
@findex variables_ within_ term/3
@snindex variables_ within_ term/3
@cnindex variables_ within_ term/3
Unify @var{ OutputVariables} with the subset of the variables @var{ Variables} that occurs in @var{ Term} .
@item new_ variables_ in_ term(+@var{ Variables} ,?@var{ Term} , -@var{ OutputVariables} )
@findex new_ variables_ in_ term/3
@snindex new_ variables_ in_ term/3
@cnindex new_ variables_ in_ term/3
Unify @var{ OutputVariables} with all variables occurring in @var{ Term} that are not in the list @var{ Variables} .
2001-04-09 20:54:03 +01:00
@item variant(?@var{ Term1} , ?@var{ Term2} )
@findex variant/2
@syindex variant/2
@cnindex variant/2
Succeed if @var{ Term1} and @var{ Term2} are variant terms.
@item subsumes(?@var{ Term1} , ?@var{ Term2} )
@findex subsumes/2
@syindex subsumes/2
@cnindex subsumes/2
Succeed if @var{ Term1} subsumes @var{ Term2} . Variables in term
@var{ Term1} are bound so that the two terms become equal.
@item subsumes_ chk(?@var{ Term1} , ?@var{ Term2} )
@findex subsumes_ chk/2
@syindex subsumes_ chk/2
@cnindex subsumes_ chk/2
Succeed if @var{ Term1} subsumes @var{ Term2} but does not bind any
variable in @var{ Term1} .
2002-03-07 05:13:21 +00:00
@item variable_ in_ term(?@var{ Term} ,?@var{ Var} )
@findex variable_ in_ term/2
@snindex variable_ in_ term/2
@cnindex variable_ in_ term/2
Succeed if the second argument @var{ Var} is a variable and occurs in
term @var{ Term} .
2008-03-13 18:41:52 +00:00
@item unifiable(?@var{ Term1} , ?@var{ Term2} , -@var{ Bindings} )
@findex unifiable/3
@syindex unifiable/3
@cnindex unifiable/3
Succeed if @var{ Term1} and @var{ Term2} are unifiable with substitution
@var{ Bindings} .
2002-10-11 04:39:11 +01:00
@end table
2007-09-16 21:27:57 +01:00
@node Tries, Cleanup, Terms, Library
@section Trie DataStructure
@cindex tries
The next routines provide a set of utilities to create and manipulate
prefix trees of Prolog terms. Tries were originally proposed to
implement tabling in Logic Programming, but can be used for other
purposes. The tries will be stored in the Prolog database and can seen
as alternative to @code{ assert} and @code{ record} family of
primitives. Most of these utilities have been implemented in @code{ C}
for efficiency. They are available through the
@code{ use_ module(library(tries))} command.
@table @code
@item trie_ open(-@var{ Id} )
@findex trie_ open/1
@snindex trie_ open/1
2008-11-05 13:28:44 +00:00
@cnindex trie_ open/1
2007-09-16 21:27:57 +01:00
Open a new trie with identifier @var{ Id} .
@item trie_ close(+@var{ Id} )
@findex trie_ close/1
@snindex trie_ close/1
2008-11-05 13:28:44 +00:00
@cnindex trie_ close/1
2007-09-16 21:27:57 +01:00
Close trie with identifier @var{ Id} .
@item trie_ close_ all
@findex trie_ close_ all/0
@snindex trie_ close_ all/0
@cnindex trie_ close_ all/0
Close all available tries.
@item trie_ mode(?@var{ Mode} )
@findex trie_ mode/1
@snindex trie_ mode/1
@cnindex trie_ mode/1
Unify @var{ Mode} with trie operation mode. Allowed values are either
@code{ std} (default) or @code{ rev} .
@item trie_ put_ entry(+@var{ Trie} ,+@var{ Term} ,-@var{ Ref} )
@findex trie_ put_ entry/3
@snindex trie_ put_ entry/3
@cnindex trie_ put_ entry/3
Add term @var{ Term} to trie @var{ Trie} . The handle @var{ Ref} gives
a reference to the term.
@item trie_ check_ entry(+@var{ Trie} ,+@var{ Term} ,-@var{ Ref} )
@findex trie_ check_ entry/3
@snindex trie_ check_ entry/3
@cnindex trie_ check_ entry/3
Succeeds if a variant of term @var{ Term} is in trie @var{ Trie} . An handle
@var{ Ref} gives a reference to the term.
@item trie_ get_ entry(+@var{ Ref} ,-@var{ Term} )
@findex trie_ get_ entry/2
@snindex trie_ get_ entry/2
@cnindex trie_ get_ entry/2
Unify @var{ Term} with the entry for handle @var{ Ref} .
@item trie_ remove_ entry(+@var{ Ref} )
@findex trie_ remove_ entry/1
@snindex trie_ remove_ entry/1
@cnindex trie_ remove_ entry/1
Remove entry for handle @var{ Ref} .
@item trie_ remove_ subtree(+@var{ Ref} )
@findex trie_ remove_ subtree/1
@snindex trie_ remove_ subtree/1
@cnindex trie_ remove_ subtree/1
Remove subtree rooted at handle @var{ Ref} .
@item trie_ save(+@var{ Trie} ,+@var{ FileName} )
@findex trie_ save/2
@snindex trie_ save/2
@cnindex trie_ save/2
Dump trie @var{ Trie} into file @var{ FileName} .
@item trie_ load(+@var{ Trie} ,+@var{ FileName} )
@findex trie_ load/2
@snindex trie_ load/2
@cnindex trie_ load/2
Load trie @var{ Trie} from the contents of file @var{ FileName} .
@item trie_ stats(-@var{ Memory} ,-@var{ Tries} ,-@var{ Entries} ,-@var{ Nodes} )
@findex trie_ stats/4
@snindex trie_ stats/4
@cnindex trie_ stats/4
Give generic statistics on tries, including the amount of memory,
@var{ Memory} , the number of tries, @var{ Tries} , the number of entries,
@var{ Entries} , and the total number of nodes, @var{ Nodes} .
@item trie_ max_ stats(-@var{ Memory} ,-@var{ Tries} ,-@var{ Entries} ,-@var{ Nodes} )
@findex trie_ max_ stats/4
@snindex trie_ max_ stats/4
@cnindex trie_ max_ stats/4
Give maximal statistics on tries, including the amount of memory,
@var{ Memory} , the number of tries, @var{ Tries} , the number of entries,
@var{ Entries} , and the total number of nodes, @var{ Nodes} .
@item trie_ usage(+@var{ Trie} ,-@var{ Entries} ,-@var{ Nodes} ,-@var{ VirtualNodes} )
@findex trie_ usage/4
@snindex trie_ usage/4
@cnindex trie_ usage/4
Give statistics on trie @var{ Trie} , the number of entries,
@var{ Entries} , and the total number of nodes, @var{ Nodes} , and the
number of @var{ VirtualNodes} .
@item trie_ print(+@var{ Trie} )
@findex trie_ print/1
@snindex trie_ print/1
@cnindex trie_ print/1
Print trie @var{ Trie} on standard output.
@end table
@node Cleanup, Timeout, Tries, Library
2005-10-28 18:55:30 +01:00
@section Call Cleanup
2002-10-11 04:39:11 +01:00
@cindex cleanup
@t{ call_ cleanup/1} and @t{ call_ cleanup/2} allow predicates to register
2002-10-27 18:11:01 +00:00
code for execution after the call is finished. Predicates can be
declared to be @t{ fragile} to ensure that @t{ call_ cleanup} is called
for any Goal which needs it. This library is loaded with the
@code{ use_ module(library(cleanup))} command.
2001-04-09 20:54:03 +01:00
2002-10-11 04:39:11 +01:00
@table @code
2002-10-27 18:11:01 +00:00
@item :- fragile @var{ P} ,....,@var{ Pn}
@findex fragile
@syindex fragile
@cnindex fragile
Declares the predicate @var{ P} =@t{ [module:]name/arity} as a fragile
predicate, module is optional, default is the current
typein_ module. Whenever such a fragile predicate is used in a query
it will be called through call_ cleanup/1.
@example
:- fragile foo/1,bar:baz/2.
@end example
2009-05-20 07:53:14 +01:00
@item call_ cleanup(:@var{ Goal} )
2002-10-11 04:39:11 +01:00
@findex call_ cleanup/1
@syindex call_ cleanup/1
@cnindex call_ cleanup/1
Execute goal @var{ Goal} within a cleanup-context. Called predicates
might register cleanup Goals which are called right after the end of
the call to @var{ Goal} . Cuts and exceptions inside Goal do not prevent the
execution of the cleanup calls. @t{ call_ cleanup} might be nested.
2009-05-20 07:53:14 +01:00
@item call_ cleanup(:@var{ Goal} , :@var{ CleanUpGoal} )
2002-10-11 04:39:11 +01:00
@findex call_ cleanup/2
@syindex call_ cleanup/2
@cnindex call_ cleanup/2
This is similar to @t{ call_ cleanup/1} with an additional
@var{ CleanUpGoal} which gets called after @var{ Goal} is finished.
2009-05-20 07:53:14 +01:00
@item setup_ call_ cleanup(:@var{ Setup} ,:@var{ Goal} , :@var{ CleanUpGoal} )
@findex setup_ call_ cleanup/3
@snindex setup_ call_ cleanup/3
@cnindex setup_ call_ cleanup/3
Calls @code{ (Setup, Goal)} . For each sucessful execution of @var{ Setup} , calling @var{ Goal} , the
cleanup handler @var{ Cleanup} is guaranteed to be called exactly once.
This will happen after @var{ Goal} completes, either through failure,
deterministic success, commit, or an exception. @var{ Setup} will
contain the goals that need to be protected from asynchronous interrupts
such as the ones received from @code{ call_ with_ time_ limit/2} or @code{ thread_ signal/2} . In
most uses, @var{ Setup} will perform temporary side-effects required by
2009-05-26 23:57:59 +01:00
@var{ Goal} that are finally undone by @var{ Cleanup} .
2009-05-20 07:53:14 +01:00
Success or failure of @var{ Cleanup} is ignored and choice-points it
created are destroyed (as @code{ once/1} ). If @var{ Cleanup} throws an exception,
this is executed as normal.
Typically, this predicate is used to cleanup permanent data storage
required to execute @var{ Goal} , close file-descriptors, etc. The example
below provides a non-deterministic search for a term in a file, closing
the stream as needed.
@example
term_ in_ file(Term, File) :-
setup_ call_ cleanup(open(File, read, In),
term_ in_ stream(Term, In),
close(In) ).
term_ in_ stream(Term, In) :-
repeat,
read(In, T),
( T == end_ of_ file
-> !, fail
; T = Term
).
@end example
Note that it is impossible to implement this predicate in Prolog other than
by reading all terms into a list, close the file and call @code{ member/2} .
Without @code{ setup_ call_ cleanup/3} there is no way to gain control if the
2009-05-26 23:57:59 +01:00
choice-point left by @code{ repeat} is removed by a cut or an exception.
2009-05-20 07:53:14 +01:00
@code{ setup_ call_ cleanup/2} can also be used to test determinism of a goal:
@example
?- setup_ call_ cleanup(true,(X=1;X=2), Det=yes).
X = 1 ;
X = 2,
Det = yes ;
@end example
This predicate is under consideration for inclusion into the ISO standard.
For compatibility with other Prolog implementations see @code{ call_ cleanup/2} .
2009-05-20 17:14:48 +01:00
@item setup_ call_ catcher_ cleanup(:@var{ Setup} ,:@var{ Goal} , +@var{ Catcher} ,:@var{ CleanUpGoal} )
@findex setup_ call_ catcher_ cleanup/4
@snindex setup_ call_ catcher_ cleanup/4
@cnindex setup_ call_ catcher_ cleanup/4
2009-05-26 23:57:59 +01:00
Similar to @code{ setup_ call_ cleanup(@var{ Setup} , @var{ Goal} , @var{ Cleanup} )} with
2009-05-20 07:53:14 +01:00
additional information on the reason of calling @var{ Cleanup} . Prior
to calling @var{ Cleanup} , @var{ Catcher} unifies with the termination
code. If this unification fails, @var{ Cleanup} is
@strong{ not} called.
2002-10-11 04:39:11 +01:00
@item on_ cleanup(+@var{ CleanUpGoal} )
@findex on_ cleanup/1
@syindex on_ cleanup/1
@cnindex on_ cleanup/1
Any Predicate might registers a @var{ CleanUpGoal} . The
@var{ CleanUpGoal} is put onto the current cleanup context. All such
CleanUpGoals are executed in reverse order of their registration when
the surrounding cleanup-context ends. This call will throw an exception
if a predicate tries to register a @var{ CleanUpGoal} outside of any
cleanup-context.
@item cleanup_ all
@findex cleanup_ all/0
@syindex cleanup_ all/0
@cnindex cleanup_ all/0
Calls all pending CleanUpGoals and resets the cleanup-system to an
initial state. Should only be used as one of the last calls in the
main program.
2001-04-09 20:54:03 +01:00
@end table
2002-10-11 04:39:11 +01:00
There are some private predicates which could be used in special
cases, such as manually setting up cleanup-contexts and registering
CleanUpGoals for other than the current cleanup-context.
Read the Source Luke.
2005-10-31 18:12:51 +00:00
@node Timeout, Trees, Cleanup, Library
2001-04-09 20:54:03 +01:00
@section Calls With Timeout
@cindex timeout
The @t{ time_ out/3} command relies on the @t{ alarm/3} built-in to
implement a call with a maximum time of execution. The command is
available with the @code{ use_ module(library(timeout))} command.
@table @code
2005-10-31 18:12:51 +00:00
2001-04-09 20:54:03 +01:00
@item time_ out(+@var{ Goal} , +@var{ Timeout} , -@var{ Result} )
@findex time_ out/3
@syindex time_ out/3
@cnindex time_ out/3
2002-10-11 04:39:11 +01:00
Execute goal @var{ Goal} with time limited @var{ Timeout} , where
2001-04-09 20:54:03 +01:00
@var{ Timeout} is measured in milliseconds. If the goal succeeds, unify
@var{ Result} with success. If the timer expires before the goal
2010-03-03 22:12:17 +00:00
terminates, unify @var{ Result} with @t{ time_ out} .
2001-04-09 20:54:03 +01:00
This command is implemented by activating an alarm at procedure
entry. If the timer expires before the goal completes, the alarm will
2009-05-12 23:06:33 +01:00
throw an exception @var{ timeout} .
2001-04-09 20:54:03 +01:00
One should note that @code{ time_ out/3} is not reentrant, that is, a goal
called from @code{ time_ out} should never itself call
2009-05-12 23:06:33 +01:00
@code{ time_ out/3} . Moreover, @code{ time_ out/3} will deactivate any previous
2001-04-09 20:54:03 +01:00
alarms set by @code{ alarm/3} and vice-versa, hence only one of these
calls should be used in a program.
Last, even though the timer is set in milliseconds, the current
implementation relies on @t{ alarm/3} , and therefore can only offer
precision on the scale of seconds.
@end table
@node Trees, UGraphs, Timeout, Library
@section Updatable Binary Trees
@cindex updatable tree
The following queue manipulation routines are available once
included with the @code{ use_ module(library(trees))} command.
@table @code
@item get_ label(+@var{ Index} , +@var{ Tree} , ?@var{ Label} )
@findex get_ label/3
@syindex get_ label/3
@cnindex get_ label/3
Treats the tree as an array of @var{ N} elements and returns the
@var{ Index} -th.
@item list_ to_ tree(+@var{ List} , -@var{ Tree} )
@findex list_ to_ tree/2
@syindex list_ to_ tree/2
@cnindex list_ to_ tree/2
Takes a given @var{ List} of @var{ N} elements and constructs a binary
@var{ Tree} .
@item map_ tree(+@var{ Pred} , +@var{ OldTree} , -@var{ NewTree} )
@findex map_ tree/3
@syindex map_ tree/3
@cnindex map_ tree/3
Holds when @var{ OldTree} and @var{ NewTree} are binary trees of the same shape
and @code{ Pred(Old,New)} is true for corresponding elements of the two trees.
@item put_ label(+@var{ Index} , +@var{ OldTree} , +@var{ Label} , -@var{ NewTree} )
@findex put_ label/4
@syindex put_ label/4
@cnindex put_ label/4
constructs a new tree the same shape as the old which moreover has the
same elements except that the @var{ Index} -th one is @var{ Label} .
@item tree_ size(+@var{ Tree} , -@var{ Size} )
@findex tree_ size/2
@syindex tree_ size/2
@cnindex tree_ size/2
Calculates the number of elements in the @var{ Tree} .
@item tree_ to_ list(+@var{ Tree} , -@var{ List} )
@findex tree_ to_ list/2
@syindex tree_ to_ list/2
@cnindex tree_ to_ list/2
Is the converse operation to list_ to_ tree.
@end table
2006-04-10 20:24:52 +01:00
@node UGraphs, DGraphs, Trees, Library
2001-04-09 20:54:03 +01:00
@section Unweighted Graphs
@cindex unweighted graphs
2006-04-10 20:24:52 +01:00
The following graph manipulation routines are based in code originally
2001-04-09 20:54:03 +01:00
written by Richard O'Keefe. The code was then extended to be compatible
with the SICStus Prolog ugraphs library. The routines assume directed
graphs, undirected graphs may be implemented by using two edges. Graphs
are represented in one of two ways:
@itemize @bullet
@item The P-representation of a graph is a list of (from-to) vertex
pairs, where the pairs can be in any old order. This form is
convenient for input/output.
2002-10-11 04:39:11 +01:00
@item The S-representation of a graph is a list of (vertex-neighbors)
2001-04-09 20:54:03 +01:00
pairs, where the pairs are in standard order (as produced by keysort)
2002-10-11 04:39:11 +01:00
and the neighbors of each vertex are also in standard order (as
2001-04-09 20:54:03 +01:00
produced by sort). This form is convenient for many calculations.
@end itemize
2006-02-08 19:13:11 +00:00
These built-ins are available once included with the
2001-04-09 20:54:03 +01:00
@code{ use_ module(library(ugraphs))} command.
@table @code
@item vertices_ edges_ to_ ugraph(+@var{ Vertices} , +@var{ Edges} , -@var{ Graph} )
@findex vertices_ edges_ to_ ugraph/3
@syindex vertices_ edges_ to_ ugraph/3
@cnindex vertices_ edges_ to_ ugraph/3
Given a graph with a set of vertices @var{ Vertices} and a set of edges
@var{ Edges} , @var{ Graph} must unify with the corresponding
s-representation. Note that the vertices without edges will appear in
@var{ Vertices} but not in @var{ Edges} . Moreover, it is sufficient for a
2009-04-25 16:59:23 +01:00
vertex to appear in @var{ Edges} .
2001-04-09 20:54:03 +01:00
@example
2001-04-16 17:41:04 +01:00
?- vertices_ edges_ to_ ugraph([],[1-3,2-4,4-5,1-5],L).
2001-04-09 20:54:03 +01:00
L = [1-[3,5],2-[4],3-[],4-[5],5-[]] ?
@end example
In this case all edges are defined implicitly. The next example shows
three unconnected edges:
@example
2001-04-16 17:41:04 +01:00
?- vertices_ edges_ to_ ugraph([6,7,8],[1-3,2-4,4-5,1-5],L).
2001-04-09 20:54:03 +01:00
L = [1-[3,5],2-[4],3-[],4-[5],5-[],6-[],7-[],8-[]] ?
@end example
@item vertices(+@var{ Graph} , -@var{ Vertices} )
@findex vertices/2
@syindex vertices/2
@cnindex vertices/2
Unify @var{ Vertices} with all vertices appearing in graph
@var{ Graph} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- vertices([1-[3,5],2-[4],3-[],4-[5],5-[]], V).
2001-04-09 20:54:03 +01:00
L = [1,2,3,4,5]
@end example
@item edges(+@var{ Graph} , -@var{ Edges} )
2006-04-10 20:24:52 +01:00
@findex edges/2
@syindex edges/2
@cnindex edges/2
2001-04-09 20:54:03 +01:00
Unify @var{ Edges} with all edges appearing in graph
@var{ Graph} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- vertices([1-[3,5],2-[4],3-[],4-[5],5-[]], V).
2001-04-09 20:54:03 +01:00
L = [1,2,3,4,5]
@end example
2001-04-26 15:44:43 +01:00
@item add_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
2001-04-09 20:54:03 +01:00
@findex add_ vertices/3
@syindex add_ vertices/3
@cnindex add_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
vertices @var{ Vertices} to the graph @var{ Graph} . In the next example:
@example
2001-04-26 15:44:43 +01:00
?- add_ vertices([1-[3,5],2-[4],3-[],4-[5],
5-[],6-[],7-[],8-[]],
[0,2,9,10,11],
NG).
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
NG = [0-[],1-[3,5],2-[4],3-[],4-[5],5-[],
6-[],7-[],8-[],9-[],10-[],11-[]]
2001-04-09 20:54:03 +01:00
@end example
2007-12-05 12:17:25 +00:00
@item del_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
2001-04-09 20:54:03 +01:00
@findex del_ vertices/3
@syindex del_ vertices/3
@cnindex del_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by deleting the list of
vertices @var{ Vertices} and all the edges that start from or go to a
vertex in @var{ Vertices} to the graph @var{ Graph} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- del_ vertices([2,1],[1-[3,5],2-[4],3-[],
4-[5],5-[],6-[],7-[2,6],8-[]],NL).
2001-04-09 20:54:03 +01:00
NL = [3-[],4-[5],5-[],6-[],7-[6],8-[]]
@end example
@item add_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex add_ edges/3
@syindex add_ edges/3
@cnindex add_ edges/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
edges @var{ Edges} to the graph @var{ Graph} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- add_ edges([1-[3,5],2-[4],3-[],4-[5],5-[],6-[],
7-[],8-[]],[1-6,2-3,3-2,5-7,3-2,4-5],NL).
2001-04-09 20:54:03 +01:00
NL = [1-[3,5,6],2-[3,4],3-[2],4-[5],5-[7],6-[],7-[],8-[]]
@end example
2006-04-10 20:24:52 +01:00
@item del_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex del_ edges/3
@syindex del_ edges/3
@cnindex del_ edges/3
2001-04-09 20:54:03 +01:00
Unify @var{ NewGraph} with a new graph obtained by removing the list of
edges @var{ Edges} from the graph @var{ Graph} . Notice that no vertices
are deleted. In the next example:
@example
2001-04-16 17:41:04 +01:00
?- del_ edges([1-[3,5],2-[4],3-[],4-[5],5-[],
6-[],7-[],8-[]],
[1-6,2-3,3-2,5-7,3-2,4-5,1-3],NL).
2001-04-09 20:54:03 +01:00
NL = [1-[5],2-[4],3-[],4-[],5-[],6-[],7-[],8-[]]
@end example
@item transpose(+@var{ Graph} , -@var{ NewGraph} )
@findex transpose/3
@syindex transpose/3
@cnindex transpose/3
Unify @var{ NewGraph} with a new graph obtained from @var{ Graph} by
replacing all edges of the form @var{ V1-V2} by edges of the form
@var{ V2-V1} . The cost is @code{ O(|V|^ 2)} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- transpose([1-[3,5],2-[4],3-[],
4-[5],5-[],6-[],7-[],8-[]], NL).
2001-04-09 20:54:03 +01:00
NL = [1-[],2-[],3-[1],4-[2],5-[1,4],6-[],7-[],8-[]]
@end example
Notice that an undirected graph is its own transpose.
@item neighbors(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex neighbors/3
@syindex neighbors/3
@cnindex neighbors/3
Unify @var{ Vertices} with the list of neighbors of vertex @var{ Vertex}
in @var{ Graph} . If the vertice is not in the graph fail. In the next
example:
@example
2001-04-16 17:41:04 +01:00
?- neighbors(4,[1-[3,5],2-[4],3-[],
4-[1,2,7,5],5-[],6-[],7-[],8-[]],
NL).
2001-04-09 20:54:03 +01:00
NL = [1,2,7,5]
@end example
@item neighbours(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex neighbours/3
@syindex neighbours/3
@cnindex neighbours/3
Unify @var{ Vertices} with the list of neighbours of vertex @var{ Vertex}
in @var{ Graph} . In the next example:
@example
2001-04-16 17:41:04 +01:00
?- neighbours(4,[1-[3,5],2-[4],3-[],
4-[1,2,7,5],5-[],6-[],7-[],8-[]], NL).
2001-04-09 20:54:03 +01:00
NL = [1,2,7,5]
@end example
@item complement(+@var{ Graph} , -@var{ NewGraph} )
@findex complement/2
@syindex complement/2
@cnindex complement/2
2002-10-11 04:39:11 +01:00
Unify @var{ NewGraph} with the graph complementary to @var{ Graph} .
2001-04-09 20:54:03 +01:00
In the next example:
@example
2001-04-16 17:41:04 +01:00
?- complement([1-[3,5],2-[4],3-[],
4-[1,2,7,5],5-[],6-[],7-[],8-[]], NL).
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
NL = [1-[2,4,6,7,8],2-[1,3,5,6,7,8],3-[1,2,4,5,6,7,8],
4-[3,5,6,8],5-[1,2,3,4,6,7,8],6-[1,2,3,4,5,7,8],
7-[1,2,3,4,5,6,8],8-[1,2,3,4,5,6,7]]
2001-04-09 20:54:03 +01:00
@end example
@item compose(+@var{ LeftGraph} , +@var{ RightGraph} , -@var{ NewGraph} )
@findex compose/3
@syindex compose/3
@cnindex compose/3
Compose the graphs @var{ LeftGraph} and @var{ RightGraph} to form @var{ NewGraph} .
In the next example:
@example
2001-04-16 17:41:04 +01:00
?- compose([1-[2],2-[3]],[2-[4],3-[1,2,4]],L).
2001-04-09 20:54:03 +01:00
L = [1-[4],2-[1,2,4],3-[]]
@end example
2002-10-11 04:39:11 +01:00
@item top_ sort(+@var{ Graph} , -@var{ Sort} )
2001-04-09 20:54:03 +01:00
@findex top_ sort/2
@syindex top_ sort/2
@cnindex top_ sort/2
Generate the set of nodes @var{ Sort} as a topological sorting of graph
@var{ Graph} , if one is possible.
In the next example we show how topological sorting works for a linear graph:
@example
2001-04-16 17:41:04 +01:00
?- top_ sort([_ 138-[_ 219],_ 219-[_ 139], _ 139-[]],L).
2001-04-09 20:54:03 +01:00
L = [_ 138,_ 219,_ 139]
@end example
2005-08-17 14:35:52 +01:00
@item top_ sort(+@var{ Graph} , -@var{ Sort0} , -@var{ Sort} )
@findex top_ sort/3
@syindex top_ sort/3
@cnindex top_ sort/3
Generate the difference list @var{ Sort} -@var{ Sort0} as a topological
sorting of graph @var{ Graph} , if one is possible.
2001-04-09 20:54:03 +01:00
@item transitive_ closure(+@var{ Graph} , +@var{ Closure} )
@findex transitive_ closure/2
@syindex transitive_ closure/2
@cnindex transitive_ closure/2
Generate the graph @var{ Closure} as the transitive closure of graph
@var{ Graph} .
In the next example:
@example
2001-04-16 17:41:04 +01:00
?- transitive_ closure([1-[2,3],2-[4,5],4-[6]],L).
2001-04-09 20:54:03 +01:00
L = [1-[2,3,4,5,6],2-[4,5,6],4-[6]]
@end example
2002-01-27 21:35:39 +00:00
@item reachable(+@var{ Node} , +@var{ Graph} , -@var{ Vertices} )
@findex reachable/3
@syindex reachable/3
@cnindex reachable/3
Unify @var{ Vertices} with the set of all vertices in graph
2002-02-04 16:12:54 +00:00
@var{ Graph} that are reachable from @var{ Node} . In the next example:
2002-01-27 21:35:39 +00:00
@example
?- reachable(1,[1-[3,5],2-[4],3-[],4-[5],5-[]],V).
V = [1,3,5]
@end example
2001-04-09 20:54:03 +01:00
@end table
2006-04-10 20:24:52 +01:00
@node DGraphs, UnDGraphs, UGraphs, Library
@section Directed Graphs
@cindex Efficient Directed Graphs
The following graph manipulation routines use the red-black tree library
to try to avoid linear-time scans of the graph for all graph
operations. Graphs are represented as a red-black tree, where the key is
the vertex, and the associated value is a list of vertices reachable
from that vertex through an edge (ie, a list of edges).
@table @code
@item dgraph_ new(+@var{ Graph} )
@findex dgraph_ new/1
@snindex dgraph_ new/1
@cnindex dgraph_ new/1
Create a new directed graph. This operation must be performed before
trying to use the graph.
@item dgraph_ vertices(+@var{ Graph} , -@var{ Vertices} )
@findex dgraph_ vertices/2
@snindex dgraph_ vertices/2
@cnindex dgraph_ vertices/2
Unify @var{ Vertices} with all vertices appearing in graph
@var{ Graph} .
2006-04-20 16:28:08 +01:00
@item dgraph_ edge(+@var{ N1} , +@var{ N2} , +@var{ Graph} )
@findex dgraph_ edge/2
@snindex dgraph_ edge/2
@cnindex dgraph_ edge/2
Edge @var{ N1} -@var{ N2} is an edge in directed graph @var{ Graph} .
2006-04-10 20:24:52 +01:00
@item dgraph_ edges(+@var{ Graph} , -@var{ Edges} )
@findex dgraph_ edges/2
@snindex dgraph_ edges/2
@cnindex dgraph_ edges/2
Unify @var{ Edges} with all edges appearing in graph
@var{ Graph} .
2008-06-26 14:09:15 +01:00
@item dgraph_ add_ vertices(+@var{ Graph} , +@var{ Vertex} , -@var{ NewGraph} )
@findex dgraph_ add_ vertex/3
@snindex dgraph_ add_ vertex/3
@cnindex dgraph_ add_ vertex/3
Unify @var{ NewGraph} with a new graph obtained by adding
vertex @var{ Vertex} to the graph @var{ Graph} .
2006-04-10 20:24:52 +01:00
@item dgraph_ add_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
@findex dgraph_ add_ vertices/3
@snindex dgraph_ add_ vertices/3
@cnindex dgraph_ add_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
vertices @var{ Vertices} to the graph @var{ Graph} .
2008-06-26 14:09:15 +01:00
@item dgraph_ del_ vertex(+@var{ Graph} , +@var{ Vertex} , -@var{ NewGraph} )
@findex dgraph_ del_ vertex/3
@syindex dgraph_ del_ vertex/3
@cnindex dgraph_ del_ vertex/3
Unify @var{ NewGraph} with a new graph obtained by deleting vertex
@var{ Vertex} and all the edges that start from or go to @var{ Vertex} to
the graph @var{ Graph} .
@item dgraph_ del_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
2006-04-10 20:24:52 +01:00
@findex dgraph_ del_ vertices/3
@syindex dgraph_ del_ vertices/3
@cnindex dgraph_ del_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by deleting the list of
vertices @var{ Vertices} and all the edges that start from or go to a
vertex in @var{ Vertices} to the graph @var{ Graph} .
2008-06-26 14:09:15 +01:00
@item dgraph_ add_ edge(+@var{ Graph} , +@var{ N1} , +@var{ N2} , -@var{ NewGraph} )
@findex dgraph_ add_ edge/4
@snindex dgraph_ add_ edge/4
@cnindex dgraph_ add_ edge/4
Unify @var{ NewGraph} with a new graph obtained by adding the edge
@var{ N1} -@var{ N2} to the graph @var{ Graph} .
2006-04-10 20:24:52 +01:00
@item dgraph_ add_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex dgraph_ add_ edges/3
@snindex dgraph_ add_ edges/3
@cnindex dgraph_ add_ edges/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
edges @var{ Edges} to the graph @var{ Graph} .
2008-06-26 14:09:15 +01:00
@item dgraph_ del_ edge(+@var{ Graph} , +@var{ N1} , +@var{ N2} , -@var{ NewGraph} )
@findex dgraph_ del_ edge/4
@snindex dgraph_ del_ edge/4
@cnindex dgraph_ del_ edge/4
Succeeds if @var{ NewGraph} unifies with a new graph obtained by
removing the edge @var{ N1} -@var{ N2} from the graph @var{ Graph} . Notice
that no vertices are deleted.
2006-04-10 20:24:52 +01:00
@item dgraph_ del_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex dgraph_ del_ edges/3
@snindex dgraph_ del_ edges/3
@cnindex dgraph_ del_ edges/3
Unify @var{ NewGraph} with a new graph obtained by removing the list of
edges @var{ Edges} from the graph @var{ Graph} . Notice that no vertices
are deleted.
2008-06-26 14:09:15 +01:00
@item dgraph_ to_ ugraph(+@var{ Graph} , -@var{ UGraph} )
@findex dgraph_ to_ ugraph/2
@snindex dgraph_ to_ ugraph/2
@cnindex dgraph_ to_ ugraph/2
Unify @var{ UGraph} with the representation used by the @var{ ugraphs}
unweighted graphs library, that is, a list of the form
@var{ V-Neighbors} , where @var{ V} is a node and @var{ Neighbors} the nodes
children.
@item ugraph_ to_ dgraph( +@var{ UGraph} , -@var{ Graph} )
@findex ugraph_ to_ dgraph/2
@snindex ugraph_ to_ dgraph/2
@cnindex ugraph_ to_ dgraph/2
Unify @var{ Graph} with the directed graph obtain from @var{ UGraph} ,
represented in the form used in the @var{ ugraphs} unweighted graphs
library.
2006-04-10 20:24:52 +01:00
@item dgraph_ neighbors(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex dgraph_ neighbors/3
@snindex dgraph_ neighbors/3
@cnindex dgraph_ neighbors/3
Unify @var{ Vertices} with the list of neighbors of vertex @var{ Vertex}
in @var{ Graph} . If the vertice is not in the graph fail.
@item dgraph_ neighbours(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex dgraph_ neighbours/3
@snindex dgraph_ neighbours/3
@cnindex dgraph_ neighbours/3
Unify @var{ Vertices} with the list of neighbours of vertex @var{ Vertex}
in @var{ Graph} .
@item dgraph_ complement(+@var{ Graph} , -@var{ NewGraph} )
@findex dgraph_ complement/2
@snindex dgraph_ complement/2
@cnindex dgraph_ complement/2
Unify @var{ NewGraph} with the graph complementary to @var{ Graph} .
@item dgraph_ transpose(+@var{ Graph} , -@var{ Transpose} )
@findex dgraph_ transpose/2
@snindex dgraph_ transpose/2
@cnindex dgraph_ transpose/2
Unify @var{ NewGraph} with a new graph obtained from @var{ Graph} by
replacing all edges of the form @var{ V1-V2} by edges of the form
@var{ V2-V1} .
2008-06-26 14:09:15 +01:00
@item dgraph_ compose(+@var{ Graph1} , +@var{ Graph2} , -@var{ ComposedGraph} )
2006-04-10 20:24:52 +01:00
@findex dgraph_ compose/3
@snindex dgraph_ compose/3
@cnindex dgraph_ compose/3
Unify @var{ ComposedGraph} with a new graph obtained by composing
@var{ Graph1} and @var{ Graph2} , ie, @var{ ComposedGraph} has an edge
@var{ V1-V2} iff there is a @var{ V} such that @var{ V1-V} in @var{ Graph1}
and @var{ V-V2} in @var{ Graph2} .
@item dgraph_ transitive_ closure(+@var{ Graph} , -@var{ Closure} )
@findex dgraph_ transitive_ closure/2
@snindex dgraph_ transitive_ closure/2
@cnindex dgraph_ transitive_ closure/2
Unify @var{ Closure} with the transitive closure of graph @var{ Graph} .
@item dgraph_ symmetric_ closure(+@var{ Graph} , -@var{ Closure} )
@findex dgraph_ symmetric_ closure/2
@snindex dgraph_ symmetric_ closure/2
@cnindex dgraph_ symmetric_ closure/2
Unify @var{ Closure} with the symmetric closure of graph @var{ Graph} ,
that is, if @var{ Closure} contains an edge @var{ U-V} it must also
contain the edge @var{ V-U} .
@item dgraph_ top_ sort(+@var{ Graph} , -@var{ Vertices} )
@findex dgraph_ top_ sort/2
@snindex dgraph_ top_ sort/2
@cnindex dgraph_ top_ sort/2
Unify @var{ Vertices} with the topological sort of graph @var{ Graph} .
2008-06-26 14:09:15 +01:00
@item dgraph_ top_ sort(+@var{ Graph} , -@var{ Vertices} , ?@var{ Vertices0} )
@findex dgraph_ top_ sort/3
@snindex dgraph_ top_ sort/3
@cnindex dgraph_ top_ sort/3
Unify the difference list @var{ Vertices} -@var{ Vertices0} with the
topological sort of graph @var{ Graph} .
@item dgraph_ min_ path(+@var{ V1} , +@var{ V1} , +@var{ Graph} , -@var{ Path} , ?@var{ Costt} )
@findex dgraph_ min_ path/5
@snindex dgraph_ min_ path/5
@cnindex dgraph_ min_ path/5
Unify the list @var{ Path} with the minimal cost path between nodes
@var{ N1} and @var{ N2} in graph @var{ Graph} . Path @var{ Path} has cost
@var{ Cost} .
@item dgraph_ max_ path(+@var{ V1} , +@var{ V1} , +@var{ Graph} , -@var{ Path} , ?@var{ Costt} )
@findex dgraph_ max_ path/5
@snindex dgraph_ max_ path/5
@cnindex dgraph_ max_ path/5
Unify the list @var{ Path} with the maximal cost path between nodes
@var{ N1} and @var{ N2} in graph @var{ Graph} . Path @var{ Path} has cost
@var{ Cost} .
@item dgraph_ min_ paths(+@var{ V1} , +@var{ Graph} , -@var{ Paths} )
@findex dgraph_ min_ paths/3
@snindex dgraph_ min_ paths/3
@cnindex dgraph_ min_ paths/3
Unify the list @var{ Paths} with the minimal cost paths from node
@var{ N1} to the nodes in graph @var{ Graph} .
@item dgraph_ isomorphic(+@var{ Vs} , +@var{ NewVs} , +@var{ G0} , -@var{ GF} )
@findex dgraph_ isomorphic/4
@snindex dgraph_ isomorphic/4
@cnindex dgraph_ isomorphic/4
Unify the list @var{ GF} with the graph isomorphic to @var{ G0} where
vertices in @var{ Vs} map to vertices in @var{ NewVs} .
@item dgraph_ path(+@var{ Vertex} , +@var{ Graph} , ?@var{ Path} )
@findex dgraph_ path/3
@snindex dgraph_ path/3
@cnindex dgraph_ path/3
The path @var{ Path} is a path starting at vertex @var{ Vertex} in graph
@var{ Graph} .
@item dgraph_ reachable(+@var{ Vertex} , +@var{ Graph} , ?@var{ Edges} )
@findex dgraph_ path/3
@snindex dgraph_ path/3
@cnindex dgraph_ path/3
The path @var{ Path} is a path starting at vertex @var{ Vertex} in graph
@var{ Graph} .
2006-04-20 16:28:08 +01:00
2006-04-10 20:24:52 +01:00
@end table
2010-08-04 23:26:50 +01:00
@node UnDGraphs, Lambda , DGraphs, Library
2006-04-10 20:24:52 +01:00
@section Undirected Graphs
2009-04-25 16:59:23 +01:00
@cindex undirected graphs
2006-04-10 20:24:52 +01:00
The following graph manipulation routines use the red-black tree graph
library to implement undirected graphs. Mostly, this is done by having
two directed edges per undirected edge.
@table @code
@item undgraph_ new(+@var{ Graph} )
@findex undgraph_ new/1
@snindex undgraph_ new/1
@cnindex undgraph_ new/1
Create a new directed graph. This operation must be performed before
trying to use the graph.
@item undgraph_ vertices(+@var{ Graph} , -@var{ Vertices} )
@findex undgraph_ vertices/2
@snindex undgraph_ vertices/2
@cnindex undgraph_ vertices/2
Unify @var{ Vertices} with all vertices appearing in graph
@var{ Graph} .
2006-04-20 16:28:08 +01:00
@item undgraph_ edge(+@var{ N1} , +@var{ N2} , +@var{ Graph} )
@findex undgraph_ edge/2
@snindex undgraph_ edge/2
@cnindex undgraph_ edge/2
Edge @var{ N1} -@var{ N2} is an edge in undirected graph @var{ Graph} .
2006-04-10 20:24:52 +01:00
@item undgraph_ edges(+@var{ Graph} , -@var{ Edges} )
@findex undgraph_ edges/2
@snindex undgraph_ edges/2
@cnindex undgraph_ edges/2
Unify @var{ Edges} with all edges appearing in graph
@var{ Graph} .
@item undgraph_ add_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
@findex undgraph_ add_ vertices/3
@snindex undgraph_ add_ vertices/3
@cnindex undgraph_ add_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
vertices @var{ Vertices} to the graph @var{ Graph} .
2007-12-05 12:17:25 +00:00
@item undgraph_ del_ vertices(+@var{ Graph} , +@var{ Vertices} , -@var{ NewGraph} )
2006-04-10 20:24:52 +01:00
@findex undgraph_ del_ vertices/3
@syindex undgraph_ del_ vertices/3
@cnindex undgraph_ del_ vertices/3
Unify @var{ NewGraph} with a new graph obtained by deleting the list of
vertices @var{ Vertices} and all the edges that start from or go to a
vertex in @var{ Vertices} to the graph @var{ Graph} .
@item undgraph_ add_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex undgraph_ add_ edges/3
@snindex undgraph_ add_ edges/3
@cnindex undgraph_ add_ edges/3
Unify @var{ NewGraph} with a new graph obtained by adding the list of
edges @var{ Edges} to the graph @var{ Graph} .
@item undgraph_ del_ edges(+@var{ Graph} , +@var{ Edges} , -@var{ NewGraph} )
@findex undgraph_ del_ edges/3
@snindex undgraph_ del_ edges/3
@cnindex undgraph_ del_ edges/3
Unify @var{ NewGraph} with a new graph obtained by removing the list of
edges @var{ Edges} from the graph @var{ Graph} . Notice that no vertices
are deleted.
@item undgraph_ neighbors(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex undgraph_ neighbors/3
@snindex undgraph_ neighbors/3
@cnindex undgraph_ neighbors/3
Unify @var{ Vertices} with the list of neighbors of vertex @var{ Vertex}
in @var{ Graph} . If the vertice is not in the graph fail.
@item undgraph_ neighbours(+@var{ Vertex} , +@var{ Graph} , -@var{ Vertices} )
@findex undgraph_ neighbours/3
@snindex undgraph_ neighbours/3
@cnindex undgraph_ neighbours/3
Unify @var{ Vertices} with the list of neighbours of vertex @var{ Vertex}
in @var{ Graph} .
@item undgraph_ complement(+@var{ Graph} , -@var{ NewGraph} )
@findex undgraph_ complement/2
@snindex undgraph_ complement/2
@cnindex undgraph_ complement/2
Unify @var{ NewGraph} with the graph complementary to @var{ Graph} .
2006-04-20 16:28:08 +01:00
@item dgraph_ to_ undgraph( +@var{ DGraph} , -@var{ UndGraph} )
@findex dgraph_ to_ undgraph/2
@snindex dgraph_ to_ undgraph/2
@cnindex dgraph_ to_ undgraph/2
2009-04-25 16:59:23 +01:00
Unify @var{ UndGraph} with the undirected graph obtained from the
2006-04-20 16:28:08 +01:00
directed graph @var{ DGraph} .
2006-04-10 20:24:52 +01:00
@end table
2010-08-04 23:26:50 +01:00
@node Lambda, LAM, UnDGraphs, Library
@section Lambda Expressions
@cindex Lambda Expressions
This library, designed and implemented by Ulrich Neumerkel, provides
lambda expressions to simplify higher order programming based on @code{ call/N} .
Lambda expressions are represented by ordinary Prolog terms. There are
two kinds of lambda expressions:
@example
Free+\X 1^ X2^ ..^ XN^ Goal
\X 1^ X2^ ..^ XN^ Goal
@end example
The second is a shorthand for@code{ t+\X 1^ X2^ ..^ XN^ Goal} , where @code{ Xi} are the parameters.
@var{ Goal} is a goal or continuation (Syntax note: @var{ Operators} within @var{ Goal}
require parentheses due to the low precedence of the @code{ ^ } operator).
Free contains variables that are valid outside the scope of the lambda
expression. They are thus free variables within.
All other variables of @var{ Goal} are considered local variables. They must
not appear outside the lambda expression. This restriction is
currently not checked. Violations may lead to unexpected bindings.
In the following example the parentheses around @code{ X>3} are necessary.
@example
?- use_ module(library(lambda)).
?- use_ module(library(apply)).
?- maplist(\X ^ (X>3),[4,5,9]).
true.
@end example
In the following @var{ X} is a variable that is shared by both instances
of the lambda expression. The second query illustrates the cooperation
of continuations and lambdas. The lambda expression is in this case a
continuation expecting a further argument.
@example
?- Xs = [A,B], maplist(X+\Y ^ dif(X,Y), Xs).
Xs = [A, B],
dif(X, A),
dif(X, B).
?- Xs = [A,B], maplist(X+\dif (X), Xs).
Xs = [A, B],
dif(X, A),
dif(X, B).
@end example
The following queries are all equivalent. To see this, use
the fact @code{ f(x,y)} .
@example
?- call(f,A1,A2).
?- call(\X ^ f(X),A1,A2).
?- call(\X ^ Y^ f(X,Y), A1,A2).
?- call(\X ^ (X+\Y ^ f(X,Y)), A1,A2).
?- call(call(f, A1),A2).
?- call(f(A1),A2).
?- f(A1,A2).
A1 = x,
A2 = y.
@end example
Further discussions
at @url{ http://www.complang.tuwien.ac.at/ulrich/Prolog-inedit/ISO-Hiord} .
2010-12-02 19:57:55 +00:00
@node LAM, Block Diagram, Lambda, Library
2006-06-02 05:23:09 +01:00
@section LAM
@cindex lam
This library provides a set of utilities for interfacing with LAM MPI.
The following routines are available once included with the
@code{ use_ module(library(lam_ mpi))} command. The yap should be
invoked using the LAM mpiexec or mpirun commands (see LAM manual for
more details).
@table @code
@item mpi_ init
@findex mpi_ init/0
@snindex mpi_ init/0
@cnindex mpi_ init/0
Sets up the mpi environment. This predicate should be called before any other MPI predicate.
@item mpi_ finalize
@findex mpi_ finalize/0
@snindex mpi_ finalize/0
@cnindex mpi_ finalize/0
Terminates the MPI execution environment. Every process must call this predicate before exiting.
@item mpi_ comm_ size(-@var{ Size} )
@findex mpi_ comm_ size/1
@snindex mpi_ comm_ size/1
@cnindex mpi_ comm_ size/1
Unifies @var{ Size} with the number of processes in the MPI environment.
@item mpi_ comm_ rank(-@var{ Rank} )
@findex mpi_ comm_ rank/1
@snindex mpi_ comm_ rank/1
@cnindex mpi_ comm_ rank/1
Unifies @var{ Rank} with the rank of the current process in the MPI environment.
@item mpi_ version(-@var{ Major} ,-@var{ Minor} )
@findex mpi_ version/2
@snindex mpi_ version/2
@cnindex mpi_ version/2
Unifies @var{ Major} and @var{ Minor} with, respectively, the major and minor version of the MPI.
@item mpi_ send(+@var{ Data} ,+@var{ Dest} ,+@var{ Tag} )
@findex mpi_ send/3
@snindex mpi_ send/3
@cnindex mpi_ send/3
Blocking communication predicate. The message in @var{ Data} , with tag
@var{ Tag} , is sent immediately to the processor with rank @var{ Dest} .
The predicate succeeds after the message being sent.
@item mpi_ isend(+@var{ Data} ,+@var{ Dest} ,+@var{ Tag} ,-@var{ Handle} )
@findex mpi_ isend/4
@snindex mpi_ isend/4
@cnindex mpi_ isend/4
Non blocking communication predicate. The message in @var{ Data} , with
tag @var{ Tag} , is sent whenever possible to the processor with rank
@var{ Dest} . An @var{ Handle} to the message is returned to be used to
check for the status of the message, using the @code{ mpi_ wait} or
@code{ mpi_ test} predicates. Until @code{ mpi_ wait} is called, the
memory allocated for the buffer containing the message is not
released.
@item mpi_ recv(?@var{ Source} ,?@var{ Tag} ,-@var{ Data} )
@findex mpi_ recv/3
@snindex mpi_ recv/3
@cnindex mpi_ recv/3
Blocking communication predicate. The predicate blocks until a message
is received from processor with rank @var{ Source} and tag @var{ Tag} .
The message is placed in @var{ Data} .
@item mpi_ irecv(?@var{ Source} ,?@var{ Tag} ,-@var{ Handle} )
@findex mpi_ irecv/3
@snindex mpi_ irecv/3
@cnindex mpi_ irecv/3
Non-blocking communication predicate. The predicate returns an
@var{ Handle} for a message that will be received from processor with
rank @var{ Source} and tag @var{ Tag} . Note that the predicate succeeds
immediately, even if no message has been received. The predicate
@code{ mpi_ wait_ recv} should be used to obtain the data associated to
the handle.
@item mpi_ wait_ recv(?@var{ Handle} ,-@var{ Status} ,-@var{ Data} )
@findex mpi_ wait_ recv/3
@snindex mpi_ wait_ recv/3
@cnindex mpi_ wait_ recv/3
Completes a non-blocking receive operation. The predicate blocks until
a message associated with handle @var{ Hanlde} is buffered. The
predicate succeeds unifying @var{ Status} with the status of the
message and @var{ Data} with the message itself.
@item mpi_ test_ recv(?@var{ Handle} ,-@var{ Status} ,-@var{ Data} )
@findex mpi_ test_ recv/3
@snindex mpi_ test_ recv/3
@cnindex mpi_ test_ recv/3
Provides information regarding a handle. If the message associated
with handle @var{ Hanlde} is buffered then the predicate succeeds
unifying @var{ Status} with the status of the message and @var{ Data}
with the message itself. Otherwise, the predicate fails.
@item mpi_ wait(?@var{ Handle} ,-@var{ Status} )
@findex mpi_ wait/2
@snindex mpi_ wait/2
@cnindex mpi_ wait/2
Completes a non-blocking operation. If the operation was a
@code{ mpi_ send} , the predicate blocks until the message is buffered
or sent by the runtime system. At this point the send buffer is
released. If the operation was a @code{ mpi_ recv} , it waits until the
message is copied to the receive buffer. @var{ Status} is unified with
the status of the message.
@item mpi_ test(?@var{ Handle} ,-@var{ Status} )
@findex mpi_ test/2
@snindex mpi_ test/2
@cnindex mpi_ test/2
Provides information regarding the handle @var{ Handle} , ie., if a
communication operation has been completed. If the operation
associate with @var{ Hanlde} has been completed the predicate succeeds
with the completion status in @var{ Status} , otherwise it fails.
@item mpi_ barrier
@findex mpi_ barrier/0
@snindex mpi_ barrier/0
@cnindex mpi_ barrier/0
Collective communication predicate. Performs a barrier
synchronization among all processes. Note that a collective
communication means that all processes call the same predicate. To be
able to use a regular @code{ mpi_ recv} to receive the messages, one
should use @code{ mpi_ bcast2} .
@item mpi_ bcast2(+@var{ Root} , +@var{ Data} )
@findex mpi_ bcast/2
@snindex mpi_ bcast/2
@cnindex mpi_ bcast/2
Broadcasts the message @var{ Data} from the process with rank @var{ Root}
to all other processes.
@item mpi_ bcast3(+@var{ Root} , +@var{ Data} , +@var{ Tag} )
@findex mpi_ bcast/3
@snindex mpi_ bcast/3
@cnindex mpi_ bcast/3
Broadcasts the message @var{ Data} with tag @var{ Tag} from the process with rank @var{ Root}
to all other processes.
@item mpi_ ibcast(+@var{ Root} , +@var{ Data} , +@var{ Tag} )
@findex mpi_ bcast/3
@snindex mpi_ bcast/3
@cnindex mpi_ bcast/3
Non-blocking operation. Broadcasts the message @var{ Data} with tag @var{ Tag}
from the process with rank @var{ Root} to all other processes.
@item mpi_ gc
@findex mpi_ gc/0
@snindex mpi_ gc/0
@cnindex mpi_ gc/0
Attempts to perform garbage collection with all the open handles
associated with send and non-blocking broadcasts. For each handle it
tests it and the message has been delivered the handle and the buffer
are released.
@end table
2010-12-02 19:57:55 +00:00
@node Block Diagram, , LAM, Library
2010-11-23 12:24:05 +00:00
@section Block Diagram
@cindex Block Diagram
This library provides a way of visualizing a prolog program using modules with blocks.
To use it use: @code{ :-use_ module(library(block_ diagram))} .
@table @code
@item make_ diagram(+inputfilename, +ouputfilename)
@findex make_ diagram/2
@snindex make_ diagram/2
@cnindex make_ diagram/2
This will crawl the files following the use_ module, ensure_ loaded directives withing the inputfilename.
The result will be a file in dot format.
You can make a pdf at the shell by asking @code{ dot -Tpdf filename > output.pdf} .
@item make_ diagram(+inputfilename, +ouputfilename, +predicate, +depth, +extension)
@findex make_ diagram/2
@snindex make_ diagram/2
@cnindex make_ diagram/2
The same as @code{ make_ diagram/2} but you can define how many of the imported/exporeted predicates will be shown with predicate, and how deep the crawler is allowed to go with depth. The extension is used if the file use module directives do not include a file extension.
@end table
2006-04-10 20:24:52 +01:00
2010-03-12 10:19:55 +00:00
@node SWI-Prolog, SWI-Prolog Global Variables, Library, Top
2005-10-31 18:12:51 +00:00
@cindex SWI-Prolog
@menu SWI-Prolog Emulation
Subnodes of SWI-Prolog
* Invoking Predicates on all Members of a List :: maplist and friends
2006-02-08 19:13:11 +00:00
* Forall :: forall built-in
2005-10-31 18:12:51 +00:00
@end menu
2005-11-01 18:19:44 +00:00
@include swi.tex
2001-04-09 20:54:03 +01:00
2010-03-12 10:19:55 +00:00
@node Extensions,Debugging,SWI-Prolog Global Variables,Top
@chapter Extensions to Prolog
YAP includes several extensions that are not enabled by
default, but that can be used to extend the functionality of the
system. These options can be set at compilation time by enabling the
related compilation flag, as explained in the @code{ Makefile}
2001-04-09 20:54:03 +01:00
@menu
2001-04-16 17:41:04 +01:00
Extensions to Traditional Prolog
2001-04-09 20:54:03 +01:00
* Rational Trees:: Working with Rational Trees
2007-02-18 00:26:36 +00:00
* Co-routining:: Changing the Execution of Goals
2001-04-09 20:54:03 +01:00
* Attributed Variables:: Using attributed Variables
2005-11-01 18:19:44 +00:00
* CLPR:: The CLP(R) System
2001-05-21 21:03:51 +01:00
* Logtalk:: The Logtalk Object-Oriented system
2010-09-07 15:51:59 +01:00
* MYDDAS:: The MYDDAS Database Interface package
2004-03-05 17:27:53 +00:00
* Threads:: Thread Library
2001-04-09 20:54:03 +01:00
* Parallelism:: Running in Or-Parallel
* Tabling:: Storing Intermediate Solutions of programs
* Low Level Profiling:: Profiling Abstract Machine Instructions
* Low Level Tracing:: Tracing at Abstract Machine Level
@end menu
2007-02-18 00:26:36 +00:00
@node Rational Trees, Co-routining, , Extensions
2005-10-31 18:12:51 +00:00
@section Rational Trees
2001-04-09 20:54:03 +01:00
Prolog unification is not a complete implementation. For efficiency
considerations, Prolog systems do not perform occur checks while
unifying terms. As an example, @code{ X = a(X)} will not fail but instead
will create an infinite term of the form @code{ a(a(a(a(a(...)))))} , or
@emph{ rational tree} .
2009-05-18 15:36:00 +01:00
Rational trees are now supported by default in YAP. In previous
2005-10-31 18:12:51 +00:00
versions, this was not the default and these terms could easily lead
to infinite computation. For example, @code{ X = a(X), X = X} would
enter an infinite loop.
2001-04-09 20:54:03 +01:00
The @code{ RATIONAL_ TREES} flag improves support for these
terms. Internal primitives are now aware that these terms can exist, and
will not enter infinite loops. Hence, the previous unification will
succeed. Another example, @code{ X = a(X), ground(X)} will succeed
2006-02-08 19:13:11 +00:00
instead of looping. Other affected built-ins include the term comparison
2001-04-09 20:54:03 +01:00
primitives, @code{ numbervars/3} , @code{ copy_ term/2} , and the internal
data base routines. The support does not extend to Input/Output routines
or to @code{ assert/1} YAP does not allow directly reading
rational trees, and you need to use @code{ write_ depth/2} to avoid
entering an infinite cycle when trying to write an infinite term.
2007-02-18 00:26:36 +00:00
@node Co-routining, Attributed Variables, Rational Trees, Extensions
@section Co-routining
2001-04-09 20:54:03 +01:00
Prolog uses a simple left-to-right flow of control. It is sometimes
convenient to change this control so that goals will only be executed
when conditions are fulfilled. This may result in a more "data-driven"
execution, or may be necessary to correctly implement extensions such as
negation by default.
The @code{ COROUTINING} flag enables this option. Note that the support for
coroutining will in general slow down execution.
The following declaration is supported:
@table @code
@item block/1
The argument to @code{ block/1} is a condition on a goal or a conjunction
of conditions, with each element separated by commas. Each condition is
of the form @code{ predname(@var{ C1} ,...,@var{ CN} )} , where @var{ N} is the
arity of the goal, and each @var{ CI} is of the form @code{ -} , if the
2010-09-30 20:52:20 +01:00
argument must suspend until the first such variable is bound, or
@code{ ?} , otherwise.
2001-04-09 20:54:03 +01:00
@item wait/1
The argument to @code{ wait/1} is a predicate descriptor or a conjunction
of these predicates. These predicates will suspend until their first
argument is bound.
@end table
The following primitives are supported:
@table @code
@item dif(@var{ X} ,@var{ Y} )
@findex dif/2
@syindex dif/2
@cnindex dif/2
Succeed if the two arguments do not unify. A call to @code{ dif/2} will
suspend if unification may still succeed or fail, and will fail if they
always unify.
2002-05-24 01:13:15 +01:00
@item freeze(?@var{ X} ,:@var{ G} )
2001-04-09 20:54:03 +01:00
@findex freeze/2
@syindex freeze/2
@cnindex freeze/2
Delay execution of goal @var{ G} until the variable @var{ X} is bound.
@item frozen(@var{ X} ,@var{ G} )
@findex frozen/2
@syindex frozen/2
@cnindex frozen/2
Unify @var{ G} with a conjunction of goals suspended on variable @var{ X} ,
or @code{ true} if no goal has suspended.
2002-05-24 01:13:15 +01:00
@item when(+@var{ C} ,:@var{ G} )
2001-04-09 20:54:03 +01:00
@findex when/2
@syindex when/2
@cnindex when/2
Delay execution of goal @var{ G} until the conditions @var{ C} are
satisfied. The conditions are of the following form:
@table @code
@item @var{ C1} ,@var{ C2}
Delay until both conditions @var{ C1} and @var{ C2} are satisfied.
@item @var{ C1} ;@var{ C2}
Delay until either condition @var{ C1} or condition @var{ C2} is satisfied.
@item ?=(@var{ V1} ,@var{ C2} )
Delay until terms @var{ V1} and @var{ V1} have been unified.
@item nonvar(@var{ V} )
Delay until variable @var{ V} is bound.
@item ground(@var{ V} )
Delay until variable @var{ V} is ground.
@end table
Note that @code{ when/2} will fail if the conditions fail.
2002-05-24 01:13:15 +01:00
@item call_ residue(:@var{ G} ,@var{ L} )
2001-04-09 20:54:03 +01:00
@findex call_ residue/2
@syindex call_ residue/2
@cnindex call_ residue/2
Call goal @var{ G} . If subgoals of @var{ G} are still blocked, return
a list containing these goals and the variables they are blocked in. The
goals are then considered as unblocked. The next example shows a case
where @code{ dif/2} suspends twice, once outside @code{ call_ residue/2} ,
and the other inside:
@example
2001-04-16 17:41:04 +01:00
?- dif(X,Y),
call_ residue((dif(X,Y),(X = f(Z) ; Y = f(Z))), L).
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
X = f(Z),
L = [[Y]-dif(f(Z),Y)],
dif(f(Z),Y) ? ;
2001-04-09 20:54:03 +01:00
2001-04-16 17:41:04 +01:00
Y = f(Z),
L = [[X]-dif(X,f(Z))],
dif(X,f(Z)) ? ;
2001-04-09 20:54:03 +01:00
no
@end example
The system only reports one invocation of @code{ dif/2} as having
suspended.
2009-05-13 22:43:24 +01:00
@item call_ residue_ vars(:@var{ G} ,@var{ L} )
@findex call_ residue_ vars/2
@syindex call_ residue_ vars/2
@cnindex call_ residue_ vars/2
Call goal @var{ G} and unify @var{ L} with a list of all constrained variables created @emph{ during} execution of @var{ G} :
@example
?- dif(X,Z), call_ residue_ vars(dif(X,Y),L).
dif(X,Z), call_ residue_ vars(dif(X,Y),L).
L = [Y],
dif(X,Z),
dif(X,Y) ? ;
no
@end example
2001-04-09 20:54:03 +01:00
@end table
2007-02-18 00:26:36 +00:00
@node Attributed Variables, CLPR, Co-routining, Extensions
2001-04-09 20:54:03 +01:00
@chapter Attributed Variables
@cindex attributed variables
@menu
2010-03-12 10:19:55 +00:00
* New Style Attribute Declarations:: New Style code
* Old Style Attribute Declarations:: Old Style code (deprecated)
2001-04-09 20:54:03 +01:00
@end menu
2010-03-12 10:19:55 +00:00
YAP supports attributed variables, originally developed at OFAI by
2001-04-09 20:54:03 +01:00
Christian Holzbaur. Attributes are a means of declaring that an
arbitrary term is a property for a variable. These properties can be
2001-06-12 15:07:59 +01:00
updated during forward execution. Moreover, the unification algorithm is
2001-04-09 20:54:03 +01:00
aware of attributed variables and will call user defined handlers when
trying to unify these variables.
Attributed variables provide an elegant abstraction over which one can
extend Prolog systems. Their main application so far has been in
2010-03-12 10:19:55 +00:00
implementing constraint handlers, such as Holzbaur's CLPQR, Fruewirth
and Holzbaur's CHR, and CLP(BN).
Different Prolog systems implement attributed variables in different
ways. Traditionally, YAP has used the interface designed by SICStus
Prolog. This interface is still
available in the @t{ atts} library, but from YAP-6.0.3 we recommend using
the hProlog, SWI style interface. The main reason to do so is that
most packages included in YAP that use attributed variables, such as CHR, CLP(FD), and CLP(QR),
rely on the SWI-Prolog interface.
@node New Style Attribute Declarations, Old Style Attribute Declarations, , Attributed Variables
@section hProlog and SWI-Prolog style Attribute Declarations
The following documentation is taken from the SWI-Prolog manual.
Binding an attributed variable schedules a goal to be executed at the
first possible opportunity. In the current implementation the hooks are
executed immediately after a successful unification of the clause-head
or successful completion of a foreign language (built-in) predicate. Each
attribute is associated to a module and the hook @code{ attr_ unify_ hook/2} is
executed in this module. The example below realises a very simple and
incomplete finite domain reasoner.
@example
:- module(domain,
[ domain/2 % Var, ?Domain
]).
:- use_ module(library(ordsets)).
domain(X, Dom) :-
var(Dom), !,
get_ attr(X, domain, Dom).
domain(X, List) :-
list_ to_ ord_ set(List, Domain),
put_ attr(Y, domain, Domain),
X = Y.
% An attributed variable with attribute value Domain has been
% assigned the value Y
attr_ unify_ hook(Domain, Y) :-
( get_ attr(Y, domain, Dom2)
-> ord_ intersection(Domain, Dom2, NewDomain),
( NewDomain == []
-> fail
; NewDomain = [Value]
-> Y = Value
; put_ attr(Y, domain, NewDomain)
)
; var(Y)
-> put_ attr( Y, domain, Domain )
; ord_ memberchk(Y, Domain)
).
% Translate attributes from this module to residual goals
attribute_ goals(X) -->
@{ get_ attr(X, domain, List) @} ,
[domain(X, List)].
@end example
Before explaining the code we give some example queries:
@multitable @columnfractions .70 .30
@item @code{ ?- domain(X, [a,b]), X = c}
@tab @code{ fail}
@item @code{ domain(X, [a,b]), domain(X, [a,c]).}
@tab @code{ X=a}
@item @code{ domain(X, [a,b,c]), domain(X, [a,c]).}
@tab @code{ domain(X, [a,c]).}
@end multitable
The predicate @code{ domain/2} fetches (first clause) or assigns
(second clause) the variable a @emph{ domain} , a set of values it can
be unified with. In the second clause first associates the domain
with a fresh variable and then unifies X to this variable to deal
with the possibility that X already has a domain. The
predicate @code{ attr_ unify_ hook/2} is a hook called after a variable with
a domain is assigned a value. In the simple case where the variable
is bound to a concrete value we simply check whether this value is in
the domain. Otherwise we take the intersection of the domains and either
fail if the intersection is empty (first example), simply assign the
value if there is only one value in the intersection (second example) or
assign the intersection as the new domain of the variable (third
example). The nonterminal @code{ attribute_ goals/3} is used to translate
remaining attributes to user-readable goals that, when executed, reinstate
these attributes.
@table @code
@item attvar(?@var{ Term} )
@findex attvar/1
@snindex attvar/1
@cnindex attvar/1
2001-04-09 20:54:03 +01:00
2010-03-12 10:19:55 +00:00
Succeeds if @code{ Term} is an attributed variable. Note that @code{ var/1} also
succeeds on attributed variables. Attributed variables are created with
@code{ put_ attr/3} .
@item put_ attr(+@var{ Var} ,+@var{ Module} ,+@var{ Value} )
@findex put_ attr/3
@snindex put_ attr/3
@cnindex put_ attr/3
If @var{ Var} is a variable or attributed variable, set the value for the
attribute named @var{ Module} to @var{ Value} . If an attribute with this
name is already associated with @var{ Var} , the old value is replaced.
Backtracking will restore the old value (i.e., an attribute is a mutable
term. See also @code{ setarg/3} ). This predicate raises a representation error if
@var{ Var} is not a variable and a type error if @var{ Module} is not an atom.
@item get_ attr(+@var{ Var} ,+@var{ Module} ,-@var{ Value} )
@findex get_ attr/3
@snindex get_ attr/3
@cnindex get_ attr/3
Request the current @var{ value} for the attribute named @var{ Module} . If
@var{ Var} is not an attributed variable or the named attribute is not
associated to @var{ Var} this predicate fails silently. If @var{ Module}
is not an atom, a type error is raised.
@item del_ attr(+@var{ Var} ,+@var{ Module} )
@findex del_ attr/2
@snindex del_ attr/2
@cnindex del_ attr/2
Delete the named attribute. If @var{ Var} loses its last attribute it
is transformed back into a traditional Prolog variable. If @var{ Module}
is not an atom, a type error is raised. In all other cases this
predicate succeeds regardless whether or not the named attribute is
present.
@item attr_ unify_ hook(+@var{ AttValue} ,+@var{ VarValue} )
@findex attr_ unify_ hook/2
@snindex attr_ unify_ hook/2
@cnindex attr_ unify_ hook/2
Hook that must be defined in the module an attributed variable refers
to. Is is called @emph{ after} the attributed variable has been
unified with a non-var term, possibly another attributed variable.
@var{ AttValue} is the attribute that was associated to the variable
in this module and @var{ VarValue} is the new value of the variable.
Normally this predicate fails to veto binding the variable to
@var{ VarValue} , forcing backtracking to undo the binding. If
@var{ VarValue} is another attributed variable the hook often combines
the two attribute and associates the combined attribute with
@var{ VarValue} using @code{ put_ attr/3} .
@item attr_ portray_ hook(+@var{ AttValue} ,+@var{ Var} )
@findex attr_ portray_ hook/2
@snindex attr_ portray_ hook/2
@cnindex attr_ portray_ hook/2
Called by @code{ write_ term/2} and friends for each attribute if the option
@code{ attributes(portray)} is in effect. If the hook succeeds the
attribute is considered printed. Otherwise @code{ Module = ...} is
printed to indicate the existence of a variable.
@item attribute_ goals(+@var{ Var} ,-@var{ Gs} ,+@var{ GsRest} )
@findex attribute_ goals/2
@snindex attribute_ goals/2
@cnindex attribute_ goals/2
This nonterminal, if it is defined in a module, is used by @var{ copy_ term/3}
to project attributes of that module to residual goals. It is also
used by the toplevel to obtain residual goals after executing a query.
@end table
Normal user code should deal with @code{ put_ attr/3} , @code{ get_ attr/3} and @code{ del_ attr/2} .
The routines in this section fetch or set the entire attribute list of a
variables. Use of these predicates is anticipated to be restricted to
printing and other special purpose operations.
@table @code
@item get_ attrs(+@var{ Var} ,-@var{ Attributes} )
@findex get_ attrs/2
@snindex get_ attrs/2
@cnindex get_ attrs/2
Get all attributes of @var{ Var} . @var{ Attributes} is a term of the form
@code{ att(@var{ Module} , @var{ Value} , @var{ MoreAttributes} )} , where @var{ MoreAttributes} is
@code{ []} for the last attribute.
@item put_ attrs(+@var{ Var} ,+@var{ Attributes} )
@findex put_ attrs/2
@snindex put_ attrs/2
@cnindex put_ attrs/2
Set all attributes of @var{ Var} . See @code{ get_ attrs/2} for a description of
@var{ Attributes} .
@item del_ attrs(+@var{ Var} )
@findex del_ attrs/1
@snindex del_ attrs/1
@cnindex del_ attrs/1
If @var{ Var} is an attributed variable, delete @emph{ all} its
attributes. In all other cases, this predicate succeeds without
side-effects.
@item term_ attvars(+@var{ Term} ,-@var{ AttVars} )
@findex term_ attvars/2
@snindex term_ attvars/2
@cnindex term_ attvars/2
@var{ AttVars} is a list of all attributed variables in @var{ Term} and
its attributes. I.e., @code{ term_ attvars/2} works recursively through
attributes. This predicate is Cycle-safe.
@item copy_ term(?@var{ TI} ,-@var{ TF} ,-@var{ Goals} )
@findex copy_ term/3
@syindex copy_ term/3
@cnindex copy_ term/3
Term @var{ TF} is a variant of the original term @var{ TI} , such that for
each variable @var{ V} in the term @var{ TI} there is a new variable @var{ V'}
in term @var{ TF} without any attributes attached. Attributed
variables are thus converted to standard variables. @var{ Goals} is
unified with a list that represents the attributes. The goal
@code{ maplist(call,@var{ Goals} )} can be called to recreate the
attributes.
Before the actual copying, @code{ copy_ term/3} calls
@code{ attribute_ goals/1} in the module where the attribute is
defined.
@item copy_ term_ nat(?@var{ TI} ,-@var{ TF} )
@findex copy_ term_ nat/2
@syindex copy_ term_ nat/2
@cnindex copy_ term_ nat/2
As @code{ copy_ term/2} . Attributes however, are @emph{ not} copied but replaced
by fresh variables.
2010-10-24 21:19:03 +01:00
2010-03-12 10:19:55 +00:00
@end table
@node Old Style Attribute Declarations, , New Style Attribute Declarations, Attributed Variables
@section SICStus Prolog style Attribute Declarations
@menu
* Attribute Declarations:: Declaring New Attributes
* Attribute Manipulation:: Setting and Reading Attributes
* Attributed Unification:: Tuning the Unification Algorithm
* Displaying Attributes:: Displaying Attributes in User-Readable Form
* Projecting Attributes:: Obtaining the Attributes of Interest
* Attribute Examples:: Two Simple Examples of how to use Attributes.
@end menu
2001-04-09 20:54:03 +01:00
2010-03-12 10:19:55 +00:00
Old style attribute declarations are activated through loading the library @t{ atts} . The command
2001-04-09 20:54:03 +01:00
@example
| ?- use_ module(library(atts)).
@end example
2010-03-12 10:19:55 +00:00
enables this form of use of attributed variables. The package provides the
2001-04-09 20:54:03 +01:00
following functionality:
2001-05-21 21:03:51 +01:00
@itemize @bullet
2001-04-09 20:54:03 +01:00
@item Each attribute must be declared first. Attributes are described by a functor
and are declared per module. Each Prolog module declares its own sets of
attributes. Different modules may have different functors with the same
module.
@item The built-in @code{ put_ atts/2} adds or deletes attributes to a
variable. The variable may be unbound or may be an attributed
variable. In the latter case, YAP discards previous values for the
attributes.
@item The built-in @code{ get_ atts/2} can be used to check the values of
an attribute associated with a variable.
2002-11-18 17:17:22 +00:00
@item The unification algorithm calls the user-defined predicate
2001-04-09 20:54:03 +01:00
@t{ verify_ attributes/3} before trying to bind an attributed
variable. Unification will resume after this call.
@item The user-defined predicate
@t{ attribute_ goal/2} converts from an attribute to a goal.
@item The user-defined predicate
@t{ project_ attributes/2} is used from a set of variables into a set of
2002-01-23 15:17:56 +00:00
constraints or goals. One application of @t{ project_ attributes/2} is in
2001-04-09 20:54:03 +01:00
the top-level, where it is used to output the set of
floundered constraints at the end of a query.
@end itemize
2010-03-12 10:19:55 +00:00
@node Attribute Declarations, Attribute Manipulation, , Old Style Attribute Declarations
@subsection Attribute Declarations
2001-04-09 20:54:03 +01:00
Attributes are compound terms associated with a variable. Each attribute
has a @emph{ name} which is @emph{ private} to the module in which the
attribute was defined. Variables may have at most one attribute with a
name. Attribute names are defined with the following declaration:
@cindex attribute declaration
@cindex declaration, attribute
@findex attribute/1 (declaration)
@example
:- attribute @var{ AttributeSpec} , ..., @var{ AttributeSpec} .
@end example
@noindent
where each @var{ AttributeSpec} has the form (@var{ Name} /@var{ Arity} ).
One single such declaration is allowed per module @var{ Module} .
Although the YAP module system is predicate based, attributes are local
2001-06-12 15:07:59 +01:00
to modules. This is implemented by rewriting all calls to the
2006-02-08 19:13:11 +00:00
built-ins that manipulate attributes so that attribute names are
2001-04-09 20:54:03 +01:00
preprocessed depending on the module. The @code{ user:goal_ expansion/3}
mechanism is used for this purpose.
2010-03-12 10:19:55 +00:00
@node Attribute Manipulation, Attributed Unification, Attribute Declarations, Old Style Attribute Declarations
@subsection Attribute Manipulation
2001-04-09 20:54:03 +01:00
The attribute manipulation predicates always work as follows:
@enumerate
@item The first argument is the unbound variable associated with
attributes,
@item The second argument is a list of attributes. Each attribute will
be a Prolog term or a constant, prefixed with the @t{ +} and @t{ -} unary
operators. The prefix @t{ +} may be dropped for convenience.
@end enumerate
The following three procedures are available to the user. Notice that
2006-02-08 19:13:11 +00:00
these built-ins are rewritten by the system into internal built-ins, and
2001-04-09 20:54:03 +01:00
that the rewriting process @emph{ depends} on the module on which the
2006-02-08 19:13:11 +00:00
built-ins have been invoked.
2001-04-09 20:54:03 +01:00
2004-11-24 04:13:50 +00:00
@table @code
2001-04-09 20:54:03 +01:00
@item @var{ Module} :get_ atts(@var{ -Var} ,@var{ ?ListOfAttributes} )
@findex get_ atts/2
@syindex get_ atts/2
@cnindex get_ atts/2
Unify the list @var{ ?ListOfAttributes} with the attributes for the unbound
variable @var{ Var} . Each member of the list must be a bound term of the
form @code{ +(@var{ Attribute} )} , @code{ -(@var{ Attribute} )} (the @t{ kbd}
prefix may be dropped). The meaning of @t{ +} and @t{ -} is:
@item +(@var{ Attribute} )
Unifies @var{ Attribute} with a corresponding attribute associated with
@var{ Var} , fails otherwise.
@item -(@var{ Attribute} )
Succeeds if a corresponding attribute is not associated with
@var{ Var} . The arguments of @var{ Attribute} are ignored.
@item @var{ Module} :put_ atts(@var{ -Var} ,@var{ ?ListOfAttributes} )
@findex put_ atts/2
@syindex put_ atts/2
@cnindex put_ atts/2
Associate with or remove attributes from a variable @var{ Var} . The
attributes are given in @var{ ?ListOfAttributes} , and the action depends
on how they are prefixed:
@item +(@var{ Attribute} )
Associate @var{ Var} with @var{ Attribute} . A previous value for the
attribute is simply replace (like with @code{ set_ mutable/2} ).
@item -(@var{ Attribute} )
Remove the attribute with the same name. If no such attribute existed,
simply succeed.
@end table
2010-03-12 10:19:55 +00:00
@node Attributed Unification, Displaying Attributes, Attribute Manipulation, Old Style Attribute Declarations
@subsection Attributed Unification
2001-04-09 20:54:03 +01:00
The user-predicate predicate @code{ verify_ attributes/3} is called when
attempting to unify an attributed variable which might have attributes
in some @var{ Module} .
@table @code
@item @var{ Module} :verify_ attributes(@var{ -Var} , @var{ +Value} , @var{ -Goals} )
@findex verify_ attributes/3
@syindex verify_ attributes/3
@cnindex verify_ attributes/3
The predicate is called when trying to unify the attributed variable
@var{ Var} with the Prolog term @var{ Value} . Note that @var{ Value} may be
itself an attributed variable, or may contain attributed variables. The
goal @t{ verify_ attributes/3} is actually called before @var{ Var} is
unified with @var{ Value} .
It is up to the user to define which actions may be performed by
@t{ verify_ attributes/3} but the procedure is expected to return in
@var{ Goals} a list of goals to be called @emph{ after} @var{ Var} is
unified with @var{ Value} . If @t{ verify_ attributes/3} fails, the
unification will fail.
Notice that the @t{ verify_ attributes/3} may be called even if @var{ Var}
has no attributes in module @t{ Module} . In this case the routine should
simply succeed with @var{ Goals} unified with the empty list.
2004-11-24 04:13:50 +00:00
2004-09-10 21:18:01 +01:00
@item attvar(@var{ -Var} )
@findex attvar/1
@snindex attvar/1
@cnindex attvar/1
Succeed if @var{ Var} is an attributed variable.
2001-04-09 20:54:03 +01:00
@end table
2004-09-10 21:18:01 +01:00
2010-03-12 10:19:55 +00:00
@node Displaying Attributes, Projecting Attributes,Attributed Unification, Old Style Attribute Declarations
@subsection Displaying Attributes
2001-04-09 20:54:03 +01:00
Attributes are usually presented as goals. The following routines are
2006-02-08 19:13:11 +00:00
used by built-in predicates such as @code{ call_ residue/2} and by the
2001-04-09 20:54:03 +01:00
Prolog top-level to display attributes:
@table @code
@item @var{ Module} :attribute_ goal(@var{ -Var} , @var{ -Goal} )
@findex attribute_ goal/2
@syindex attribute_ goal/2
@cnindex attribute_ goal/2
User-defined procedure, called to convert the attributes in @var{ Var} to
a @var{ Goal} . Should fail when no interpretation is available.
@item @var{ Module} :project_ attributes(@var{ -QueryVars} , @var{ +AttrVars} )
2001-12-11 03:34:03 +00:00
@findex project_ attributes/2
@syindex project_ attributes/2
@cnindex project_ attributes/2
User-defined procedure, called to project the attributes in the query,
@var{ AttrVars} , given that the set of variables in the query is
@var{ QueryVars} .
2001-04-09 20:54:03 +01:00
@end table
2010-03-12 10:19:55 +00:00
@node Projecting Attributes, Attribute Examples, Displaying Attributes, Old Style Attribute Declarations
@subsection Projecting Attributes
2001-04-09 20:54:03 +01:00
2001-06-12 15:07:59 +01:00
Constraint solvers must be able to project a set of constraints to a set
of variables. This is useful when displaying the solution to a goal, but
2001-04-09 20:54:03 +01:00
may also be used to manipulate computations. The user-defined
@code{ project_ attributes/2} is responsible for implementing this
projection.
@table @code
@item @var{ Module} :project_ attributes(@var{ +QueryVars} , @var{ +AttrVars} )
@findex project_ attributes/2
@syindex project_ attributes/2
@cnindex project_ attributes/2
Given a list of variables @var{ QueryVars} and list of attributed
variables @var{ AttrVars} , project all attributes in @var{ AttrVars} to
@var{ QueryVars} . Although projection is constraint system dependent,
typically this will involve expressing all constraints in terms of
@var{ QueryVars} and considering all remaining variables as existentially
quantified.
@end table
2009-04-25 16:59:23 +01:00
Projection interacts with @code{ attribute_ goal/2} at the Prolog top
2001-04-09 20:54:03 +01:00
level. When the query succeeds, the system first calls
@code{ project_ attributes/2} . The system then calls
@code{ attribute_ goal/2} to get a user-level representation of the
constraints. Typically, @code{ attribute_ goal/2} will convert from the
original constraints into a set of new constraints on the projection,
and these constraints are the ones that will have an
@code{ attribute_ goal/2} handler.
2010-03-12 10:19:55 +00:00
@node Attribute Examples, ,Projecting Attributes, Old Style Attribute Declarations
@subsection Attribute Examples
2001-04-09 20:54:03 +01:00
The following two examples example is taken from the SICStus Prolog manual. It
2001-06-12 15:07:59 +01:00
sketches the implementation of a simple finite domain ``solver''. Note
2001-04-09 20:54:03 +01:00
that an industrial strength solver would have to provide a wider range
of functionality and that it quite likely would utilize a more efficient
representation for the domains proper. The module exports a single
predicate @code{ domain(@var{ -Var} ,@var{ ?Domain} )} which associates
@var{ Domain} (a list of terms) with @var{ Var} . A variable can be
queried for its domain by leaving @var{ Domain} unbound.
We do not present here a definition for @code{ project_ attributes/2} .
Projecting finite domain constraints happens to be difficult.
@example
:- module(domain, [domain/2]).
:- use_ module(library(atts)).
:- use_ module(library(ordsets), [
ord_ intersection/3,
ord_ intersect/2,
list_ to_ ord_ set/2
]).
:- attribute dom/1.
verify_ attributes(Var, Other, Goals) :-
get_ atts(Var, dom(Da)), !, % are we involved?
( var(Other) -> % must be attributed then
( get_ atts(Other, dom(Db)) -> % has a domain?
ord_ intersection(Da, Db, Dc),
Dc = [El|Els], % at least one element
( Els = [] -> % exactly one element
Goals = [Other=El] % implied binding
; Goals = [],
put_ atts(Other, dom(Dc))% rescue intersection
)
; Goals = [],
put_ atts(Other, dom(Da)) % rescue the domain
)
; Goals = [],
ord_ intersect([Other], Da) % value in domain?
).
verify_ attributes(_ , _ , []). % unification triggered
% because of attributes
% in other modules
attribute_ goal(Var, domain(Var,Dom)) :- % interpretation as goal
get_ atts(Var, dom(Dom)).
domain(X, Dom) :-
var(Dom), !,
get_ atts(X, dom(Dom)).
domain(X, List) :-
list_ to_ ord_ set(List, Set),
Set = [El|Els], % at least one element
( Els = [] -> % exactly one element
X = El % implied binding
; put_ atts(Fresh, dom(Set)),
X = Fresh % may call
% verify_attributes/3
).
@end example
Note that the ``implied binding'' @code{ Other=El} was deferred until after
the completion of @code{ verify_ attribute/3} . Otherwise, there might be a
2001-06-12 15:07:59 +01:00
danger of recursively invoking @code{ verify_ attribute/3} , which might bind
2001-04-09 20:54:03 +01:00
@code{ Var} , which is not allowed inside the scope of @code{ verify_ attribute/3} .
Deferring unifications into the third argument of @code{ verify_ attribute/3}
2002-11-18 17:17:22 +00:00
effectively serializes the calls to @code{ verify_ attribute/3} .
2001-04-09 20:54:03 +01:00
Assuming that the code resides in the file @file{ domain.yap} , we
can use it via:
@example
| ?- use_ module(domain).
@end example
Let's test it:
@example
| ?- domain(X,[5,6,7,1]), domain(Y,[3,4,5,6]), domain(Z,[1,6,7,8]).
domain(X,[1,5,6,7]),
domain(Y,[3,4,5,6]),
domain(Z,[1,6,7,8]) ?
yes
| ?- domain(X,[5,6,7,1]), domain(Y,[3,4,5,6]), domain(Z,[1,6,7,8]),
X=Y.
Y = X,
domain(X,[5,6]),
domain(Z,[1,6,7,8]) ?
yes
| ?- domain(X,[5,6,7,1]), domain(Y,[3,4,5,6]), domain(Z,[1,6,7,8]),
X=Y, Y=Z.
X = 6,
Y = 6,
Z = 6
@end example
To demonstrate the use of the @var{ Goals} argument of
@code{ verify_ attributes/3} , we give an implementation of
@code{ freeze/2} . We have to name it @code{ myfreeze/2} in order to
avoid a name clash with the built-in predicate of the same name.
@example
:- module(myfreeze, [myfreeze/2]).
:- use_ module(library(atts)).
:- attribute frozen/1.
verify_ attributes(Var, Other, Goals) :-
get_ atts(Var, frozen(Fa)), !, % are we involved?
( var(Other) -> % must be attributed then
( get_ atts(Other, frozen(Fb)) % has a pending goal?
-> put_ atts(Other, frozen((Fa,Fb))) % rescue conjunction
; put_ atts(Other, frozen(Fa)) % rescue the pending goal
),
Goals = []
; Goals = [Fa]
).
verify_ attributes(_ , _ , []).
attribute_ goal(Var, Goal) :- % interpretation as goal
get_ atts(Var, frozen(Goal)).
myfreeze(X, Goal) :-
put_ atts(Fresh, frozen(Goal)),
Fresh = X.
@end example
Assuming that this code lives in file @file{ myfreeze.yap} ,
we would use it via:
@example
| ?- use_ module(myfreeze).
| ?- myfreeze(X,print(bound(x,X))), X=2.
bound(x,2) % side effect
X = 2 % bindings
@end example
The two solvers even work together:
@example
| ?- myfreeze(X,print(bound(x,X))), domain(X,[1,2,3]),
domain(Y,[2,10]), X=Y.
bound(x,2) % side effect
X = 2, % bindings
Y = 2
@end example
The two example solvers interact via bindings to shared attributed
variables only. More complicated interactions are likely to be found
in more sophisticated solvers. The corresponding
@code{ verify_ attributes/3} predicates would typically refer to the
attributes from other known solvers/modules via the module prefix in
@code{ @var{ Module} :get_ atts/2} .
2005-11-01 18:19:44 +00:00
@node CLPR, CHR, Attributed Variables, Extensions
2001-04-09 20:54:03 +01:00
@cindex CLPQ
@cindex CLPR
@menu
2005-11-01 18:19:44 +00:00
* CLPR Solver Predicates::
* CLPR Syntax::
* CLPR Unification::
* CLPR Non-linear Constraints::
2001-04-09 20:54:03 +01:00
@end menu
2005-11-01 18:19:44 +00:00
@include clpr.tex
2001-04-09 20:54:03 +01:00
2005-11-01 18:19:44 +00:00
@node CHR, Logtalk, CLPR, Top
2001-04-09 20:54:03 +01:00
@menu
2005-11-01 18:19:44 +00:00
* CHR Introduction::
* CHR Syntax and Semantics::
* CHR in YAP Programs::
* CHR Debugging::
* CHR Examples::
* CHR Compatibility::
* CHR Guidelines::
2001-04-09 20:54:03 +01:00
@end menu
2005-11-01 18:19:44 +00:00
@include chr.tex
2001-04-09 20:54:03 +01:00
2010-09-07 15:51:59 +01:00
@node Logtalk, MYDDAS, CHR, Extensions
2001-05-21 21:03:51 +01:00
@chapter Logtalk
2005-08-22 14:42:05 +01:00
@cindex Logtalk
2005-02-21 17:06:45 +00:00
2008-06-07 11:11:44 +01:00
The Logtalk object-oriented extension is available after running its
standalone installer by using the @code{ yaplgt} command in POSIX
systems or by using the @code{ Logtalk - YAP} shortcut in the Logtalk
program group in the Start Menu on Windows systems. For more information
please see the URL @url{ http://logtalk.org/} .
2001-05-21 21:03:51 +01:00
2010-09-07 15:51:59 +01:00
@node MYDDAS, Threads, Logtalk, Extensions
@chapter MYDDAS
@cindex MYDDAS
The MYDDAS database project was developed within a FCT project aiming at
the development of a highly efficient deductive database system, based
on the coupling of the MySQL relational database system with the Yap
Prolog system. MYDDAS was later expanded to support the ODBC interface.
@menu
Subnodes of MYDDAS
* Requirements and Installation Guide::
* MYDDAS Architecture::
* Loading MYDDAS::
* Connecting to and disconnecting from a Database Server::
* Accessing a Relation::
* View Level Interface ::
* Accessing Tables in Data Sources Using SQL::
* Insertion of Rows::
* Types of Attributes::
* Number of Fields::
* Describing a Relation::
* Enumerating Relations::
* The MYDDAS MySQL Top Level::
* Other MYDDAS Properties::
@end menu
@node Requirements and Installation Guide, MYDDAS Architecture, , MYDDAS
@section Requirements and Installation Guide
Next, we describe how to usen of the YAP with the MYDDAS System. The
use of this system is entirely depend of the MySQL development libraries
or the ODBC development libraries. At least one of the this development
libraries must be installed on the computer system, otherwise MYDDAS
will not compile. The MySQL development libraries from MySQL 3.23 an
above are know to work. We recommend the usage of MySQL versusODBC,
but it is possible to have both options installed
At the same time, without any problem. The MYDDAS system automatically
controls the two options. Currently, MYDDAS is know to compile without
problems in Linux. The usage of this system on Windows has not been
tested yet. MYDDAS must be enabled at configure time. This can be done
with the following options:
@table @code
@item --enable-myddas
This option will detect which development libraries are installed on the computer system, MySQL, ODBC or both, and will compile the Yap system with the support for which libraries it detects;
@item --enable-myddas-stats
This option is only available in MySQL. It includes code to get
statistics from the MYDDAS system;
@item --enable-top-level
This option is only available in MySQL. It enables the option to interact with the MySQL server in
two different ways. As if we were on the MySQL Client Shell, and as if
we were using Datalog.
@end table
@node MYDDAS Architecture, Loading MYDDAS, Requirements and Installation Guide, MYDDAS
@section MYDDAS Architecture
The system includes four main blocks that are put together through the
MYDDAS interface: the Yap Prolog compiler, the MySQL database system, an
ODBC layer and a Prolog to SQL compiler. Current effort is put on the
MySQL interface rather than on the ODBC interface. If you want to use
the full power of the MYDDAS interface we recommend you to use a MySQL
database. Other databases, such as Oracle, PostGres or Microsoft SQL
Server, can be interfaced through the ODBC layer, but with limited
performance and features support.
The main structure of the MYDDAS interface is simple. Prolog queries
involving database goals are translated to SQL using the Prolog to SQL
compiler; then the SQL expression is sent to the database system, which
returns the set of tuples satisfying the query; and finally those tuples
are made available to the Prolog engine as terms. For recursive queries
involving database goals, the YapTab tabling engine provides the
necessary support for an efficient evaluation of such queries.
An important aspect of the MYDDAS interface is that for the programmer
the use of predicates which are defined in database relations is
completely transparent. An example of this transparent support is the
Prolog cut operator, which has exactly the same behaviour from
predicates defined in the Prolog program source code, or from predicates
defined in database as relations.
@node Loading MYDDAS, Connecting to and disconnecting from a Database Server, MYDDAS Architecture, MYDDAS
@section Loading MYDDAS
Begin by starting YAP and loading the library
@code{ use_ module(library(myddas))} . This library already includes the
Prolog to SQL Compiler described in [2] and [1]. In MYDDAS this compiler
has been extended to support further constructs which allow a more
efficient SQL translation.
@node Connecting to and disconnecting from a Database Server, Accessing a Relation, Loading MYDDAS, MYDDAS
@section Connecting to and disconnecting from a Database Server
@table @code
@item db open(+,+,+,+,+).
@findex db_ open/5
@snindex db_ open/5
@cnindex db_ open/5
@item db open(+,+,+,+).
@findex db_ open/4
@snindex db_ open/4
@cnindex db_ open/4
@item db close(+).
@findex db_ close/1
@snindex db_ close/1
@cnindex db_ close/1
@item db_ close.
@end table
Assuming the MySQL server is running and we have an account, we can
login to MySQL by invoking @code{ db_ open/5} as one of the following:
@example
?- db_ open(mysql,Connection,Host/Database,User,Password).
?- db_ open(mysql,Connection,Host/Database/Port,User,Password).
?- db_ open(mysql,Connection,Host/Database/UnixSocket,User,Password).
?- db_ open(mysql,Connection,Host/Database/Port/UnixSocket,User,Password).
@end example
If the login is successful, there will be a response of @code{ yes} . For
instance:
@example
?- db_ open(mysql,con1,localhost/guest_ db,guest,'').
@end example
uses the MySQL native interface, selected by the first argument, to open
a connection identified by the @code{ con1} atom, to an instance of a
MySQL server running on host @code{ localhost} , using database guest @code{ db}
and user @code{ guest} with empty @code{ password} . To disconnect from the @code{ con1}
connection we use:
@example
?- db_ close(con1).
@end example
Alternatively, we can use @code{ db_ open/4} and @code{ db_ close/0,} without an argument
to identify the connection. In this case the default connection is used,
with atom @code{ myddas} . Thus using
@example
?- db_ open(mysql,localhost/guest_ db,guest,'').
?- db_ close.
@end example
or
@example
?- db_ open(mysql,myddas,localhost/guest_ db,guest,'').
?- db_ close(myddas).
@end example
is exactly the same.
MYDDAS also supports ODBC. To connect to a database using an ODBC driver
you must have configured on your system a ODBC DSN. If so, the @code{ db_ open/4}
and @code{ db_ open/5} have the following mode:
@example
?- db_ open(odbc,Connection,ODBC_ DSN,User,Password).
?- db_ open(odbc,ODBC_ DSN,User,Password).
@end example
For instance, if you do @code{ db_ open(odbc,odbc_ dsn,guest,'')} . it will connect
to a database, through ODBC, using the definitions on the @code{ odbc_ dsn} DSN
configured on the system. The user will be the user @code{ guest} with no
password.
@node Accessing a Relation, View Level Interface , Connecting to and disconnecting from a Database Server, MYDDAS
@section Accessing a Relation
@table @code
@item db_ import(+Conn,+RelationName,+PredName).
@findex db_ import/3
@snindex db_ import/3
@cnindex db_ import/3
@item db_ import(+RelationName,+PredName).
@findex db_ import/2
@snindex db_ import/2
@cnindex db_ import/2
@end table
Assuming you have access permission for the relation you wish to import,
you can use @code{ db_ import/3} or @code{ db_ import/2} as:
@example
?- db_ import(Conn,RelationName,PredName).
?- db_ import(RelationName,PredName).
@end example
where @var{ RelationName} , is the name of
relation we wish to access, @var{ PredName} is the name of the predicate we
wish to use to access the relation from YAP. @var{ Conn} , is the connection
identifier, which again can be dropped so that the default myddas connection
is used. For instance, if we want to access the relation phonebook,
using the predicate @code{ phonebook/3} we write:
@example
?- db_ import(con1,phonebook,phonebook).
yes
?- phonebook(Letter,Name,Number).
Letter = 'D',
Name = 'John Doe',
Number = 123456789 ?
yes
@end example
Backtracking can then be used to retrieve the next row
of the relation phonebook. Records with particular field values may be
selected in the same way as in Prolog. (In particular, no mode
specification for database predicates is required). For instance:
@example
?- phonebook(Letter,'John Doe',Letter).
Letter = 'D',
Number = 123456789 ?
yes
@end example
generates the query @example
SELECT A.Letter , 'John Doe' , A.Number
FROM 'phonebook' A
WHERE A.Name = 'John Doe';
@end example
@node View Level Interface, Accessing Tables in Data Sources Using SQL, Accessing a Relation, MYDDAS
@section View Level Interface
@table @code
@item db view(+,+,+).
@findex db_ view/3
@snindex db_ view/3
@cnindex db_ view/3
@item db view(+,+).
@findex db_ view/2
@snindex db_ view/2
@cnindex db_ view/2
@end table
If we import a database relation, such as an edge relation representing the edges of a directed graph, through
@example
?- db_ import('Edge',edge).
yes
@end example
and we then write a query to retrieve all the direct cycles in the
graph, such as
@example
?- edge(A,B), edge(B,A).
A = 10,
B = 20 ?
@end example
this is clearly inefficient [3], because of relation-level
access. Relation-level access means that a separate SQL query will be
generated for every goal in the body of the clause. For the second
@code{ edge/2} goal, a SQL query is generated using the variable bindings that
result from the first @code{ edge/2} goal execution. If the second
@code{ edge/2} goal
fails, or if alternative solutions are demanded, backtracking access the
next tuple for the first @code{ edge/2} goal and another SQL query will be
generated for the second @code{ edge/2} goal. The generation of this large
number of queries and the communication overhead with the database
system for each of them, makes the relation-level approach inefficient.
To solve this problem the view level interface can be used for the
definition of rules whose bodies includes only imported database
predicates. One can use the view level interface through the predicates
@code{ db_ view/3} and @code{ db_ view/2} :
@example
?- db_ view(Conn,PredName(Arg_ 1,...,Arg_ n),DbGoal).
?- db_ view(PredName(Arg_ 1,...,Arg_ n),DbGoal).
@end example
All arguments are standard Prolog terms. @var{ Arg1} through @var{ Argn}
define the attributes to be retrieved from the database, while
@var{ DbGoal} defines the selection restrictions and join
conditions. @var{ Conn} is the connection identifier, which again can be
dropped. Calling predicate @code{ PredName/n} will retrieve database
tuples using a single SQL query generated for the @var{ DbGoal} . We next show
an example of a view definition for the direct cycles discussed
above. Assuming the declaration:
@example
?- db_ import('Edge',edge).
yes
@end example
we
write:@example
?- db_ view(direct_ cycle(A,B),(edge(A,B), edge(B,A))).
yes
?- direct_ cycle(A,B)).
A = 10,
B = 20 ?
@end example
This call generates the SQL
statement: @example
SELECT A.attr1 , A.attr2
FROM Edge A , Edge B
WHERE B.attr1 = A.attr2 AND B.attr2 = A.attr1;
@end example
Backtracking, as in relational level interface, can be used to retrieve the next row of the view.
The view interface also supports aggregate function predicates such as
@code{ sum} , @code{ avg} , @code{ count} , @code{ min} and @code{ max} . For
instance:
@example
?- db_ view(count(X),(X is count(B, B^ edge(10,B)))).
@end example
generates the query :
@example
SELECT COUNT(A.attr2)
FROM Edge A WHERE A.attr1 = 10;
@end example
To know how to use db @code{ view/3} , please refer to Draxler's Prolog to
SQL Compiler Manual.
@node Accessing Tables in Data Sources Using SQL, Insertion of Rows, View Level Interface , MYDDAS
@section Accessing Tables in Data Sources Using SQL
@table @code
@item db_ sql(+,+,?).
@findex db_ sql/3
@snindex db_ sql/3
@cnindex db_ sql/3
@item db_ sql(+,?).
@findex db_ sql/2
@snindex db_ sql/2
@cnindex db_ sql/2
@end table
It is also possible to explicitly send a SQL query to the database server using
@example
?- db_ sql(Conn,SQL,List).
?- db_ sql(SQL,List).
@end example
where @var{ SQL} is an arbitrary SQL expression, and @var{ List} is a list
holding the first tuple of result set returned by the server. The result
set can also be navigated through backtracking.
Example:
@example
?- db_ sql('SELECT * FROM phonebook',LA).
LA = ['D','John Doe',123456789] ?
@end example
@node Insertion of Rows, Types of Attributes, Accessing Tables in Data Sources Using SQL, MYDDAS
@section Insertion of Rows
@table @code
@item db_ assert(+,+).
@findex db_ assert/2
@snindex db_ assert/2
@cnindex db_ assert/2
@item db_ assert(+).
@findex db_ assert/1
@snindex db_ assert/1
@cnindex db_ assert/1
@end table
Assuming you have imported the related base table using
@code{ db_ import/2} or @code{ db_ import/3} , you can insert to that table
by using @code{ db_ assert/2} predicate any given fact.
@example
?- db_ assert(Conn,Fact).
?- db_ assert(Fact).
@end example
The second argument must be declared with all of its arguments bound to
constants. For example assuming @code{ helloWorld} is imported through
@code{ db_ import/2} :
@example
?- db_ import('Hello World',helloWorld).
yes
?- db_ assert(helloWorld('A' ,'Ana',31)).
yes
@end example
This, would generate the following query
@example
INSERT INTO helloWorld
VALUES ('A','Ana',3)
@end example
which would insert into the helloWorld, the following row:
@code{ A,Ana,31} . If we want to insert @code{ NULL} values into the
relation, we call @code{ db_ assert/2} with a uninstantiated variable in
the data base imported predicate. For example, the following query on
the YAP-prolog system:
@example
?- db_ assert(helloWorld('A',NULL,31)).
yes
@end example
Would insert the row: @code{ A,null value,31} into the relation
@code{ Hello World} , assuming that the second row allows null values.
@table @code
@item db insert(+,+,+).
@findex db_ insert/3
@snindex db_ insert/3
@cnindex db_ insert/3
@item db insert(+,+).
@findex db_ insert/2
@snindex db_ insert/2
@cnindex db_ insert/2
@end table
This predicate would create a new database predicate, which will insert
any given tuple into the database.
@example
?- db_ insert(Conn,RelationName,PredName).
?- db_ insert(RelationName,PredName).
@end example
This would create a new predicate with name @var{ PredName} , that will
insert tuples into the relation @var{ RelationName} . is the connection
identifier. For example, if we wanted to insert the new tuple
@code{ ('A',null,31)} into the relation @code{ Hello World} , we do:
@example
?- db_ insert('Hello World',helloWorldInsert).
yes
?- helloWorldInsert('A',NULL,31).
yes
@end example
@node Types of Attributes, Number of Fields, Insertion of Rows, MYDDAS
@section Types of Attributes
@table @code
@item db_ get_ attributes_ types(+,+,?).
@findex db_ get_ attributes_ types/3
@snindex db_ get_ attributes_ types/3
@cnindex db_ get_ attributes_ types/3
@item db_ get_ attributes_ types(+,?).
@findex db_ get_ attributes_ types/2
@snindex db_ get_ attributes_ types/2
@cnindex db_ get_ attributes_ types/2
@end table
The prototype for this predicate is the following:
@example
?- db_ get_ attributes_ types(Conn,RelationName,ListOfFields).
?- db_ get_ attributes_ types(RelationName,ListOfFields).
@end example
You can use the
predicate @code{ db_ get_ attributes types/2} or @code{ db_ get_ attributes_ types/3} , to
know what are the names and attributes types of the fields of a given
relation. For example:
@example
?- db_ get_ attributes_ types(myddas,'Hello World',LA).
LA = ['Number',integer,'Name',string,'Letter',string] ?
yes
@end example
where @t{ Hello World} is the name of the relation and @t{ myddas} is the
connection identifier.
@node Number of Fields, Describing a Relation, Types of Attributes, MYDDAS
@section Number of Fields
@table @code
@item db_ number_ of_ fields(+,?).
@findex db_ number_ of_ fields/2
@snindex db_ number_ of_ fields/2
@cnindex db_ number_ of_ fields/2
@item db_ number_ of_ fields(+,+,?).
@findex db_ number_ of_ fields/3
@snindex db_ number_ of_ fields/3
@cnindex db_ number_ of_ fields/3
@end table
The prototype for this
predicate is the following:
@example
?- db_ number_ of_ fields(Conn,RelationName,Arity).
?- db_ number_ of_ fields(RelationName,Arity).
@end example
You can use the predicate @code{ db_ number_ of_ fields/2} or
@code{ db_ number_ of_ fields/3} to know what is the arity of a given
relation. Example:
@example
?- db_ number_ of_ fields(myddas,'Hello World',Arity).
Arity = 3 ?
yes
@end example
where @code{ Hello World} is the name of the
relation and @code{ myddas} is the connection identifier.
@node Describing a Relation, Enumerating Relations, Number of Fields, MYDDAS
@section Describing a Relation
@table @code
@item db_ datalog_ describe(+,+).
@findex db_ datalog_ describe/2
@snindex db_ datalog_ describe/2
@cnindex db_ datalog_ describe/2
@item db_ datalog_ describe(+).
@findex db_ datalog_ describe/1
@snindex db_ datalog_ describe/1
@cnindex db_ datalog_ describe/1
@end table
The db @code{ datalog_ describe/2} predicate does not really returns any
value. It simply prints to the screen the result of the MySQL describe
command, the same way as @code{ DESCRIBE} in the MySQL prompt would.
@example
?- db_ datalog_ describe(myddas,'Hello World').
+----------+----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+----------+------+-----+---------+-------+
+ Number | int(11) | YES | | NULL | |
+ Name | char(10) | YES | | NULL | |
+ Letter | char(1) | YES | | NULL | |
+----------+----------+------+-----+---------+-------+
yes
@end example
@table @code
@item db_ describe(+,+).
@findex db_ describe/2
@snindex db_ describe/2
@cnindex db_ describe/2
@item db_ describe(+).
@findex db_ describe/1
@snindex db_ describe/1
@cnindex db_ describe/1
@end table
The @code{ db_ describe/3} predicate does the same action as
@code{ db_ datalog_ describe/2} predicate but with one major
difference. The results are returned by backtracking. For example, the
last query:
@example
?- db_ describe(myddas,'Hello World',Term).
Term = tableInfo('Number',int(11),'YES','',null(0),'') ? ;
Term = tableInfo('Name',char(10),'YES','',null(1),'' ? ;
Term = tableInfo('Letter',char(1),'YES','',null(2),'') ? ;
no
@end example
@node Enumerating Relations, The MYDDAS MySQL Top Level, Describing a Relation, MYDDAS
@section Enumeration Relations
@table @code
@item db_ datalog_ show_ tables(+).
@item db_ datalog_ show_ tables
@end table
If we need to know what relations exists in a given MySQL Schema, we can use
the @code{ db_ datalog_ show_ tables/1} predicate. As @t{ db_ datalog_ describe/2} ,
it does not returns any value, but instead prints to the screen the result of the
@code{ SHOW TABLES} command, the same way as it would be in the MySQL prompt.
@example
?- db_ datalog_ show_ tables(myddas).
+-----------------+
| Tables_ in_ guest |
+-----------------+
| Hello World |
+-----------------+
yes
@end example
@table @code
@item db_ show_ tables(+, ?).
@findex db_ show_ tables/2
@snindex db_ show_ tables/2
@cnindex db_ show_ tables/2
@item db_ show_ tables(?)
@findex db_ show_ tables/1
@snindex db_ show_ tables/1
@cnindex db_ show_ tables/1
@end table
The @code{ db_ show_ tables/2} predicate does the same action as
@code{ db_ show_ tables/1} predicate but with one major difference. The
results are returned by backtracking. For example, given the last query:
@example
?- db_ show_ tables(myddas,Table).
Table = table('Hello World') ? ;
no
@end example
@node The MYDDAS MySQL Top Level, Other MYDDAS Properties, Enumerating Relations, MYDDAS
@section The MYDDAS MySQL Top Level
@table @code
@item db_ top_ level(+,+,+,+,+).
@findex db_ top_ level/5
@snindex db_ top_ level/5
@cnindex db_ top_ level/5
@item db_ top_ level(+,+,+,+).
@findex db_ top_ level/4
@snindex db_ top_ level/4
@cnindex db_ top_ level/4
@end table
Through MYDDAS is also possible to access the MySQL Database Server, in
the same wthe mysql client. In this mode, is possible to query the
SQL server by just using the standard SQL language. This mode is exactly the same as
different from the standard mysql client. We can use this
mode, by invoking the db top level/5. as one of the following:
@example
?- db_ top_ level(mysql,Connection,Host/Database,User,Password).
?- db_ top_ level(mysql,Connection,Host/Database/Port,User,Password).
?- db_ top_ level(mysql,Connection,Host/Database/UnixSocket,User,Password).
?- db_ top_ level(mysql,Connection,Host/Database/Port/UnixSocket,User,Password).
@end example
Usage is similar as the one described for the @code{ db_ open/5} predicate
discussed above. If the login is successful, automatically the prompt of
the mysql client will be used. For example:
@example
?- db_ top_ level(mysql,con1,localhost/guest_ db,guest,'').
@end example
opens a
connection identified by the @code{ con1} atom, to an instance of a MySQL server
running on host @code{ localhost} , using database guest @code{ db} and user @code{ guest} with
empty password. After this is possible to use MYDDAS as the mysql
client.
@example
?- db_ top_ level(mysql,con1,localhost/guest_ db,guest,'').
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor.
Commands end with ; or \g .
Your MySQL connection id is 4468 to server version: 4.0.20
Type 'help;' or '\h ' for help.
Type '\c ' to clear the buffer.
mysql> exit
Bye
yes
?-
@end example
@node Other MYDDAS Properties, , The MYDDAS MySQL Top Level , MYDDAS
@section Other MYDDAS Properties
@table @code
@item db_ verbose(+).
@item db_ top_ level(+,+,+,+).
@end table
When we ask a question to YAP, using a predicate asserted by
@code{ db_ import/3} , or by @code{ db_ view/3} , this will generate a SQL
@code{ QUERY} . If we want to see that query, we must to this at a given
point in our session on YAP.
@example
?- db_ verbose(1).
yes
?-
@end example
If we want to
disable this feature, we must call the @code{ db_ verbose/1} predicate with the value 0.
@table @code
@item db_ module(?).
@findex db_ module/1
@snindex db_ module/1
@cnindex db_ module/1
@end table
When we create a new database predicate, by using @code{ db_ import/3} ,
@code{ db_ view/3} or @code{ db_ insert/3} , that predicate will be asserted
by default on the @code{ user} module. If we want to change this value, we can
use the @code{ db_ module/1} predicate to do so.
@example
?- db_ module(lists).
yes
?-
@end example
By executing this predicate, all of the predicates asserted by the
predicates enumerated earlier will created in the lists module.
If we want to put back the value on default, we can manually put the
value user. Example:
@example
?- db_ module(user).
yes
?-
@end example
We can also see in what module the predicates are being asserted by doing:
@example
?- db_ module(X).
X=user
yes
?-
@end example
@table @code
@item db_ my_ result_ set(?).
@findex db_ my_ result_ set/1
@snindex db_ my_ result_ set/1
@cnindex db_ my_ result_ set/1
@end table
The MySQL C API permits two modes for transferring the data generated by
a query to the client, in our case YAP. The first mode, and the default
mode used by the MYDDAS-MySQL, is to store the result. This mode copies all the
information generated to the client side.@example
?- db_ my_ result_ set(X).
X=store_ result
yes
@end example
The other mode that we can use is use result. This one uses the result
set created directly from the server. If we want to use this mode, he
simply do
@example
?- db_ my_ result_ set(use_ result).
yes
@end example
After this command, all
of the database predicates will use use result by default. We can change
this by doing again @code{ db_ my_ result_ set(store_ result)} .
@table @code
@item db_ my_ sql_ mode(+Conn,?SQL_ Mode).
@findex db_ my_ sql_ mode/2
@snindex db_ my_ sql_ mode/2
@cnindex db_ my_ sql_ mode/2
@item db_ my_ sql_ mode(?SQL_ Mode).
@findex db_ my_ sql_ mode/1
@snindex db_ my_ sql_ mode/1
@cnindex db_ my_ sql_ mode/1
@end table
The MySQL server allows the user to change the SQL mode. This can be
very useful for debugging proposes. For example, if we want MySQL server
not to ignore the INSERT statement warnings and instead of taking
action, report an error, we could use the following SQL mode.
@example
?-db_ my_ sql_ mode(traditional). yes
@end example
You can see the available SQL Modes at the MySQL homepage at
@url{ http://www.mysql.org} .
@node Threads, Parallelism, MYDDAS, Extensions
2004-03-08 15:38:36 +00:00
@chapter Threads
2004-03-05 17:27:53 +00:00
YAP implements a SWI-Prolog compatible multithreading
library. Like in SWI-Prolog, Prolog threads have their own stacks and
2004-03-08 15:38:36 +00:00
only share the Prolog @emph{ heap} : predicates, records, flags and other
2004-03-05 17:27:53 +00:00
global non-backtrackable data. The package is based on the POSIX thread
2004-03-08 15:38:36 +00:00
standard (Butenhof:1997:PPT) used on most popular systems except
2004-03-05 17:27:53 +00:00
for MS-Windows.
@comment On Windows it uses the
@comment \url [pthread-win32] { http://sources.redhat.com/pthreads-win32/} emulation
@comment of POSIX threads mixed with the Windows native API for smoother and
@comment faster operation.
@menu
Subnodes of Threads
2004-03-08 15:38:36 +00:00
* Creating and Destroying Prolog Threads::
* Monitoring Threads::
* Thread Communication::
* Thread Synchronisation::
Subnodes of Thread Communication
* Message Queues::
* Signalling Threads::
* Threads and Dynamic Predicates::
2004-03-05 17:27:53 +00:00
@end menu
2004-03-08 15:38:36 +00:00
@node Creating and Destroying Prolog Threads, Monitoring Threads, ,Threads
@section Creating and Destroying Prolog Threads
2004-03-05 17:27:53 +00:00
@table @code
@item thread_ create(:@var{ Goal} , -@var{ Id} , +@var{ Options} )
@findex thread_ create/3
@snindex thread_ create/3
@cnindex thread_ create/3
Create a new Prolog thread (and underlying C-thread) and start it
2009-04-25 16:59:23 +01:00
by executing @var{ Goal} . If the thread is created successfully, the
2004-03-05 17:27:53 +00:00
thread-identifier of the created thread is unified to @var{ Id} .
@var{ Options} is a list of options. Currently defined options are:
@table @code
2004-03-06 00:31:48 +00:00
@item stack
Set the limit in K-Bytes to which the Prolog stacks of
2009-04-25 16:59:23 +01:00
this thread may grow. If omitted, the limit of the calling thread is
2004-03-08 15:38:36 +00:00
used. See also the commandline @code{ -S} option.
2004-03-05 17:27:53 +00:00
2004-03-06 00:31:48 +00:00
@item trail
2004-03-05 17:27:53 +00:00
Set the limit in K-Bytes to which the trail stack of this thread may
2009-04-25 16:59:23 +01:00
grow. If omitted, the limit of the calling thread is used. See also the
2004-03-08 15:38:36 +00:00
commandline option @code{ -T} .
2004-03-05 17:27:53 +00:00
2004-03-06 00:31:48 +00:00
@item alias
2004-03-05 17:27:53 +00:00
Associate an alias-name with the thread. This named may be used to
refer to the thread and remains valid until the thread is joined
(see @code{ thread_ join/2} ).
2008-04-02 23:45:55 +01:00
@item at_ exit
Define an exit hook for the thread. This hook is called when the thread
terminates, no matter its exit status.
2004-03-06 00:31:48 +00:00
@item detached
2004-03-05 17:27:53 +00:00
If @code{ false} (default), the thread can be waited for using
@code{ thread_ join/2} . @code{ thread_ join/2} must be called on this thread
to reclaim the all resources associated to the thread. If @code{ true} ,
the system will reclaim all associated resources automatically after the
thread finishes. Please note that thread identifiers are freed for reuse
after a detached thread finishes or a normal thread has been joined.
See also @code{ thread_ join/2} and @code{ thread_ detach/1} .
@end table
2004-03-08 15:38:36 +00:00
The @var{ Goal} argument is @emph{ copied} to the new Prolog engine.
2004-03-05 17:27:53 +00:00
This implies further instantiation of this term in either thread does
not have consequences for the other thread: Prolog threads do not share
data from their stacks.
2007-01-10 23:11:29 +00:00
@item thread_ create(:@var{ Goal} , -@var{ Id} )
@findex thread_ create/2
@snindex thread_ create/2
@cnindex thread_ create/2
Create a new Prolog thread using default options. See @code{ thread_ create/3} .
2007-06-19 11:55:35 +01:00
@item thread_ create(:@var{ Goal} )
@findex thread_ create/1
@snindex thread_ create/1
@cnindex thread_ create/1
Create a new Prolog detached thread using default options. See @code{ thread_ create/3} .
2004-03-05 17:27:53 +00:00
@item thread_ self(-@var{ Id} )
@findex thread_ self/1
@snindex thread_ self/1
@cnindex thread_ self/1
Get the Prolog thread identifier of the running thread. If the thread
has an alias, the alias-name is returned.
@item thread_ join(+@var{ Id} , -@var{ Status} )
@findex thread_ join/2
@snindex thread_ join/2
@cnindex thread_ join/2
Wait for the termination of thread with given @var{ Id} . Then unify the
result-status of the thread with @var{ Status} . After this call,
@var{ Id} becomes invalid and all resources associated with the thread
are reclaimed. Note that threads with the attribute @code{ detached}
@code{ true} cannot be joined. See also @code{ current_ thread/2} .
A thread that has been completed without @code{ thread_ join/2} being
called on it is partly reclaimed: the Prolog stacks are released and the
C-thread is destroyed. A small data-structure representing the
exit-status of the thread is retained until @code{ thread_ join/2} is called on
the thread. Defined values for @var{ Status} are:
@table @code
2004-03-06 00:31:48 +00:00
@item true
2004-03-05 17:27:53 +00:00
The goal has been proven successfully.
2004-03-06 00:31:48 +00:00
@item false
2004-03-05 17:27:53 +00:00
The goal has failed.
2004-03-06 00:31:48 +00:00
@item exception(@var{ Term} )
The thread is terminated on an
2004-03-05 17:27:53 +00:00
exception. See @code{ print_ message/2} to turn system exceptions into
readable messages.
2004-03-08 15:38:36 +00:00
@item exited(@var{ Term} )
The thread is terminated on @code{ thread_ exit/1} using the argument @var{ Term} .
2004-03-05 17:27:53 +00:00
@end table
@item thread_ detach(+@var{ Id} )
@findex thread_ detach/1
@snindex thread_ detach/1
@cnindex thread_ detach/1
2004-03-08 15:38:36 +00:00
Switch thread into detached-state (see @code{ detached} option at
2004-03-05 17:27:53 +00:00
@code{ thread_ create/3} at runtime. @var{ Id} is the identifier of the thread
placed in detached state.
One of the possible applications is to simplify debugging. Threads that
are created as @code{ detached} leave no traces if they crash. For
not-detached threads the status can be inspected using
@code{ current_ thread/2} . Threads nobody is waiting for may be created
normally and detach themselves just before completion. This way they
leave no traces on normal completion and their reason for failure can be
inspected.
2006-05-04 19:46:50 +01:00
@item thread_ yield
@findex thread_ yield/0
@snindex thread_ yield/0
@cnindex thread_ yield/0
Voluntarily relinquish the processor.
2004-03-05 17:27:53 +00:00
@item thread_ exit(+@var{ Term} )
@findex thread_ exit/1
@snindex thread_ exit/1
@cnindex thread_ exit/1
Terminates the thread immediately, leaving @code{ exited(@var{ Term} )} as
result-state for @code{ thread_ join/2} . If the thread has the attribute
2004-03-08 15:38:36 +00:00
@code{ detached} @code{ true} it terminates, but its exit status cannot be
2004-03-05 17:27:53 +00:00
retrieved using @code{ thread_ join/2} making the value of @var{ Term}
irrelevant. The Prolog stacks and C-thread are reclaimed.
2004-03-06 00:31:48 +00:00
@item thread_ at_ exit(:@var{ Term} )
@findex thread_ at_ exit/1
@snindex thread_ at_ exit/1
@cnindex thread_ at_ exit/1
Run @var{ Goal} just before releasing the thread resources. This is to
be compared to @code{ at_ halt/1} , but only for the current
thread. These hooks are ran regardless of why the execution of the
thread has been completed. As these hooks are run, the return-code is
2008-04-03 00:08:36 +01:00
already available through @code{ thread_ property/2} using the result of
@code{ thread_ self/1} as thread-identifier. If you want to guarantee the
execution of an exit hook no matter how the thread terminates (the thread
can be aborted before reaching the @code{ thread_ at_ exit/1} call), consider
using instead the @code{ at_ exit/1} option of @code{ thread_ create/3} .
2004-03-06 00:31:48 +00:00
@item thread_ setconcurrency(+@var{ Old} , -@var{ New} )
@findex thread_ setconcurrency/2
@snindex thread_ setconcurrency/2
@cnindex thread_ setconcurrency/2
2004-03-05 17:27:53 +00:00
Determine the concurrency of the process, which is defined as the
2004-03-06 00:31:48 +00:00
maximum number of concurrently active threads. `Active' here means
they are using CPU time. This option is provided if the
thread-implementation provides
@code{ pthread_ setconcurrency()} . Solaris is a typical example of this
2004-03-05 17:27:53 +00:00
family. On other systems this predicate unifies @var{ Old} to 0 (zero)
and succeeds silently.
2006-05-25 17:28:28 +01:00
2006-05-25 23:17:42 +01:00
@item thread_ sleep(+@var{ Time} )
2006-05-25 17:28:28 +01:00
@findex thread_ sleep/1
@snindex thread_ sleep/1
@cnindex thread_ sleep/1
Make current thread sleep for @var{ Time} seconds. @var{ Time} may be an
2006-12-31 16:10:29 +00:00
integer or a floating point number. When time is zero or a negative value
the call succeeds and returns immediately. This call should not be used if
2006-05-25 17:28:28 +01:00
alarms are also being used.
2004-03-05 17:27:53 +00:00
@end table
2004-03-08 15:38:36 +00:00
@node Monitoring Threads, Thread Communication,Creating and Destroying Prolog Threads,Threads
@section Monitoring Threads
2004-03-05 17:27:53 +00:00
Normal multi-threaded applications should not need these the predicates
from this section because almost any usage of these predicates is
unsafe. For example checking the existence of a thread before signalling
it is of no use as it may vanish between the two calls. Catching
2004-03-06 00:31:48 +00:00
exceptions using @code{ catch/3} is the only safe way to deal with
2004-03-05 17:27:53 +00:00
thread-existence errors.
2004-03-06 00:31:48 +00:00
These predicates are provided for diagnosis and monitoring tasks.
2004-03-05 17:27:53 +00:00
@table @code
2007-09-18 18:51:53 +01:00
@item thread_ property(?@var{ Id} , ?@var{ Property} )
2007-09-16 21:42:13 +01:00
@findex thread_ property/2
@snindex thread_ property/2
@cnindex thread_ property/2
Enumerates the properties of the specified thread.
Calling @code{ thread_ property/2} does not influence any thread. See also
@code{ thread_ join/2} . For threads that have an alias-name, this name can
be used in @var{ Id} instead of the numerical thread identifier.
@var{ Property} is one of:
@table @code
@item status(@var{ Status} )
The thread status of a thread (see below).
@item alias(@var{ Alias} )
The thread alias, if it exists.
2008-04-02 23:45:55 +01:00
@item at_ exit(@var{ AtExit} )
The thread exit hook, if defined (not available if the thread is already terminated).
2007-09-16 21:42:13 +01:00
@item detached(@var{ Boolean} )
The detached state of the thread.
@item stack(@var{ Size} )
The thread stack data-area size.
@item trail(@var{ Size} )
The thread trail data-area size.
@item system(@var{ Size} )
The thread system data-area size.
@end table
2004-03-06 00:31:48 +00:00
@item current_ thread(+@var{ Id} , -@var{ Status} )
@findex current_ thread/2
@snindex current_ thread/2
@cnindex current_ thread/2
2004-03-05 17:27:53 +00:00
Enumerates identifiers and status of all currently known threads.
2007-09-16 21:09:24 +01:00
Calling @code{ current_ thread/2} does not influence any thread. See also
2004-03-06 00:31:48 +00:00
@code{ thread_ join/2} . For threads that have an alias-name, this name is
2004-03-05 17:27:53 +00:00
returned in @var{ Id} instead of the numerical thread identifier.
@var{ Status} is one of:
@table @code
2004-03-06 00:31:48 +00:00
@item running
2004-03-05 17:27:53 +00:00
The thread is running. This is the initial status of a thread. Please
note that threads waiting for something are considered running too.
2004-03-06 00:31:48 +00:00
@item false
2004-03-05 17:27:53 +00:00
The @var{ Goal} of the thread has been completed and failed.
2004-03-06 00:31:48 +00:00
@item true
2004-03-05 17:27:53 +00:00
The @var{ Goal} of the thread has been completed and succeeded.
2004-03-06 00:31:48 +00:00
@item exited(@var{ Term} )
The @var{ Goal} of the thread has been terminated using @code{ thread_ exit/1}
2004-03-05 17:27:53 +00:00
with @var{ Term} as argument. If the underlying native thread has
exited (using pthread_ exit()) @var{ Term} is unbound.
2004-03-06 00:31:48 +00:00
@item exception(@var{ Term} )
2004-03-05 17:27:53 +00:00
The @var{ Goal} of the thread has been terminated due to an uncaught
2004-03-06 00:31:48 +00:00
exception (see @code{ throw/1} and @code{ catch/3} ).
2004-03-05 17:27:53 +00:00
@end table
2004-03-06 00:31:48 +00:00
@item thread_ statistics(+@var{ Id} , +@var{ Key} , -@var{ Value} )
@findex thread_ statistics/3
@snindex thread_ statistics/3
@cnindex thread_ statistics/3
Obtains statistical information on thread @var{ Id} as @code{ statistics/2}
2004-03-05 17:27:53 +00:00
does in single-threaded applications. This call returns all keys
2004-03-06 00:31:48 +00:00
of @code{ statistics/2} , although only information statistics about the
stacks and CPU time yield different values for each thread.
2004-03-05 17:27:53 +00:00
2004-03-06 00:31:48 +00:00
@item mutex_ statistics
@findex mutex_ statistics/0
@snindex mutex_ statistics/0
@cnindex mutex_ statistics/0
2004-03-05 17:27:53 +00:00
Print usage statistics on internal mutexes and mutexes associated
with dynamic predicates. For each mutex two numbers are printed:
the number of times the mutex was acquired and the number of
2004-03-06 00:31:48 +00:00
collisions: the number times the calling thread has to
2009-04-25 16:59:23 +01:00
wait for the mutex. The collision-count is not available on
2004-03-05 17:27:53 +00:00
Windows as this would break portability to Windows-95/98/ME or
significantly harm performance. Generally collision count is
close to zero on single-CPU hardware.
2006-05-26 00:46:57 +01:00
@item threads
@findex threads/0
@snindex threads/0
@cnindex threads/0
Prints a table of current threads and their status.
2004-03-05 17:27:53 +00:00
@end table
2004-03-08 15:38:36 +00:00
@node Thread Communication, Thread Synchronisation, Monitoring Threads, Threads
2004-03-06 00:31:48 +00:00
@section Thread communication
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@menu
Subnodes of Thread Communication
* Message Queues::
* Signalling Threads::
* Threads and Dynamic Predicates::
@end menu
@node Message Queues, Signalling Threads, ,Thread Communication
@subsection Message Queues
2004-03-05 17:27:53 +00:00
Prolog threads can exchange data using dynamic predicates, database
records, and other globally shared data. These provide no suitable means
to wait for data or a condition as they can only be checked in an
2004-03-08 15:38:36 +00:00
expensive polling loop. @emph{ Message queues} provide a means for
2004-03-05 17:27:53 +00:00
threads to wait for data or conditions without using the CPU.
Each thread has a message-queue attached to it that is identified
by the thread. Additional queues are created using
2004-03-08 15:38:36 +00:00
@code{ message_ queue_ create/2} .
2004-03-05 17:27:53 +00:00
@table @code
2007-09-18 18:51:53 +01:00
@item thread_ send_ message(+@var{ Term} )
@findex thread_ send_ message/1
@snindex thread_ send_ message/1
@cnindex thread_ send_ message/1
Places @var{ Term} in the message-queue of the thread running the goal.
Any term can be placed in a message queue, but note that the term is
copied to the receiving thread and variable-bindings are thus lost.
This call returns immediately.
2004-03-08 15:38:36 +00:00
@item thread_ send_ message(+@var{ QueueOrThreadId} , +@var{ Term} )
@findex thread_ send_ message/2
@snindex thread_ send_ message/2
@cnindex thread_ send_ message/2
2004-03-05 17:27:53 +00:00
Place @var{ Term} in the given queue or default queue of the indicated
thread (which can even be the message queue of itself (see
2004-03-08 15:38:36 +00:00
@code{ thread_ self/1} ). Any term can be placed in a message queue, but note that
2004-03-05 17:27:53 +00:00
the term is copied to the receiving thread and variable-bindings are
thus lost. This call returns immediately.
If more than one thread is waiting for messages on the given queue and
at least one of these is waiting with a partially instantiated
2004-03-08 15:38:36 +00:00
@var{ Term} , the waiting threads are @emph{ all} sent a wakeup signal,
2004-03-05 17:27:53 +00:00
starting a rush for the available messages in the queue. This behaviour
can seriously harm performance with many threads waiting on the same
queue as all-but-the-winner perform a useless scan of the queue. If
there is only one waiting thread or all waiting threads wait with an
2007-09-16 21:09:24 +01:00
unbound variable an arbitrary thread is restarted to scan the queue.
2004-03-08 15:38:36 +00:00
@comment \footnote { See the documentation for the POSIX thread functions
@comment pthread_ cond_ signal() v.s.\ pthread_ cond_ broadcastt()
@comment for background information.}
@item thread_ get_ message(?@var{ Term} )
@findex thread_ get_ message/1
@snindex thread_ get_ message/1
@cnindex thread_ get_ message/1
2004-03-05 17:27:53 +00:00
Examines the thread message-queue and if necessary blocks execution
until a term that unifies to @var{ Term} arrives in the queue. After
a term from the queue has been unified unified to @var{ Term} , the
term is deleted from the queue and this predicate returns.
Please note that not-unifying messages remain in the queue. After
2004-03-08 15:38:36 +00:00
the following has been executed, thread 1 has the term @code{ gnu}
2004-03-05 17:27:53 +00:00
in its queue and continues execution using @var{ A} is @code{ gnat} .
2004-03-08 15:38:36 +00:00
@example
2004-03-05 17:27:53 +00:00
<thread 1>
thread_ get_ message(a(A)),
<thread 2>
thread_ send_ message(b(gnu)),
thread_ send_ message(a(gnat)),
2004-03-08 15:38:36 +00:00
@end example
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
See also @code{ thread_ peek_ message/1} .
2004-03-05 17:27:53 +00:00
2007-09-16 21:09:24 +01:00
@item message_ queue_ create(?@var{ Queue} )
@findex message_ queue_ create/1
@snindex message_ queue_ create/1
@cnindex message_ queue_ create/1
2004-03-05 17:27:53 +00:00
If @var{ Queue} is an atom, create a named queue. To avoid ambiguity
2004-03-08 15:38:36 +00:00
on @code{ thread_ send_ message/2} , the name of a queue may not be in use
as a thread-name. If @var{ Queue} is unbound an anonymous queue is
created and @var{ Queue} is unified to its identifier.
2007-09-16 21:09:24 +01:00
@item message_ queue_ destroy(+@var{ Queue} )
@findex message_ queue_ destroy/1
@snindex message_ queue_ destroy/1
@cnindex message_ queue_ destroy/1
Destroy a message queue created with @code{ message_ queue_ create/1} . It is
2004-03-08 15:38:36 +00:00
@emph{ not} allows to destroy the queue of a thread. Neither is it
2004-03-05 17:27:53 +00:00
allowed to destroy a queue other threads are waiting for or, for
2009-04-25 16:59:23 +01:00
anonymous message queues, may try to wait for later.
2004-03-05 17:27:53 +00:00
2007-09-18 18:51:53 +01:00
@item thread_ get_ message(+@var{ Queue} , ?@var{ Term} )
2004-03-08 15:38:36 +00:00
@findex thread_ get_ message/2
@snindex thread_ get_ message/2
@cnindex thread_ get_ message/2
2007-09-16 21:09:24 +01:00
As @code{ thread_ get_ message/1} , operating on a given queue. It is allowed to
2004-03-05 17:27:53 +00:00
peek into another thread's message queue, an operation that can be used
to check whether a thread has swallowed a message sent to it.
2007-09-16 21:09:24 +01:00
2007-09-18 18:51:53 +01:00
@item thread_ peek_ message(?@var{ Term} )
@findex thread_ peek_ message/1
@snindex thread_ peek_ message/1
@cnindex thread_ peek_ message/1
Examines the thread message-queue and compares the queued terms
with @var{ Term} until one unifies or the end of the queue has been
reached. In the first case the call succeeds (possibly instantiating
@var{ Term} . If no term from the queue unifies this call fails.
@item thread_ peek_ message(+@var{ Queue} , ?@var{ Term} )
2007-09-16 21:09:24 +01:00
@findex thread_ peek_ message/2
@snindex thread_ peek_ message/2
@cnindex thread_ peek_ message/2
As @code{ thread_ peek_ message/1} , operating on a given queue. It is allowed to
peek into another thread's message queue, an operation that can be used
to check whether a thread has swallowed a message sent to it.
2004-03-05 17:27:53 +00:00
@end table
2004-03-08 15:38:36 +00:00
Explicit message queues are designed with the @emph{ worker-pool} model
2004-03-05 17:27:53 +00:00
in mind, where multiple threads wait on a single queue and pick up the
first goal to execute. Below is a simple implementation where the
workers execute arbitrary Prolog goals. Note that this example provides
no means to tell when all work is done. This must be realised using
additional synchronisation.
2004-03-08 15:38:36 +00:00
@example
2004-03-05 17:27:53 +00:00
% create_workers(+Id, +N)
%
% Create a pool with given Id and number of workers.
create_ workers(Id, N) :-
message_ queue_ create(Id),
forall(between(1, N, _ ),
thread_ create(do_ work(Id), _ , [])).
do_ work(Id) :-
repeat,
thread_ get_ message(Id, Goal),
( catch(Goal, E, print_ message(error, E))
-> true
; print_ message(error, goal_ failed(Goal, worker(Id)))
),
fail.
% work(+Id, +Goal)
%
% Post work to be done by the pool
work(Id, Goal) :-
thread_ send_ message(Id, Goal).
2004-03-08 15:38:36 +00:00
@end example
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@node Signalling Threads, Threads and Dynamic Predicates,Message Queues, Thread Communication
@subsection Signalling Threads
2004-03-05 17:27:53 +00:00
These predicates provide a mechanism to make another thread execute some
2004-03-08 15:38:36 +00:00
goal as an @emph{ interrupt} . Signalling threads is safe as these
2004-03-05 17:27:53 +00:00
interrupts are only checked at safe points in the virtual machine.
Nevertheless, signalling in multi-threaded environments should be
2004-03-08 15:38:36 +00:00
handled with care as the receiving thread may hold a @emph{ mutex}
2007-09-16 21:09:24 +01:00
(see @code{ with_ mutex/2} ). Signalling probably only makes sense to start
2004-03-08 15:38:36 +00:00
debugging threads and to cancel no-longer-needed threads with @code{ throw/1} ,
2004-03-05 17:27:53 +00:00
where the receiving thread should be designed carefully do handle
exceptions at any point.
@table @code
2004-03-08 15:38:36 +00:00
@item thread_ signal(+@var{ ThreadId} , :@var{ Goal} )
@findex thread_ signal/2
@snindex thread_ signal/2
@cnindex thread_ signal/2
2004-03-05 17:27:53 +00:00
Make thread @var{ ThreadId} execute @var{ Goal} at the first
opportunity. In the current implementation, this implies at the first
2004-03-08 15:38:36 +00:00
pass through the @emph{ Call-port} . The predicate @code{ thread_ signal/2}
2004-03-05 17:27:53 +00:00
itself places @var{ Goal} into the signalled-thread's signal queue
and returns immediately.
Signals (interrupts) do not cooperate well with the world of
multi-threading, mainly because the status of mutexes cannot be
guaranteed easily. At the call-port, the Prolog virtual machine
holds no locks and therefore the asynchronous execution is safe.
2004-03-08 15:38:36 +00:00
@var{ Goal} can be any valid Prolog goal, including @code{ throw/1} to make
the receiving thread generate an exception and @code{ trace/0} to start
2004-03-05 17:27:53 +00:00
tracing the receiving thread.
2004-03-08 15:38:36 +00:00
@comment In the Windows version, the receiving thread immediately executes
@comment the signal if it reaches a Windows GetMessage() call, which generally
@comment happens of the thread is waiting for (user-)input.
2004-03-05 17:27:53 +00:00
@end table
2004-03-08 15:38:36 +00:00
@node Threads and Dynamic Predicates, , Signalling Threads, Thread Communication
@subsection Threads and Dynamic Predicates
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
Besides queues threads can share and exchange data using dynamic
predicates. The multi-threaded version knows about two types of
dynamic predicates. By default, a predicate declared @emph{ dynamic}
(see @code{ dynamic/1} ) is shared by all threads. Each thread may
assert, retract and run the dynamic predicate. Synchronisation inside
Prolog guarantees the consistency of the predicate. Updates are
@emph{ logical} : visible clauses are not affected by assert/retract
2004-03-05 17:27:53 +00:00
after a query started on the predicate. In many cases primitive from
2009-04-25 16:59:23 +01:00
thread synchronisation should be used to ensure application invariants on
2004-03-05 17:27:53 +00:00
the predicate are maintained.
Besides shared predicates, dynamic predicates can be declared with the
2004-03-08 15:38:36 +00:00
@code{ thread_ local/1} directive. Such predicates share their
attributes, but the clause-list is different in each thread.
2004-03-05 17:27:53 +00:00
@table @code
2004-03-08 15:38:36 +00:00
@item thread_ local(@var{ +Functor/Arity} )
@findex thread_ local/1 (directive)
@snindex thread_ local/1 (directive)
@cnindex thread_ local/1 (directive)
related to the dynamic/1 directive. It tells the system that the
predicate may be modified using @code{ assert/1} , @code{ retract/1} ,
etc, during execution of the program. Unlike normal shared dynamic
2004-03-05 17:27:53 +00:00
data however each thread has its own clause-list for the predicate.
As a thread starts, this clause list is empty. If there are still
2004-03-08 15:38:36 +00:00
clauses as the thread terminates these are automatically reclaimed by
2007-09-16 21:09:24 +01:00
the system. The @code{ thread_ local} property implies
the property @code{ dynamic} .
2004-03-05 17:27:53 +00:00
Thread-local dynamic predicates are intended for maintaining
thread-specific state or intermediate results of a computation.
It is not recommended to put clauses for a thread-local predicate into
a file as in the example below as the clause is only visible from the
thread that loaded the source-file. All other threads start with an
empty clause-list.
2004-03-08 15:38:36 +00:00
@example
2004-03-05 17:27:53 +00:00
:- thread_ local
foo/1.
foo(gnat).
2004-03-08 15:38:36 +00:00
@end example
2004-03-05 17:27:53 +00:00
@end table
2004-03-08 15:38:36 +00:00
@node Thread Synchronisation, , Thread Communication, Threads
@section Thread Synchronisation
2004-03-05 17:27:53 +00:00
All internal Prolog operations are thread-safe. This implies two Prolog
threads can operate on the same dynamic predicate without corrupting the
consistency of the predicate. This section deals with user-level
2004-03-08 15:38:36 +00:00
@emph{ mutexes} (called @emph{ monitors} in ADA or
@emph{ critical-sections} by Microsoft). A mutex is a
@emph{ MUT} ual @emph{ EX} clusive device, which implies at most one thread
can @emph{ hold} a mutex.
2004-03-05 17:27:53 +00:00
Mutexes are used to realise related updates to the Prolog database.
With `related', we refer to the situation where a `transaction' implies
two or more changes to the Prolog database. For example, we have a
2004-03-08 15:38:36 +00:00
predicate @code{ address/2} , representing the address of a person and we want
2004-03-05 17:27:53 +00:00
to change the address by retracting the old and asserting the new
address. Between these two operations the database is invalid: this
person has either no address or two addresses, depending on the
assert/retract order.
Here is how to realise a correct update:
2004-03-08 15:38:36 +00:00
@example
2004-03-05 17:27:53 +00:00
:- initialization
mutex_ create(addressbook).
change_ address(Id, Address) :-
mutex_ lock(addressbook),
retractall(address(Id, _ )),
asserta(address(Id, Address)),
mutex_ unlock(addressbook).
2004-03-08 15:38:36 +00:00
@end example
2004-03-05 17:27:53 +00:00
@table @code
2004-03-08 15:38:36 +00:00
@item mutex_ create(?@var{ MutexId} )
@findex mutex_ create/1
@snindex mutex_ create/1
@cnindex mutex_ create/1
Create a mutex. if @var{ MutexId} is an atom, a @emph{ named} mutex is
2004-03-05 17:27:53 +00:00
created. If it is a variable, an anonymous mutex reference is returned.
There is no limit to the number of mutexes that can be created.
2004-03-08 15:38:36 +00:00
@item mutex_ destroy(+@var{ MutexId} )
@findex mutex_ destroy/1
@snindex mutex_ destroy/1
@cnindex mutex_ destroy/1
2004-03-05 17:27:53 +00:00
Destroy a mutex. After this call, @var{ MutexId} becomes invalid and
2004-03-08 15:38:36 +00:00
further references yield an @code{ existence_ error} exception.
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@item with_ mutex(+@var{ MutexId} , :@var{ Goal} )
@findex with_ mutex/2
@snindex with_ mutex/2
@cnindex with_ mutex/2
2004-03-05 17:27:53 +00:00
Execute @var{ Goal} while holding @var{ MutexId} . If @var{ Goal} leaves
2004-03-08 15:38:36 +00:00
choicepoints, these are destroyed (as in @code{ once/1} ). The mutex is unlocked
2004-03-05 17:27:53 +00:00
regardless of whether @var{ Goal} succeeds, fails or raises an exception.
An exception thrown by @var{ Goal} is re-thrown after the mutex has been
2004-03-08 15:38:36 +00:00
successfully unlocked. See also @code{ mutex_ create/2} .
2004-03-05 17:27:53 +00:00
Although described in the thread-section, this predicate is also
available in the single-threaded version, where it behaves simply as
2007-09-16 21:09:24 +01:00
@code{ once/1} .
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@item mutex_ lock(+@var{ MutexId} )
@findex mutex_ lock/1
@snindex mutex_ lock/1
@cnindex mutex_ lock/1
Lock the mutex. Prolog mutexes are @emph{ recursive} mutexes: they
2004-03-05 17:27:53 +00:00
can be locked multiple times by the same thread. Only after unlocking
it as many times as it is locked, the mutex becomes available for
locking by other threads. If another thread has locked the mutex the
calling thread is suspended until to mutex is unlocked.
If @var{ MutexId} is an atom, and there is no current mutex with that
2004-03-08 15:38:36 +00:00
name, the mutex is created automatically using @code{ mutex_ create/1} . This
2004-03-05 17:27:53 +00:00
implies named mutexes need not be declared explicitly.
Please note that locking and unlocking mutexes should be paired
carefully. Especially make sure to unlock mutexes even if the protected
code fails or raises an exception. For most common cases use
2009-04-25 16:59:23 +01:00
@code{ with_ mutex/2} , which provides a safer way for handling Prolog-level
2004-03-08 15:38:36 +00:00
mutexes.
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@item mutex_ trylock(+@var{ MutexId} )
@findex mutex_ trylock/1
@snindex mutex_ trylock/1
@cnindex mutex_ trylock/1
2004-03-05 17:27:53 +00:00
As mutex_ lock/1, but if the mutex is held by another thread, this
predicates fails immediately.
2004-03-08 15:38:36 +00:00
@item mutex_ unlock(+@var{ MutexId} )
@findex mutex_ unlock/1
@snindex mutex_ unlock/1
@cnindex mutex_ unlock/1
2004-03-05 17:27:53 +00:00
Unlock the mutex. This can only be called if the mutex is held by the
2004-03-08 15:38:36 +00:00
calling thread. If this is not the case, a @code{ permission_ error}
2004-03-05 17:27:53 +00:00
exception is raised.
2004-03-08 15:38:36 +00:00
@item mutex_ unlock_ all
@findex mutex_ unlock_ all/0
@snindex mutex_ unlock_ all/0
@cnindex mutex_ unlock_ all/0
2004-03-05 17:27:53 +00:00
Unlock all mutexes held by the current thread. This call is especially
2004-03-08 15:38:36 +00:00
useful to handle thread-termination using @code{ abort/0} or exceptions. See
also @code{ thread_ signal/2} .
2004-03-05 17:27:53 +00:00
2004-03-08 15:38:36 +00:00
@item current_ mutex(?@var{ MutexId} , ?@var{ ThreadId} , ?@var{ Count} )
@findex current_ mutex/3
@snindex current_ mutex/3
@cnindex current_ mutex/3
2004-03-05 17:27:53 +00:00
Enumerates all existing mutexes. If the mutex is held by some thread,
2009-04-25 16:59:23 +01:00
@var{ ThreadId} is unified with the identifier of the holding thread and
2004-03-05 17:27:53 +00:00
@var{ Count} with the recursive count of the mutex. Otherwise,
@var{ ThreadId} is @code{ []} and @var{ Count} is 0.
@end table
2004-03-08 15:38:36 +00:00
@node Parallelism, Tabling, Threads, Extensions
2001-04-09 20:54:03 +01:00
@chapter Parallelism
@cindex parallelism
@cindex or-parallelism
There has been a sizeable amount of work on an or-parallel
2007-02-18 00:26:36 +00:00
implementation for YAP, called @strong{ YAPOr} . Most of this work has
2001-04-09 20:54:03 +01:00
been performed by Ricardo Rocha. In this system parallelism is exploited
implicitly by running several alternatives in or-parallel. This option
can be enabled from the @code{ configure} script or by checking the
system's @code{ Makefile} .
2007-02-18 00:26:36 +00:00
@strong{ YAPOr} is still a very experimental system, going through rapid
2001-04-09 20:54:03 +01:00
development. The following restrictions are of note:
@itemize @bullet
2007-02-18 00:26:36 +00:00
@item @strong{ YAPOr} currently only supports the Linux/X86 and SPARC/Solaris
2001-04-09 20:54:03 +01:00
platforms. Porting to other Unix-like platforms should be straightforward.
2007-02-18 00:26:36 +00:00
@item @strong{ YAPOr} does not support parallel updates to the
2001-04-09 20:54:03 +01:00
data-base.
2007-02-18 00:26:36 +00:00
@item @strong{ YAPOr} does not support opening or closing of streams during
2001-04-09 20:54:03 +01:00
parallel execution.
@item Garbage collection and stack shifting are not supported in
2007-02-18 00:26:36 +00:00
@strong{ YAPOr} .
2001-04-09 20:54:03 +01:00
@item Built-ins that cause side-effects can only be executed when
left-most in the search-tree. There are no primitives to provide
asynchronous or cavalier execution of these built-ins, as in Aurora or
Muse.
@item YAP does not support voluntary suspension of work.
@end itemize
We expect that some of these restrictions will be removed in future
releases.
@node Tabling, Low Level Tracing, Parallelism , Extensions
@chapter Tabling
@cindex tabling
2007-02-18 00:26:36 +00:00
@strong{ YAPTab} is the tabling engine that extends YAP's execution
model to support tabled evaluation for definite programs. YAPTab was
2006-04-21 19:39:38 +01:00
implemented by Ricardo Rocha and its implementation is largely based
on the ground-breaking design of the XSB Prolog system, which
2007-02-18 00:26:36 +00:00
implements the SLG-WAM. Tables are implemented using tries and YAPTab
2006-04-21 19:39:38 +01:00
supports the dynamic intermixing of batched scheduling and local
scheduling at the subgoal level. Currently, the following restrictions
are of note:
@itemize @bullet
2007-02-18 00:26:36 +00:00
@item YAPTab does not handle tabled predicates with loops through negation (undefined behaviour).
@item YAPTab does not handle tabled predicates with cuts (undefined behaviour).
@item YAPTab does not support coroutining (configure error).
@item YAPTab does not support tabling dynamic predicates (permission error).
2006-04-21 19:39:38 +01:00
@end itemize
2007-02-18 00:26:36 +00:00
To experiment with YAPTab use @code{ --enable-tabling} in the configure
2006-04-21 19:39:38 +01:00
script or add @code{ -DTABLING} to @code{ YAP_ EXTRAS} in the system's
@code{ Makefile} . We next describe the set of built-ins predicates
2007-02-18 00:26:36 +00:00
designed to interact with YAPTab and control tabled execution:
2001-04-09 20:54:03 +01:00
2006-04-05 01:16:55 +01:00
@table @code
2006-04-21 19:39:38 +01:00
@item table +@var{ P}
@findex table/1
@snindex table/1
@cnindex table/1
Declares predicate @var{ P} (or a list of predicates
@var{ P1} ,...,@var{ Pn} or [@var{ P1} ,...,@var{ Pn} ]) as a tabled
predicate. @var{ P} must be written in the form
@var{ name/arity} . Examples:
@example
:- table son/3.
:- table father/2.
:- table mother/2.
@end example
@noindent or
@example
:- table son/3, father/2, mother/2.
@end example
@noindent or
@example
:- table [son/3, father/2, mother/2].
@end example
2006-04-05 01:16:55 +01:00
2006-04-21 19:39:38 +01:00
@item is_ tabled(+@var{ P} )
2006-04-05 01:16:55 +01:00
@findex is_ tabled/1
@snindex is_ tabled/1
@cnindex is_ tabled/1
2006-04-21 19:39:38 +01:00
Succeeds if the predicate @var{ P} (or a list of predicates
@var{ P1} ,...,@var{ Pn} or [@var{ P1} ,...,@var{ Pn} ]), of the form
@var{ name/arity} , is a tabled predicate.
@item tabling_ mode(+@var{ P} ,?@var{ Mode} )
@findex tabling_ mode/2
@snindex tabling_ mode/2
@cnindex tabling_ mode/2
Sets or reads the default tabling mode for a tabled predicate @var{ P}
(or a list of predicates @var{ P1} ,...,@var{ Pn} or
[@var{ P1} ,...,@var{ Pn} ]). The list of @var{ Mode} options includes:
@table @code
@item batched
Defines that, by default, batched scheduling is the scheduling
strategy to be used to evaluated calls to predicate @var{ P} .
@item local
Defines that, by default, local scheduling is the scheduling
strategy to be used to evaluated calls to predicate @var{ P} .
@item exec_ answers
Defines that, by default, when a call to predicate @var{ P} is
already evaluated (completed), answers are obtained by executing
compiled WAM-like code directly from the trie data
structure. This reduces the loading time when backtracking, but
the order in which answers are obtained is undefined.
@item load_ answers
Defines that, by default, when a call to predicate @var{ P} is
already evaluated (completed), answers are obtained (as a
consumer) by loading them from the trie data structure. This
guarantees that answers are obtained in the same order as they
were found. Somewhat less efficient but creates less choice-points.
@end table
The default tabling mode for a new tabled predicate is @code{ batched}
and @code{ exec_ answers} . To set the tabling mode for all predicates at
once you can use the @code{ yap_ flag/2} predicate as described next.
@item yap_ flag(tabling_ mode,?@var{ Mode} )
@findex tabling_ mode (yap_ flag/2 option)
Sets or reads the tabling mode for all tabled predicates. The list of
@var{ Mode} options includes:
2006-04-05 01:16:55 +01:00
@table @code
2006-04-21 19:39:38 +01:00
@item default
Defines that (i) all calls to tabled predicates are evaluated
using the predicate default mode, and that (ii) answers for all
completed calls are obtained by using the predicate default mode.
@item batched
Defines that all calls to tabled predicates are evaluated using
batched scheduling. This option ignores the default tabling mode
of each predicate.
@item local
Defines that all calls to tabled predicates are evaluated using
local scheduling. This option ignores the default tabling mode
of each predicate.
@item exec_ answers
Defines that answers for all completed calls are obtained by
executing compiled WAM-like code directly from the trie data
structure. This option ignores the default tabling mode
of each predicate.
@item load_ answers
Defines that answers for all completed calls are obtained by
loading them from the trie data structure. This option ignores
the default tabling mode of each predicate.
2006-04-05 01:16:55 +01:00
@end table
2006-04-21 19:39:38 +01:00
@item abolish_ table(+@var{ P} )
2006-04-05 01:16:55 +01:00
@findex abolish_ table/1
@snindex abolish_ table/1
@cnindex abolish_ table/1
2006-04-21 19:39:38 +01:00
Removes all the entries from the table space for predicate @var{ P} (or
a list of predicates @var{ P1} ,...,@var{ Pn} or
[@var{ P1} ,...,@var{ Pn} ]). The predicate remains as a tabled predicate.
@item abolish_ all_ tables/0
@findex abolish_ all_ tables/0
@snindex abolish_ all_ tables/0
@cnindex abolish_ all_ tables/0
Removes all the entries from the table space for all tabled
predicates. The predicates remain as tabled predicates.
@item show_ table(+@var{ P} )
2006-04-05 01:16:55 +01:00
@findex show_ table/1
@snindex show_ table/1
@cnindex show_ table/1
2006-04-21 19:39:38 +01:00
Prints table contents (subgoals and answers) for predicate @var{ P}
(or a list of predicates @var{ P1} ,...,@var{ Pn} or
[@var{ P1} ,...,@var{ Pn} ]).
2006-04-05 01:16:55 +01:00
2006-04-21 19:39:38 +01:00
@item table_ statistics(+@var{ P} )
2006-04-05 01:16:55 +01:00
@findex table_ statistics/1
@snindex table_ statistics/1
@cnindex table_ statistics/1
2006-04-21 19:39:38 +01:00
Prints table statistics (subgoals and answers) for predicate @var{ P}
(or a list of predicates @var{ P1} ,...,@var{ Pn} or
[@var{ P1} ,...,@var{ Pn} ]).
@item tabling_ statistics/0
@findex tabling_ statistics/0
@snindex tabling_ statistics/0
@cnindex tabling_ statistics/0
Prints statistics on space used by all tables.
2006-04-05 01:16:55 +01:00
@end table
2001-04-09 20:54:03 +01:00
@node Low Level Tracing, Low Level Profiling, Tabling, Extensions
@chapter Tracing at Low Level
It is possible to follow the flow at abstract machine level if
YAP is compiled with the flag @code{ LOW_ LEVEL_ TRACER} . Note
that this option is of most interest to implementers, as it quickly generates
an huge amount of information.
Low level tracing can be toggled from an interrupt handler by using the
2006-02-08 19:13:11 +00:00
option @code{ T} . There are also two built-ins that activate and
2001-04-09 20:54:03 +01:00
deactivate low level tracing:
@table @code
@item start_ low_ level_ trace
@findex start_ low_ level_ trace/0
@snindex start_ low_ level_ trace/0
@cnindex start_ low_ level_ trace/0
Begin display of messages at procedure entry and retry.
@item stop_ low_ level_ trace
@findex start_ low_ level_ trace/0
@snindex start_ low_ level_ trace/0
@cnindex start_ low_ level_ trace/0
Stop display of messages at procedure entry and retry.
@end table
Note that this compile-time option will slow down execution.
@node Low Level Profiling, , Low Level Tracing, Extensions
@chapter Profiling the Abstract Machine
Implementors may be interested in detecting on which abstract machine
instructions are executed by a program. The @code{ ANALYST} flag can give
WAM level information. Note that this option slows down execution very
substantially, and is only of interest to developers of the system
internals, or to system debuggers.
@table @code
@item reset_ op_ counters
@findex reset_ op_ counters/0
@snindex reset_ op_ counters/0
@cnindex reset_ op_ counters/0
2002-10-11 04:39:11 +01:00
Reinitialize all counters.
2001-04-09 20:54:03 +01:00
@item show_ op_ counters(+@var{ A} )
@findex show_ op_ counters/1
@snindex show_ op_ counters/1
@cnindex show_ op_ counters/1
Display the current value for the counters, using label @var{ A} . The
label must be an atom.
@item show_ ops_ by_ group(+@var{ A} )
@findex show_ ops_ by_ group/1
@snindex show_ ops_ by_ group/1
@cnindex show_ ops_ by_ group/1
2002-10-11 04:39:11 +01:00
Display the current value for the counters, organized by groups, using
2001-04-09 20:54:03 +01:00
label @var{ A} . The label must be an atom.
@end table
@node Debugging,Efficiency,Extensions,Top
@chapter Debugging
@menu
* Deb Preds:: Debugging Predicates
* Deb Interaction:: Interacting with the debugger
@end menu
@node Deb Preds, Deb Interaction, , Debugging
@section Debugging Predicates
The following predicates are available to control the debugging of
programs:
@table @code
@item debug
@findex debug/0
@saindex debug/0
@cyindex debug/0
Switches the debugger on.
@item debugging
@findex debugging/0
@syindex debugging/0
@cyindex debugging/0
Outputs status information about the debugger which includes the leash
mode and the existing spy-points, when the debugger is on.
@item nodebug
@findex nodebug/0
@syindex nodebug/0
@cyindex nodebug/0
Switches the debugger off.
@item spy +@var{ P}
@findex spy/1
@syindex spy/1
@cyindex spy/1
Sets spy-points on all the predicates represented by
@var{ P} . @var{ P} can either be a single specification or a list of
specifications. Each one must be of the form @var{ Name/Arity}
or @var{ Name} . In the last case all predicates with the name
@var{ Name} will be spied. As in C-Prolog, system predicates and
predicates written in C, cannot be spied.
@item nospy +@var{ P}
@findex nospy/1
@syindex nospy/1
@cyindex nospy/1
Removes spy-points from all predicates specified by @var{ P} .
The possible forms for @var{ P} are the same as in @code{ spy P} .
@item nospyall
@findex nospyall/0
@syindex nospyall/0
@cnindex nospyall/0
Removes all existing spy-points.
2001-08-08 22:17:27 +01:00
@item notrace
Switches off the debugger and stops tracing.
2001-04-09 20:54:03 +01:00
@item leash(+@var{ M} )
@findex leash/1
@syindex leash/1
@cyindex leash/1
Sets leashing mode to @var{ M} .
The mode can be specified as:
@table @code
@item full
prompt on Call, Exit, Redo and Fail
@item tight
prompt on Call, Redo and Fail
@item half
prompt on Call and Redo
@item loose
prompt on Call
@item off
never prompt
2002-06-01 02:46:06 +01:00
@item none
never prompt, same as @code{ off}
2001-04-09 20:54:03 +01:00
@end table
@noindent
2002-06-01 02:46:06 +01:00
The initial leashing mode is @code{ full} .
2001-04-09 20:54:03 +01:00
@noindent
The user may also specify directly the debugger ports
where he wants to be prompted. If the argument for leash
is a number @var{ N} , each of lower four bits of the number is used to
control prompting at one the ports of the box model. The debugger will
prompt according to the following conditions:
@itemize @bullet
@item
if @code{ N/\ 1 =\= 0} prompt on fail
@item
if @code{ N/\ 2 =\= 0} prompt on redo
@item
if @code{ N/\ 4 =\= 0} prompt on exit
@item
if @code{ N/\ 8 =\= 0} prompt on call
@end itemize
@noindent
Therefore, @code{ leash(15)} is equivalent to @code{ leash(full)} and
@code{ leash(0)} is equivalent to @code{ leash(off)} .
@noindent
Another way of using @code{ leash} is to give it a list with the names of
the ports where the debugger should stop. For example,
@code{ leash([call,exit,redo,fail])} is the same as @code{ leash(full)} or
@code{ leash(15)} and @code{ leash([fail])} might be used instead of
@code{ leash(1)} .
@item spy_ write(+@var{ Stream} ,Term)
@findex spy_ write/2
@snindex spy_ write/2
@cnindex spy_ write/2
If defined by the user, this predicate will be used to print goals by
the debugger instead of @code{ write/2} .
2001-08-08 22:17:27 +01:00
@item trace
2008-03-12 16:19:02 +00:00
@findex trace/0
@syindex trace/0
@cyindex trace/0
2001-08-08 22:17:27 +01:00
Switches on the debugger and starts tracing.
2008-03-12 16:19:02 +00:00
@item notrace
@findex notrace/0
@syindex notrace/0
@cyindex notrace/0
Ends tracing and exits the debugger. This is the same as
@code{ nodebug/0} .
2001-04-09 20:54:03 +01:00
@end table
@node Deb Interaction, , Deb Preds, Debugging
@section Interacting with the debugger
2007-02-18 00:26:36 +00:00
Debugging with YAP is similar to debugging with C-Prolog. Both systems
include a procedural debugger, based on Byrd's four port model. In this
model, execution is seen at the procedure level: each activation of a
procedure is seen as a box with control flowing into and out of that
2001-04-09 20:54:03 +01:00
box.
In the four port model control is caught at four key points: before
entering the procedure, after exiting the procedure (meaning successful
evaluation of all queries activated by the procedure), after backtracking but
before trying new alternative to the procedure and after failing the
procedure. Each one of these points is named a port:
@smallexample
@group
*--------------------------------------*
Call | | Exit
---------> + descendant(X,Y) :- offspring(X,Y). + --------->
| |
| descendant(X,Z) :- |
<--------- + offspring(X,Y), descendant(Y,Z). + <---------
Fail | | Redo
*--------------------------------------*
@end group
@end smallexample
@table @code
@item Call
The call port is activated before initial invocation of
procedure. Afterwards, execution will try to match the goal with the
head of existing clauses for the procedure.
@item Exit
This port is activated if the procedure succeeds.
Control will now leave the procedure and return to its ancestor.
@item Redo
if the goal, or goals, activated after the call port
fail then backtracking will eventually return control to this procedure
through the redo port.
@item Fail
If all clauses for this predicate fail, then the
invocation fails, and control will try to redo the ancestor of this
invocation.
@end table
2007-02-18 00:26:36 +00:00
To start debugging, the user will either call @code{ trace} or spy the
relevant procedures, entering debug mode, and start execution of the
program. When finding the first spy-point, YAP's debugger will take
control and show a message of the form:
2001-04-09 20:54:03 +01:00
@example
* (1) call: quicksort([1,2,3],_ 38) ?
@end example
2007-02-18 00:26:36 +00:00
The debugger message will be shown while creeping, or at spy-points,
2001-04-09 20:54:03 +01:00
and it includes four or five fields:
@itemize @bullet
@item
2006-03-06 14:04:57 +00:00
The first three characters are used to point out special states of the
debugger. If the port is exit and the first character is '?', the
2007-02-18 00:26:36 +00:00
current call is non-deterministic, that is, it still has alternatives to
be tried. If the second character is a @code{ *} , execution is at a
2006-03-06 14:04:57 +00:00
spy-point. If the third character is a @code{ >} , execution has returned
2001-04-09 20:54:03 +01:00
either from a skip, a fail or a redo command.
@item
The second field is the activation number, and uniquely identifies the
activation. The number will start from 1 and will be incremented for
each activation found by the debugger.
@item
In the third field, the debugger shows the active port.
@item
2007-02-18 00:26:36 +00:00
The fourth field is the goal. The goal is written by
@code{ write_ term/3} on the standard error stream, using the options
given by @code{ debugger_ print_ options} .
2001-04-09 20:54:03 +01:00
@end itemize
If the active port is leashed, the debugger will prompt the user with a
@code{ ?} , and wait for a command. A debugger command is just a
character, followed by a return. By default, only the call and redo
entries are leashed, but the @code{ leash/1} predicate can be used in
order to make the debugger stop where needed.
There are several commands available, but the user only needs to
remember the help command, which is @code{ h} . This command shows all the
available options, which are:
@table @code
@item c - creep
this command makes YAP continue execution and stop at the next
leashed port.
@item return - creep
the same as c
@item l - leap
2007-02-18 00:26:36 +00:00
YAP will execute until it meets a port for a spied predicate; this mode
keeps all computation history for debugging purposes, so it is more
expensive than standard execution. Use @t{ k} or @t{ z} for fast execution.
2001-04-09 20:54:03 +01:00
@item k - quasi-leap
similar to leap but faster since the computation history is
not kept; useful when leap becomes too slow.
2007-02-18 00:26:36 +00:00
@item z - zip
same as @t{ k}
2001-04-09 20:54:03 +01:00
@item s - skip
YAP will continue execution without showing any messages until
returning to the current activation. Spy-points will be ignored in this
2007-02-18 00:26:36 +00:00
mode. Note that this command keeps all debugging history, use @t{ t} for fast execution. This command is meaningless, and therefore illegal, in the fail
2001-04-09 20:54:03 +01:00
and exit ports.
@item t - fast-skip
2007-02-18 00:26:36 +00:00
similar to skip but faster since computation history is not
kept; useful if skip becomes slow.
@item f [@var{ GoalId} ] - fail
If given no argument, forces YAP to fail the goal, skipping the fail
port and backtracking to the parent.
If @t{ f} receives a goal number as
the argument, the command fails all the way to the goal. If goal @var{ GoalId} has completed execution, YAP fails until meeting the first active ancestor.
@item r [@var{ GoalId} ] - retry
This command forces YAP to jump back call to the port. Note that any
side effects of the goal cannot be undone. This command is not available
at the call port. If @t{ f} receives a goal number as the argument, the
command retries goal @var{ GoalId} instead. If goal @var{ GoalId} has
completed execution, YAP fails until meeting the first active ancestor.
2001-04-09 20:54:03 +01:00
@item a - abort
execution will be aborted, and the interpreter will return to the
2007-02-18 00:26:36 +00:00
top-level. YAP disactivates debug mode, but spypoints are not removed.
2001-04-09 20:54:03 +01:00
@item n - nodebug
2007-02-18 00:26:36 +00:00
stop debugging and continue execution. The command will not clear active
spy-points.
2001-04-09 20:54:03 +01:00
@item e - exit
leave YAP.
@item h - help
show the debugger commands.
@item ! Query
execute a query. YAP will not show the result of the query.
@item b - break
2007-02-18 00:26:36 +00:00
break active execution and launch a break level. This is the same as @code{ !
break} .
2001-04-09 20:54:03 +01:00
@item + - spy this goal
start spying the active goal. The same as @code{ ! spy G} where @var{ G}
is the active goal.
@item - - nospy this goal
stop spying the active goal. The same as @code{ ! nospy G} where @var{ G} is
the active goal.
@item p - print
shows the active goal using print/1
@item d - display
shows the active goal using display/1
@item <Depth - debugger write depth
sets the maximum write depth, both for composite terms and lists, that
2002-01-02 03:54:15 +00:00
will be used by the debugger. For more
2001-04-09 20:54:03 +01:00
information about @code{ write_ depth/2} (@pxref{ I/O Control} ).
@item < - full term
2002-01-02 03:54:15 +00:00
resets to the default of ten the debugger's maximum write depth. For
2001-04-09 20:54:03 +01:00
more information about @code{ write_ depth/2} (@pxref{ I/O Control} ).
2006-03-06 14:04:57 +00:00
@item A - alternatives
show the list of backtrack points in the current execution.
2007-02-18 00:26:36 +00:00
@item g [@var{ N} ]
show the list of ancestors in the current debugging environment. If it
receives @var{ N} , show the first @var{ N} ancestors.
2001-04-09 20:54:03 +01:00
@end table
The debugging information, when fast-skip @code{ quasi-leap} is used, will
be lost.
@node Efficiency, C-Interface, Debugging, Top
2006-04-20 16:28:08 +01:00
@chapter Efficiency Considerations
We next discuss several issues on trying to make Prolog programs run
fast in YAP. We assume two different programming styles:
@table @bullet
2006-05-19 18:49:25 +01:00
@item Execution of @emph{ deterministic} programs often
2006-04-20 16:28:08 +01:00
boils down to a recursive loop of the form:
@example
loop(Env) :-
do_ something(Env,NewEnv),
loop(NewEnv).
@end example
@end table
@section Deterministic Programs
@section Non-Deterministic Programs
@section Data-Base Operations
@section Indexing
@section Profiling
2010-10-24 21:19:03 +01:00
The indexation mechanism restricts the set of clauses to be tried in a
procedure by using information about the status of the instantiated
arguments of the goal. These arguments are then used as a key,
selecting a restricted set of a clauses from all the clauses forming the
procedure.
2001-04-09 20:54:03 +01:00
As an example, the two clauses for concatenate:
@example
concatenate([],L,L).
concatenate([H|T],A,[H|NT]) :- concatenate(T,A,NT).
@end example
If the first argument for the goal is a list, then only the second clause
is of interest. If the first argument is the nil atom, the system needs to
look only for the first clause. The indexation generates instructions that
test the value of the first argument, and then proceed to a selected clause,
or group of clauses.
Note that if the first argument was a free variable, then both clauses
should be tried. In general, indexation will not be useful if the first
argument is a free variable.
When activating a predicate, a Prolog system needs to store state
information. This information, stored in a structure known as choice point
or fail point, is necessary when backtracking to other clauses for the
predicate. The operations of creating and using a choice point are very
expensive, both in the terms of space used and time spent.
Creating a choice point is not necessary if there is only a clause for
the predicate as there are no clauses to backtrack to. With indexation, this
situation is extended: in the example, if the first argument was the atom
nil, then only one clause would really be of interest, and it is pointless to
create a choice point. This feature is even more useful if the first argument
is a list: without indexation, execution would try the first clause, creating
a choice point. The clause would fail, the choice point would then be used to
restore the previous state of the computation and the second clause would
be tried. The code generated by the indexation mechanism would behave
much more efficiently: it would test the first argument and see whether it
is a list, and then proceed directly to the second clause.
An important side effect concerns the use of "cut". In the above
example, some programmers would use a "cut" in the first clause just to
inform the system that the predicate is not backtrackable and force the
removal the choice point just created. As a result, less space is needed but
with a great loss in expressive power: the "cut" would prevent some uses of
the procedure, like generating lists through backtracking. Of course, with
indexation the "cut" becomes useless: the choice point is not even created.
Indexation is also very important for predicates with a large number
of clauses that are used like tables:
@example
2009-04-25 16:59:23 +01:00
logician(aristoteles,greek).
2001-04-09 20:54:03 +01:00
logician(frege,german).
logician(russel,english).
logician(godel,german).
logician(whitehead,english).
@end example
An interpreter like C-Prolog, trying to answer the query:
@example
?- logician(godel,X).
@end example
@noindent
would blindly follow the standard Prolog strategy, trying first the
first clause, then the second, the third and finally finding the
relevant clause. Also, as there are some more clauses after the
important one, a choice point has to be created, even if we know the
next clauses will certainly fail. A "cut" would be needed to prevent
some possible uses for the procedure, like generating all logicians. In
this situation, the indexing mechanism generates instructions that
implement a search table. In this table, the value of the first argument
would be used as a key for fast search of possibly matching clauses. For
the query of the last example, the result of the search would be just
the fourth clause, and again there would be no need for a choice point.
If the first argument is a complex term, indexation will select clauses
just by testing its main functor. However, there is an important
exception: if the first argument of a clause is a list, the algorithm
also uses the list's head if not a variable. For instance, with the
following clauses,
@example
rules([],B,B).
rules([n(N)|T],I,O) :- rules_ for_ noun(N,I,N), rules(T,N,O).
rules([v(V)|T],I,O) :- rules_ for_ verb(V,I,N), rules(T,N,O).
rules([q(Q)|T],I,O) :- rules_ for_ qualifier(Q,I,N), rules(T,N,O).
@end example
@noindent
if the first argument of the goal is a list, its head will be tested, and only
the clauses matching it will be tried during execution.
Some advice on how to take a good advantage of this mechanism:
@itemize @bullet
@item
Try to make the first argument an input argument.
@item
Try to keep together all clauses whose first argument is not a
variable, that will decrease the number of tests since the other clauses are
always tried.
@item
Try to avoid predicates having a lot of clauses with the same key.
For instance, the procedure:
@end itemize
@example
type(n(mary),person).
type(n(john), person).
type(n(chair),object).
type(v(eat),active).
type(v(rest),passive).
@end example
@noindent
becomes more efficient with:
@example
type(n(N),T) :- type_ of_ noun(N,T).
type(v(V),T) :- type_ of_ verb(V,T).
type_ of_ noun(mary,person).
type_ of_ noun(john,person).
type_ of_ noun(chair,object).
type_ of_ verb(eat,active).
type_ of_ verb(rest,passive).
@end example
2007-02-18 00:26:36 +00:00
@node C-Interface,YAPLibrary,Efficiency,Top
2001-04-09 20:54:03 +01:00
@chapter C Language interface to YAP
YAP provides the user with the necessary facilities for writing
2009-04-25 16:59:23 +01:00
predicates in a language other than Prolog. Since, under Unix systems,
2001-04-09 20:54:03 +01:00
most language implementations are link-able to C, we will describe here
only the YAP interface to the C language.
Before describing in full detail how to interface to C code, we will examine
a brief example.
Assume the user requires a predicate @code{ my_ process_ id(Id)} which succeeds
when @var{ Id} unifies with the number of the process under which YAP is running.
In this case we will create a @code{ my_ process.c} file containing the
C-code described below.
@example
@cartouche
2007-02-18 00:26:36 +00:00
#include "YAP/YAPInterface.h"
2001-04-09 20:54:03 +01:00
static int my_ process_ id(void)
@{
2002-09-09 18:40:12 +01:00
YAP_ Term pid = YAP_ MkIntTerm(getpid());
YAP_ Term out = YAP_ ARG1;
return(YAP_ Unify(out,pid));
2001-04-09 20:54:03 +01:00
@}
void init_ my_ predicates()
@{
2002-09-09 18:40:12 +01:00
YAP_ UserCPredicate("my_ process_ id",my_ process_ id,1);
2001-04-09 20:54:03 +01:00
@}
@end cartouche
@end example
The commands to compile the above file depend on the operating
system. Under Linux (i386 and Alpha) you should use:
@example
2001-05-21 21:00:05 +01:00
gcc -c -shared -fPIC my_ process.c
2001-04-25 14:27:14 +01:00
ld -shared -o my_ process.so my_ process.o
2001-04-09 20:54:03 +01:00
@end example
@noindent
2007-05-06 10:55:12 +01:00
Under WIN32 in a MINGW/CYGWIN environment, using the standard
installation path you should use:
@example
gcc -mno-cygwin -I "c:/Yap/include" -c my_ process.c
gcc -mno-cygwin "c:/Yap/bin/yap.dll" --shared -o my_ process.dll my_ process.o
@end example
@noindent
Under WIN32 in a pure CYGWIN environment, using the standard
installation path, you should use:
@example
gcc -I/usr/local -c my_ process.c
gcc -shared -o my_ process.dll my_ process.o /usr/local/bin/yap.dll
@end example
@noindent
2001-04-09 20:54:03 +01:00
Under Solaris2 it is sufficient to use:
@example
gcc -fPIC -c my_ process.c
@end example
@noindent
Under SunOS it is sufficient to use:
@example
gcc -c my_ process.c
@end example
@noindent
Under Digital Unix you need to create a @code{ so} file. Use:
@example
gcc tst.c -c -fpic
ld my_ process.o -o my_ process.so -shared -expect_ unresolved '*'
@end example
@noindent
and replace my @code{ process.so} for my @code{ process.o} in the
remainder of the example.
@noindent
2009-04-25 16:59:23 +01:00
And could be loaded, under YAP, by executing the following Prolog goal
2001-04-09 20:54:03 +01:00
@example
load_ foreign_ files(['my_ process'],[],init_ my_ predicates).
@end example
2007-02-18 00:26:36 +00:00
Note that since YAP4.3.3 you should not give the suffix for object
2001-04-09 20:54:03 +01:00
files. YAP will deduce the correct suffix from the operating system it
is running under.
2009-04-25 16:59:23 +01:00
After loading that file the following Prolog goal
2001-04-09 20:54:03 +01:00
@example
my_ process_ id(N)
@end example
@noindent
2007-02-18 00:26:36 +00:00
would unify N with the number of the process under which YAP is running.
2001-04-09 20:54:03 +01:00
Having presented a full example, we will now examine in more detail the
contents of the C source code file presented above.
The include statement is used to make available to the C source code the
2009-04-25 16:59:23 +01:00
macros for the handling of Prolog terms and also some YAP public
2001-04-09 20:54:03 +01:00
definitions.
The function @code{ my_ process_ id} is the implementation, in C, of the
desired predicate. Note that it returns an integer denoting the success
of failure of the goal and also that it has no arguments even though the
predicate being defined has one.
2009-04-25 16:59:23 +01:00
In fact the arguments of a Prolog predicate written in C are accessed
2002-09-09 18:40:12 +01:00
through macros, defined in the include file, with names @var{ YAP_ ARG1} ,
@var{ YAP_ ARG2} , ..., @var{ YAP_ ARG16} or with @var{ YAP_ A} (@var{ N} )
where @var{ N} is the argument number (starting with 1). In the present
case the function uses just one local variable of type @code{ YAP_ Term} , the
2007-02-18 00:26:36 +00:00
type used for holding YAP terms, where the integer returned by the
2002-09-09 18:40:12 +01:00
standard unix function @code{ getpid()} is stored as an integer term (the
conversion is done by @code{ YAP_ MkIntTerm(Int))} . Then it calls the
pre-defined routine @code{ YAP_ Unify(YAP_ Term, YAP_ Term)} which in turn returns an
integer denoting success or failure of the unification.
2001-04-09 20:54:03 +01:00
The role of the procedure @code{ init_ my_ predicates} is to make known to
2002-09-09 18:40:12 +01:00
YAP, by calling @code{ YAP_ UserCPredicate} , the predicates being
2001-04-09 20:54:03 +01:00
defined in the file. This is in fact why, in the example above,
@code{ init_ my_ predicates} was passed as the third argument to
@code{ load_ foreign_ files} .
The rest of this appendix describes exhaustively how to interface C to YAP.
@menu
* Manipulating Terms:: Primitives available to the C programmer
2001-05-24 16:26:41 +01:00
* Unifying Terms:: How to Unify Two Prolog Terms
* Manipulating Strings:: From character arrays to Lists of codes and back
2007-02-18 00:26:36 +00:00
* Memory Allocation:: Stealing Memory From YAP
* Controlling Streams:: Control How YAP sees Streams
2010-08-02 19:48:17 +01:00
* Utility Functions:: From character arrays to Lists of codes and back
2007-02-18 00:26:36 +00:00
* Calling YAP From C:: From C to YAP to C to YAP
2007-12-05 12:17:25 +00:00
* Module Manipulation in C:: Create and Test Modules from within C
2010-08-31 04:25:56 +01:00
* Miscellaneous C-Functions:: Other Helpful Interface Functions
2001-05-24 16:26:41 +01:00
* Writing C:: Writing Predicates in C
* Loading Objects:: Loading Object Files
2007-02-18 00:26:36 +00:00
* Save& Rest:: Saving and Restoring
* YAP4 Notes:: Changes in Foreign Predicates Interface
2001-04-09 20:54:03 +01:00
@end menu
2001-05-24 16:26:41 +01:00
@node Manipulating Terms, Unifying Terms, , C-Interface
2001-04-09 20:54:03 +01:00
@section Terms
This section provides information about the primitives available to the C
2009-04-25 16:59:23 +01:00
programmer for manipulating Prolog terms.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
Several C typedefs are included in the header file @code{ yap/YAPInterface.h} to
2009-04-25 16:59:23 +01:00
describe, in a portable way, the C representation of Prolog terms.
2001-04-09 20:54:03 +01:00
The user should write is programs using this macros to ensure portability of
code across different versions of YAP.
2002-09-09 18:40:12 +01:00
The more important typedef is @var{ YAP_ Term} which is used to denote the
2009-04-25 16:59:23 +01:00
type of a Prolog term.
2001-04-09 20:54:03 +01:00
Terms, from a point of view of the C-programmer, can be classified as
follows
@table @i
@item uninstantiated variables
@item instantiated variables
@item integers
@item floating-point numbers
@item database references
@item atoms
@item pairs (lists)
@item compound terms
@end table
2002-09-09 18:40:12 +01:00
@findex YAP_ IsVarTerm (C-Interface function)
The primitive
2001-04-09 20:54:03 +01:00
@example
2002-09-09 18:40:12 +01:00
YAP_ Bool YAP_ IsVarTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
@findex YAP_ IsNonVarTerm (C-Interface function)
2001-04-09 20:54:03 +01:00
returns true iff its argument is an uninstantiated variable. Conversely the
primitive
@example
2002-09-09 18:40:12 +01:00
YAP_ Bool YAP_ NonVarTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
returns true iff its argument is not a variable.
The user can create a new uninstantiated variable using the primitive
@example
2005-03-02 19:52:12 +00:00
YAP_ Term YAP_ MkVarTerm()
2001-04-09 20:54:03 +01:00
@end example
2002-09-09 18:40:12 +01:00
@findex YAP_ IsIntTerm (C-Interface function)
@findex YAP_ IsFloatTerm (C-Interface function)
@findex YAP_ IsDBRefTerm (C-Interface function)
@findex YAP_ IsAtomTerm (C-Interface function)
@findex YAP_ IsPairTerm (C-Interface function)
@findex YAP_ IsApplTerm (C-Interface function)
The following primitives can be used to discriminate among the different types
2001-04-09 20:54:03 +01:00
of non-variable terms:
@example
2002-09-09 18:40:12 +01:00
YAP_ Bool YAP_ IsIntTerm(YAP_ Term @var{ t} )
YAP_ Bool YAP_ IsFloatTerm(YAP_ Term @var{ t} )
YAP_ Bool YAP_ IsDbRefTerm(YAP_ Term @var{ t} )
YAP_ Bool YAP_ IsAtomTerm(YAP_ Term @var{ t} )
YAP_ Bool YAP_ IsPairTerm(YAP_ Term @var{ t} )
YAP_ Bool YAP_ IsApplTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
2002-09-09 18:40:12 +01:00
Next, we mention the primitives that allow one to destruct and construct
terms. All the above primitives ensure that their result is
@i{ dereferenced} , i.e. that it is not a pointer to another term.
2001-04-09 20:54:03 +01:00
2002-09-09 18:40:12 +01:00
@findex YAP_ MkIntTerm (C-Interface function)
@findex YAP_ IntOfTerm (C-Interface function)
2001-04-09 20:54:03 +01:00
The following primitives are provided for creating an integer term from an
integer and to access the value of an integer term.
@example
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ MkIntTerm(YAP_ Int @var{ i} )
2004-05-14 18:11:32 +01:00
YAP_ Int YAP_ IntOfTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
where @code{ YAP_ Int} is a typedef for the C integer type appropriate for
the machine or compiler in question (normally a long integer). The size
of the allowed integers is implementation dependent but is always
greater or equal to 24 bits: usually 32 bits on 32 bit machines, and 64
on 64 bit machines.
@findex YAP_ MkFloatTerm (C-Interface function)
@findex YAP_ FloatOfTerm (C-Interface function)
2001-04-09 20:54:03 +01:00
The two following primitives play a similar role for floating-point terms
@example
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ MkFloatTerm(YAP_ flt @var{ double} )
2004-05-14 18:11:32 +01:00
YAP_ flt YAP_ FloatOfTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
where @code{ flt} is a typedef for the appropriate C floating point type,
nowadays a @code{ double}
2001-04-09 20:54:03 +01:00
2004-05-14 18:11:32 +01:00
@findex YAP_ IsBigNumTerm (C-Interface function)
@findex YAP_ MkBigNumTerm (C-Interface function)
@findex YAP_ BigNumOfTerm (C-Interface function)
The following primitives are provided for verifying whether a term is
a big int, creating a term from a big integer and to access the value
of a big int from a term.
@example
2005-10-15 03:43:59 +01:00
YAP_ Bool YAP_ IsBigNumTerm(YAP_ Term @var{ t} )
2006-01-02 03:35:45 +00:00
YAP_ Term YAP_ MkBigNumTerm(void *@var{ b} )
void *YAP_ BigNumOfTerm(YAP_ Term @var{ t} , void *@var{ b} )
2004-05-14 18:11:32 +01:00
@end example
@noindent
2006-01-02 03:35:45 +00:00
YAP must support bignum for the configuration you are using (check the
2007-02-18 00:26:36 +00:00
YAP configuration and setup). For now, YAP only supports the GNU GMP
2006-01-02 03:35:45 +00:00
library, and @code{ void *} will be a cast for @code{ mpz_ t} . Notice
that @code{ YAP_ BigNumOfTerm} requires the number to be already
initialised. As an example, we show how to print a bignum:
@example
static int
p_ print_ bignum(void)
2006-01-10 11:35:27 +00:00
@{
2006-01-02 03:35:45 +00:00
mpz_ t mz;
if (!YAP_ IsBigNumTerm(YAP_ ARG1))
return FALSE;
mpz_ init(mz);
YAP_ BigNumOfTerm(YAP_ ARG1, mz);
gmp_ printf("Shows up as %Zd\n", mz);
mpz_ clear(mz);
2006-01-02 23:19:10 +00:00
return TRUE;
2006-01-10 11:35:27 +00:00
@}
2006-01-02 03:35:45 +00:00
@end example
2004-05-14 18:11:32 +01:00
2002-09-09 18:40:12 +01:00
Currently, no primitives are supplied to users for manipulating data base
2001-04-09 20:54:03 +01:00
references.
2002-09-09 18:40:12 +01:00
@findex YAP_ MkAtomTerm (C-Interface function)
@findex YAP_ AtomOfTerm (C-Interface function)
2009-04-25 16:59:23 +01:00
A special typedef @code{ YAP_ Atom} is provided to describe Prolog
2002-09-09 18:40:12 +01:00
@i{ atoms} (symbolic constants). The two following primitives can be used
to manipulate atom terms
2001-04-09 20:54:03 +01:00
@example
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ MkAtomTerm(YAP_ Atom at)
2004-05-14 18:11:32 +01:00
YAP_ Atom YAP_ AtomOfTerm(YAP_ Term @var{ t} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
@findex YAP_ LookupAtom (C-Interface function)
@findex YAP_ FullLookupAtom (C-Interface function)
@findex YAP_ AtomName (C-Interface function)
The following primitives are available for associating atoms with their
2001-04-09 20:54:03 +01:00
names
@example
2002-09-09 18:40:12 +01:00
YAP_ Atom YAP_ LookupAtom(char * @var{ s} )
YAP_ Atom YAP_ FullLookupAtom(char * @var{ s} )
char *YAP_ AtomName(YAP_ Atom @var{ t} )
@end example
The function @code{ YAP_ LookupAtom} looks up an atom in the standard hash
table. The function @code{ YAP_ FullLookupAtom} will also search if the
atom had been "hidden": this is useful for system maintenance from C
code. The functor @code{ YAP_ AtomName} returns a pointer to the string
for the atom.
2007-09-04 11:34:55 +01:00
@noindent
@findex YAP_ IsWideAtom (C-Interface function)
@findex YAP_ LookupWideAtom (C-Interface function)
@findex YAP_ WideAtomName (C-Interface function)
The following primitives handle constructing atoms from strings with
wide characters, and vice-versa:
@example
YAP_ Atom YAP_ LookupWideAtom(wchar_ t * @var{ s} )
wchar_ t *YAP_ WideAtomName(YAP_ Atom @var{ t} )
@end example
@noindent
@findex YAP_ IsIsWideAtom (C-Interface function)
The following primitive tells whether an atom needs wide atoms in its
representation:
@example
int YAP_ IsWideAtom(YAP_ Atom @var{ t} )
@end example
@noindent
@findex YAP_ AtomNameLength (C-Interface function)
The following primitive can be used to obtain the size of an atom in a
representation-independent way:
@example
int YAP_ AtomNameLength(YAP_ Atom @var{ t} )
@end example
2007-12-05 12:17:25 +00:00
@findex YAP_ AtomGetHold (C-Interface function)
@findex YAP_ AtomReleaseHold (C-Interface function)
@findex YAP_ AGCHook (C-Interface function)
The next routines give users some control over the atom
garbage collector. They allow the user to guarantee that an atom is not
to be garbage collected (this is important if the atom is hold
externally to the Prolog engine, allow it to be collected, and call a
hook on garbage collection:
@example
int YAP_ AtomGetHold(YAP_ Atom @var{ at} )
int YAP_ AtomReleaseHold(YAP_ Atom @var{ at} )
int YAP_ AGCRegisterHook(YAP_ AGC_ hook @var{ f} )
YAP_ Term YAP_ TailOfTerm(YAP_ Term @var{ t} )
@end example
2002-09-09 18:40:12 +01:00
@findex YAP_ MkPairTerm (C-Interface function)
@findex YAP_ MkNewPairTerm (C-Interface function)
@findex YAP_ HeadOfTerm (C-Interface function)
@findex YAP_ TailOfTerm (C-Interface function)
2009-04-25 16:59:23 +01:00
A @i{ pair} is a Prolog term which consists of a tuple of two Prolog
2002-09-09 18:40:12 +01:00
terms designated as the @i{ head} and the @i{ tail} of the term. Pairs are
most often used to build @emph{ lists} . The following primitives can be
used to manipulate pairs:
@example
YAP_ Term YAP_ MkPairTerm(YAP_ Term @var{ Head} , YAP_ Term @var{ Tail} )
YAP_ Term YAP_ MkNewPairTerm(void)
YAP_ Term YAP_ HeadOfTerm(YAP_ Term @var{ t} )
YAP_ Term YAP_ TailOfTerm(YAP_ Term @var{ t} )
@end example
One can construct a new pair from two terms, or one can just build a
pair whose head and tail are new unbound variables. Finally, one can
fetch the head or the tail.
@findex YAP_ MkApplTerm (C-Interface function)
@findex YAP_ MkNewApplTerm (C-Interface function)
@findex YAP_ ArgOfTerm (C-Interface function)
2007-06-04 13:28:02 +01:00
@findex YAP_ ArgsOfTerm (C-Interface function)
2002-09-09 18:40:12 +01:00
@findex YAP_ FunctorOfTerm (C-Interface function)
2001-04-09 20:54:03 +01:00
A @i{ compound} term consists of a @i{ functor} and a sequence of terms with
length equal to the @i{ arity} of the functor. A functor, described in C by
the typedef @code{ Functor} , consists of an atom and of an integer.
The following primitives were designed to manipulate compound terms and
functors
@example
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ MkApplTerm(YAP_ Functor @var{ f} , unsigned long int @var{ n} , YAP_ Term[] @var{ args} )
YAP_ Term YAP_ MkNewApplTerm(YAP_ Functor @var{ f} , int @var{ n} )
YAP_ Term YAP_ ArgOfTerm(int argno,YAP_ Term @var{ ts} )
2007-06-04 13:28:02 +01:00
YAP_ Term *YAP_ ArgsOfTerm(YAP_ Term @var{ ts} )
2004-05-14 18:11:32 +01:00
YAP_ Functor YAP_ FunctorOfTerm(YAP_ Term @var{ ts} )
2002-09-09 18:40:12 +01:00
@end example
@noindent
The @code{ YAP_ MkApplTerm} function constructs a new term, with functor
@var{ f} (of arity @var{ n} ), and using an array @var{ args} of @var{ n}
terms with @var{ n} equal to the arity of the
functor. @code{ YAP_ MkNewApplTerm} builds up a compound term whose
arguments are unbound variables. @code{ YAP_ ArgOfTerm} gives an argument
to a compound term. @code{ argno} should be greater or equal to 1 and
2007-06-04 13:28:02 +01:00
less or equal to the arity of the functor. @code{ YAP_ ArgsOfTerm}
2009-04-25 16:59:23 +01:00
returns a pointer to an array of arguments.
2002-09-09 18:40:12 +01:00
YAP allows one to manipulate the functors of compound term. The function
@code{ YAP_ FunctorOfTerm} allows one to obtain a variable of type
@code{ YAP_ Functor} with the functor to a term. The following functions
then allow one to construct functors, and to obtain their name and arity.
@findex YAP_ MkFunctor (C-Interface function)
@findex YAP_ NameOfFunctor (C-Interface function)
@findex YAP_ ArityOfFunctor (C-Interface function)
@example
YAP_ Functor YAP_ MkFunctor(YAP_ Atom @var{ a} ,unsigned long int @var{ arity} )
YAP_ Atom YAP_ NameOfFunctor(YAP_ Functor @var{ f} )
YAP_ Int YAP_ ArityOfFunctor(YAP_ Functor @var{ f} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-10-11 04:39:11 +01:00
Note that the functor is essentially a pair formed by an atom, and
2002-09-09 18:40:12 +01:00
arity.
2001-04-09 20:54:03 +01:00
2001-05-24 16:26:41 +01:00
@node Unifying Terms, Manipulating Strings, Manipulating Terms, C-Interface
@section Unification
2002-09-09 18:40:12 +01:00
@findex YAP_ Unify (C-Interface function)
2009-04-25 16:59:23 +01:00
YAP provides a single routine to attempt the unification of two Prolog
2002-09-09 18:40:12 +01:00
terms. The routine may succeed or fail:
2001-04-09 20:54:03 +01:00
@example
2002-09-09 18:40:12 +01:00
Int YAP_ Unify(YAP_ Term @var{ a} , YAP_ Term @var{ b} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
The routine attempts to unify the terms @var{ a} and
@var{ b} returning @code{ TRUE} if the unification succeeds and @code{ FALSE}
otherwise.
2001-04-09 20:54:03 +01:00
2001-05-24 16:26:41 +01:00
@node Manipulating Strings, Memory Allocation, Unifying Terms, C-Interface
@section Strings
2002-09-09 18:40:12 +01:00
@findex YAP_ StringToBuffer (C-Interface function)
2001-04-09 20:54:03 +01:00
The YAP C-interface now includes an utility routine to copy a string
represented as a list of a character codes to a previously allocated buffer
@example
2002-09-09 18:40:12 +01:00
int YAP_ StringToBuffer(YAP_ Term @var{ String} , char *@var{ buf} , unsigned int @var{ bufsize} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
The routine copies the list of character codes @var{ String} to a
previously allocated buffer @var{ buf} . The string including a
terminating null character must fit in @var{ bufsize} characters,
otherwise the routine will simply fail. The @var{ StringToBuffer} routine
fails and generates an exception if @var{ String} is not a valid string.
@findex YAP_ BufferToString (C-Interface function)
2008-07-24 17:02:04 +01:00
@findex YAP_ NBufferToString (C-Interface function)
@findex YAP_ WideBufferToString (C-Interface function)
@findex YAP_ NWideBufferToString (C-Interface function)
2002-09-09 18:40:12 +01:00
@findex YAP_ BufferToAtomList (C-Interface function)
2008-07-24 17:02:04 +01:00
@findex YAP_ NBufferToAtomList (C-Interface function)
@findex YAP_ WideBufferToAtomList (C-Interface function)
@findex YAP_ NWideBufferToAtomList (C-Interface function)
@findex YAP_ BufferToDiffList (C-Interface function)
@findex YAP_ NBufferToDiffList (C-Interface function)
@findex YAP_ WideBufferToDiffList (C-Interface function)
@findex YAP_ NWideBufferToDiffList (C-Interface function)
2001-05-24 16:26:41 +01:00
The C-interface also includes utility routines to do the reverse, that
2008-07-24 17:02:04 +01:00
is, to copy a from a buffer to a list of character codes, to a
difference list, or to a list of
character atoms. The routines work either on strings of characters or
strings of wide characters:
2001-05-24 16:26:41 +01:00
@example
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ BufferToString(char *@var{ buf} )
2008-07-24 17:02:04 +01:00
YAP_ Term YAP_ NBufferToString(char *@var{ buf} , size_ t @var{ len} )
YAP_ Term YAP_ WideBufferToString(wchar_ t *@var{ buf} )
YAP_ Term YAP_ NWideBufferToString(wchar_ t *@var{ buf} , size_ t @var{ len} )
2002-09-09 18:40:12 +01:00
YAP_ Term YAP_ BufferToAtomList(char *@var{ buf} )
2008-07-24 17:02:04 +01:00
YAP_ Term YAP_ NBufferToAtomList(char *@var{ buf} , size_ t @var{ len} )
YAP_ Term YAP_ WideBufferToAtomList(wchar_ t *@var{ buf} )
YAP_ Term YAP_ NWideBufferToAtomList(wchar_ t *@var{ buf} , size_ t @var{ len} )
2001-05-24 16:26:41 +01:00
@end example
@noindent
2008-07-24 17:02:04 +01:00
Users are advised to use the @var{ N} version of the routines. Otherwise,
the user-provided string must include a terminating null character.
2001-05-24 16:26:41 +01:00
2004-05-14 17:33:47 +01:00
@findex YAP_ ReadBuffer (C-Interface function)
The C-interface function calls the parser on a sequence of characters
stored at @var{ buf} and returns the resulting term.
@example
YAP_ Term YAP_ ReadBuffer(char *@var{ buf} ,YAP_ Term *@var{ error} )
@end example
@noindent
The user-provided string must include a terminating null
character. Syntax errors will cause returning @code{ FALSE} and binding
@var{ error} to a Prolog term.
2001-05-24 16:26:41 +01:00
@node Memory Allocation, Controlling Streams, Manipulating Strings, C-Interface
@section Memory Allocation
2007-02-18 00:26:36 +00:00
@findex YAP_ AllocSpaceFromYAP (C-Interface function)
2001-04-09 20:54:03 +01:00
The next routine can be used to ask space from the Prolog data-base:
@example
2007-02-18 00:26:36 +00:00
void *YAP_ AllocSpaceFromYAP(int @var{ size} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
The routine returns a pointer to a buffer allocated from the code area,
2002-09-09 18:40:12 +01:00
or @code{ NULL} if sufficient space was not available.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@findex YAP_ FreeSpaceFromYAP (C-Interface function)
The space allocated with @code{ YAP_ AllocSpaceFromYAP} can be released
back to YAP by using:
2001-04-09 20:54:03 +01:00
@example
2007-02-18 00:26:36 +00:00
void YAP_ FreeSpaceFromYAP(void *@var{ buf} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
The routine releases a buffer allocated from the code area. The system
may crash if @code{ buf} is not a valid pointer to a buffer in the code
area.
2010-08-02 19:48:17 +01:00
@node Controlling Streams, Utility Functions, Memory Allocation, C-Interface
2007-02-18 00:26:36 +00:00
@section Controlling YAP Streams from @code{ C}
2001-05-24 16:26:41 +01:00
2002-09-09 18:40:12 +01:00
@findex YAP_ StreamToFileNo (C-Interface function)
2001-05-24 16:26:41 +01:00
The C-Interface also provides the C-application with a measure of
2007-02-18 00:26:36 +00:00
control over the YAP Input/Output system. The first routine allows one
2001-05-24 16:26:41 +01:00
to find a file number given a current stream:
@example
2002-09-09 18:40:12 +01:00
int YAP_ StreamToFileNo(YAP_ Term @var{ stream} )
2001-05-24 16:26:41 +01:00
@end example
@noindent
This function gives the file descriptor for a currently available
stream. Note that null streams and in memory streams do not have
corresponding open streams, so the routine will return a
2007-02-18 00:26:36 +00:00
negative. Moreover, YAP will not be aware of any direct operations on
2001-05-24 16:26:41 +01:00
this stream, so information on, say, current stream position, may become
stale.
2002-09-09 18:40:12 +01:00
@findex YAP_ CloseAllOpenStreams (C-Interface function)
2001-05-24 16:26:41 +01:00
A second routine that is sometimes useful is:
@example
2002-09-09 18:40:12 +01:00
void YAP_ CloseAllOpenStreams(void)
2001-05-24 16:26:41 +01:00
@end example
@noindent
2007-02-18 00:26:36 +00:00
This routine closes the YAP Input/Output system except for the first
2001-05-24 16:26:41 +01:00
three streams, that are always associated with the three standard Unix
streams. It is most useful if you are doing @code{ fork()} .
2008-07-11 18:02:10 +01:00
@findex YAP_ FlushAllStreams (C-Interface function)
Last, one may sometimes need to flush all streams:
@example
void YAP_ CloseAllOpenStreams(void)
@end example
@noindent
It is also useful before you do a @code{ fork()} , or otherwise you may
have trouble with unflushed output.
2002-09-09 18:40:12 +01:00
@findex YAP_ OpenStream (C-Interface function)
2001-05-24 16:26:41 +01:00
The next routine allows a currently open file to become a stream. The
routine receives as arguments a file descriptor, the true file name as a
2002-10-11 04:39:11 +01:00
string, an atom with the user name, and a set of flags:
2001-05-24 16:26:41 +01:00
@example
2002-09-09 18:40:12 +01:00
void YAP_ OpenStream(void *@var{ FD} , char *@var{ name} , YAP_ Term @var{ t} , int @var{ flags} )
2001-05-24 16:26:41 +01:00
@end example
@noindent
The available flags are @code{ YAP_ INPUT_ STREAM} ,
@code{ YAP_ OUTPUT_ STREAM} , @code{ YAP_ APPEND_ STREAM} ,
@code{ YAP_ PIPE_ STREAM} , @code{ YAP_ TTY_ STREAM} , @code{ YAP_ POPEN_ STREAM} ,
@code{ YAP_ BINARY_ STREAM} , and @code{ YAP_ SEEKABLE_ STREAM} . By default, the
2002-09-09 18:40:12 +01:00
stream is supposed to be at position 0. The argument @var{ name} gives
the name by which YAP should know the new stream.
2001-05-24 16:26:41 +01:00
2010-08-02 19:48:17 +01:00
@node Utility Functions, Calling YAP From C, Controlling Streams, C-Interface
@section Utility Functions in @code{ C}
The C-Interface provides the C-application with a a number of utility
functions that are useful.
@findex YAP_ Record (C-Interface function)
The first provides a way to insert a term into the data-base
@example
void *YAP_ Record(YAP_ Term @var{ t} )
@end example
@noindent
This function returns a pointer to a copy of the term in the database
(or to @t{ NULL} if the operation fails.
@findex YAP_ Recorded (C-Interface function)
The next functions provides a way to recover the term from the data-base:
@example
YAP_ Term YAP_ Recorded(void *@var{ handle} )
@end example
@noindent
Notice that the semantics are the same as for @code{ recorded/3} : this
function creates a new copy of the term in the stack, with fresh
variables. The function returns @t{ 0L} if it cannot create a new term.
@findex YAP_ Erase (C-Interface function)
Last, the next function allows one to recover space:
@example
int YAP_ Erase(void *@var{ handle} )
@end example
@noindent
Notice that any accesses using @var{ handle} after this operation may
lead to a crash.
The following functions are often required to compare terms.
@findex YAP_ ExactlyEqual (C-Interface function)
The first function succeeds if two terms are actually the same term, as
@code{ ==/2} :
@example
int YAP_ ExactlyEqual(YAP_ Term t1, YAP_ Term t2)
@end example
@noindent
The second function succeeds if two terms are variant terms, and returns
0 otherwise, as
@code{ =@=/2} :
@example
int YAP_ Variant(YAP_ Term t1, YAP_ Term t2)
@end example
@noindent
The second function computes a hash function for a term, as in
@code{ term_ hash/4} .
@example
YAP_ Int YAP_ TermHash(YAP_ Term t, YAP_ Int range, YAP_ Int depth, int ignore_ variables));
@end example
@noindent
The first three arguments follow @code{ term_ has/4} . The last argument
indicates what to do if we find a variable: if @code{ 0} fail, otherwise
ignore the variable.
@node Calling YAP From C, Module Manipulation in C, Utility Functions, C-Interface
2001-05-24 16:26:41 +01:00
@section From @code{ C} back to Prolog
2007-12-05 12:17:25 +00:00
@findex YAP_ RunGoal (C-Interface function)
There are several ways to call Prolog code from C-code. By default, the
@code{ YAP_ RunGoal()} should be used for this task. It assumes the engine
has been initialised before:
@example
YAP_ RunGoal(YAP_ Term Goal)
@end example
Execute query @var{ Goal} and return 1 if the query succeeds, and 0
otherwise. The predicate returns 0 if failure, otherwise it will return
an @var{ YAP_ Term} .
2008-06-04 14:58:42 +01:00
Quite often, one wants to run a query once. In this case you should use
@var{ Goal} :
2007-12-05 12:17:25 +00:00
@example
2008-06-04 14:58:42 +01:00
YAP_ RunGoalOnce(YAP_ Term Goal)
2007-12-05 12:17:25 +00:00
@end example
2008-06-04 14:58:42 +01:00
The @code{ YAP_ RunGoal()} function makes sure to recover stack space at
the end of execution.
2007-12-05 12:17:25 +00:00
2008-06-04 14:58:42 +01:00
Prolog terms are pointers: a problem users often find is that the term
@var{ Goal} may actually @emph{ be moved around} during the execution of
@code{ YAP_ RunGoal()} , due to garbage collection or stack shifting. If
this is possible, @var{ Goal} will become invalid after executing
@code{ YAP_ RunGoal()} . In this case, it is a good idea to save @var{ Goal}
2007-12-05 12:17:25 +00:00
@emph{ slots} , as shown next:
@example
long sl = YAP_ InitSlot(scoreTerm);
out = YAP_ RunGoal(t);
t = YAP_ GetFromSlot(sl);
YAP_ RecoverSlots(1);
if (out == 0) return FALSE;
@end example
2008-06-04 14:58:42 +01:00
Slots are safe houses in the stack, the garbage collector and the stack
shifter know about them and make sure they have correct values. In this
case, we use a slot to preserve @var{ t} during the execution of
@code{ YAP_ RunGoal} . When the execution of @var{ t} is over we read the
(possibly changed) value of @var{ t} back from the slot @var{ sl} and tell
YAP that the slot @var{ sl} is not needed and can be given back to the
system. The slot functions are as follows:
2007-12-05 12:17:25 +00:00
@table @code
2010-08-04 17:36:20 +01:00
@item YAP_ Int YAP_ NewSlots(int @var{ NumberOfSlots} )
2007-12-05 12:17:25 +00:00
@findex YAP_ NewSlots (C-Interface function)
Allocate @var{ NumberOfSlots} from the stack and return an handle to the
2009-04-25 16:59:23 +01:00
last one. The other handle can be obtained by decrementing the handle.
2007-12-05 12:17:25 +00:00
2010-08-04 17:36:20 +01:00
@item YAP_ Int YAP_ CurrentSlot(void)
2007-12-05 12:17:25 +00:00
@findex YAP_ CurrentSlot (C-Interface function)
Return a handle to the system's default slot.
2010-08-04 20:29:24 +01:00
@item YAP_ Int YAP_ InitSlot(YAP_ Term @var{ t} )
2007-12-05 12:17:25 +00:00
@findex YAP_ InitSlot (C-Interface function)
Create a new slot, initialise it with @var{ t} , and return a handle to
this slot, that also becomes the current slot.
2010-08-04 17:36:20 +01:00
@item YAP_ Term *YAP_ AddressFromSlot(YAP_ Int @var{ slot} )
2007-12-05 12:17:25 +00:00
@findex YAP_ AddressFromSlot (C-Interface function)
Return the address of slot @var{ slot} : please use with care.
2010-08-04 17:36:20 +01:00
@item void YAP_ PutInSlot(YAP_ Int @var{ slot} , YAP_ Term @var{ t} )
2007-12-05 12:17:25 +00:00
@findex YAP_ PutInSlot (C-Interface function)
Set the contents of slot @var{ slot} to @var{ t} .
2008-06-17 14:37:51 +01:00
@item int YAP_ RecoverSlots(int @var{ HowMany} )
2007-12-05 12:17:25 +00:00
@findex YAP_ RecoverSlots (C-Interface function)
Recover the space for @var{ HowMany} slots: these will include the
2008-06-17 14:37:51 +01:00
current default slot. Fails if no such slots exist.
2010-08-04 17:36:20 +01:00
@item YAP_ Int YAP_ ArgsToSlots(int @var{ HowMany} )
@findex YAP_ ArgsToSlots (C-Interface function)
Store the current first @var{ HowMany} arguments in new slots.
@item void YAP_ SlotsToArgs(int @var{ HowMany} , YAP_ Int @var{ slot} )
@findex YAP_ SlotsToArgs (C-Interface function)
Set the first @var{ HowMany} arguments to the @var{ HowMany} slots
starting at @var{ slot} .
2007-12-05 12:17:25 +00:00
@end table
The following functions complement @var{ YAP_ RunGoal} :
@table @code
@findex YAP_ RestartGoal (C-Interface function)
Look for the next solution to the current query by forcing YAP to
backtrack to the latest goal. Notice that slots allocated since the last
@code{ YAP_ RunGoal} will become invalid.
@item @code{ int} YAP_ Reset(@code{ void} )
@findex YAP_ Reset (C-Interface function)
Reset execution environment (similar to the @code{ abort/0}
built-in). This is useful when you want to start a new query before
asking all solutions to the previous query.
@item @code{ int} YAP_ ShutdownGoal(@code{ int backtrack} )
@findex YAP_ ShutdownGoal (C-Interface function)
Clean up the current goal. If
@code{ backtrack} is true, stack space will be recovered and bindings
will be undone. In both cases, any slots allocated since the goal was
created will become invalid.
@item @code{ YAP_ Bool} YAP_ GoalHasException(@code{ YAP_ Term *tp} )
@findex YAP_ RestartGoal (C-Interface function)
Check if the last goal generated an exception, and if so copy it to the
space pointed to by @var{ tp}
@item @code{ void} YAP_ ClearExceptions(@code{ void} )
@findex YAP_ ClearExceptions (C-Interface function)
Reset any exceptions left over by the system.
@end table
The @var{ YAP_ RunGoal} interface is designed to be very robust, but may
not be the most efficient when repeated calls to the same goal are made
and when there is no interest in processing exception. The
@var{ YAP_ EnterGoal} interface should have lower-overhead:
@table @code
@item @code{ YAP_ PredEntryPtr} YAP_ FunctorToPred(@code{ YAP_ Functor} @var{ f} ,
@findex YAP_ FunctorToPred (C-Interface function)
Return the predicate whose main functor is @var{ f} .
@item @code{ YAP_ PredEntryPtr} YAP_ AtomToPred(@code{ YAP_ Atom} @var{ at} ,
@findex YAP_ AtomToPred (C-Interface function)
Return the arity 0 predicate whose name is @var{ at} .
@item @code{ YAP_ Bool} YAP_ EnterGoal(@code{ YAP_ PredEntryPtr} @var{ pe} ,
@code{ YAP_ Term *} @var{ array} , @code{ YAP_ dogoalinfo *} @var{ infop} )
@findex YAP_ EnterGoal (C-Interface function)
Execute a query for predicate @var{ pe} . The query is given as an
array of terms @var{ Array} . @var{ infop} is the address of a goal
handle that can be used to backtrack and to recover space. Succeeds if
a solution was found.
Notice that you cannot create new slots if an YAP_ EnterGoal goal is open.
@item @code{ YAP_ Bool} YAP_ RetryGoal(@code{ YAP_ dogoalinfo *} @var{ infop} )
2010-08-31 03:50:33 +01:00
2007-12-05 12:17:25 +00:00
@findex YAP_ RetryGoal (C-Interface function)
Backtrack to a query created by @code{ YAP_ EnterGoal} . The query is
given by the handle @var{ infop} . Returns whether a new solution could
be be found.
@item @code{ YAP_ Bool} YAP_ LeaveGoal(@code{ YAP_ Bool} @var{ backtrack} ,
@code{ YAP_ dogoalinfo *} @var{ infop} )
@findex YAP_ LeaveGoal (C-Interface function)
Exit a query query created by @code{ YAP_ EnterGoal} . If
@code{ backtrack} is @code{ TRUE} , variable bindings are undone and Heap
space is recovered. Otherwise, only stack space is recovered, ie,
@code{ LeaveGoal} executes a cut.
@end table
Next, follows an example of how to use @code{ YAP_ EnterGoal} :
@example
void
runall(YAP_ Term g)
@{
YAP_ dogoalinfo goalInfo;
YAP_ Term *goalArgs = YAP_ ArraysOfTerm(g);
YAP_ Functor *goalFunctor = YAP_ FunctorOfTerm(g);
2010-08-03 12:58:19 +01:00
YAP_ PredEntryPtr goalPred = YAP_ FunctorToPred(goalFunctor);
2007-12-05 12:17:25 +00:00
result = YAP_ EnterGoal( goalPred, goalArgs, & goalInfo );
while (result)
result = YAP_ RetryGoal( & goalInfo );
YAP_ LeaveGoal(TRUE, & goalInfo);
@}
@end example
2002-09-09 18:40:12 +01:00
@findex YAP_ CallProlog (C-Interface function)
2007-12-05 12:17:25 +00:00
YAP allows calling a @strong{ new} Prolog interpreter from @code{ C} . One
way is to first construct a goal @code{ G} , and then it is sufficient to
perform:
2001-04-09 20:54:03 +01:00
@example
2007-12-05 12:17:25 +00:00
YAP_ Bool YAP_ CallProlog(YAP_ Term @var{ G} )
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
the result will be @code{ FALSE} , if the goal failed, or @code{ TRUE} , if
the goal succeeded. In this case, the variables in @var{ G} will store
the values they have been unified with. Execution only proceeds until
2001-04-09 20:54:03 +01:00
finding the first solution to the goal, but you can call
@code{ findall/3} or friends if you need all the solutions.
2007-12-05 12:17:25 +00:00
Notice that during execution, garbage collection or stack shifting may
have moved the terms
2010-08-31 04:25:56 +01:00
@node Module Manipulation in C, Miscellaneous C-Functions, Calling YAP From C, C-Interface
2007-12-05 12:17:25 +00:00
@section Module Manipulation in C
YAP allows one to create a new module from C-code. To create the new
code it is sufficient to call:
@example
YAP_ Module YAP_ CreateModule(YAP_ Atom @var{ ModuleName} )
@end example
@noindent
Notice that the new module does not have any predicates associated and
that it is not the current module. To find the current module, you can call:
@example
YAP_ Module YAP_ CurrentModule()
@end example
Given a module, you may want to obtain the corresponding name. This is
2009-04-25 16:59:23 +01:00
possible by using:
2007-12-05 12:17:25 +00:00
@example
YAP_ Term YAP_ ModuleName(YAP_ Module mod)
@end example
@noindent
Notice that this function returns a term, and not an atom. You can
@code{ YAP_ AtomOfTerm} to extract the corresponding Prolog atom.
2010-08-31 04:25:56 +01:00
@node Miscellaneous C-Functions, Writing C, Module Manipulation in C, C-Interface
@section Miscellaneous C Functions
@table @code
2010-12-06 20:14:51 +00:00
@item @code{ void} YAP_ Throw(@code{ YAP_ Term exception} )
@item @code{ void} YAP_ AsyncThrow(@code{ YAP_ Term exception} )
@findex YAP_ Throw (C-Interface function)
@findex YAP_ AsyncThrow (C-Interface function)
Throw an exception with term @var{ exception} , just like if you called
@code{ throw/2} . The function @t{ YAP_ AsyncThrow} is supposed to be used
from interrupt handlers.
@c See also @code{ at_ halt/1} .
2010-08-31 04:25:56 +01:00
@item @code{ int} YAP_ SetYAPFlag(@code{ yap_ flag_ t flag, int value} )
@findex YAP_ SetYAPFlag (C-Interface function)
This function allows setting some YAP flags from @code{ C} .Currently,
only two boolean flags are accepted: @code{ YAPC_ ENABLE_ GC} and
@code{ YAPC_ ENABLE_ AGC} . The first enables/disables the standard garbage
collector, the second does the same for the atom garbage collector.`
2011-07-21 14:32:49 +01:00
@item @code{ YAP_ TERM} YAP_ AllocExternalDataInStack(@code{ size_ t bytes} )
@item @code{ void *} YAP_ ExternalDataInStackFromTerm(@code{ YAP_ Term t} )
@item @code{ YAP_ Bool} YAP_ IsExternalDataInStackTerm(@code{ YAP_ Term t} )
@findex YAP_ AllocExternalDataInStack (C-Interface function)
The next routines allow one to store external data in the Prolog
execution stack. The first routine reserves space for @var{ sz} bytes
and returns an opaque handle. The second routines receives the handle
and returns a pointer to the data. The last routine checks if a term
is an opaque handle.
Data will be automatically reclaimed during
backtracking. Also, this storage is opaque to the Prolog garbage compiler,
so it should not be used to store Prolog terms. On the other hand, it
may be useful to store arrays in a compact way, or pointers to external objects.
2010-09-24 14:00:53 +01:00
@item @code{ int} YAP_ HaltRegisterHook(@code{ YAP_ halt_ hook f, void *closure} )
@findex YAP_ HaltRegisterHook (C-Interface function)
Register the function @var{ f} to be called if YAP is halted. The
2011-07-21 14:32:49 +01:00
function is called with two arguments: the exit code of the process
(@code{ 0} if this cannot be determined on your operating system) and
the closure argument @var{ closure} .
2010-09-24 14:00:53 +01:00
@c See also @code{ at_ halt/1} .
2010-12-06 20:14:51 +00:00
2010-08-31 04:25:56 +01:00
@end table
@node Writing C, Loading Objects, Miscellaneous C-Functions, C-Interface
2001-04-09 20:54:03 +01:00
@section Writing predicates in C
We will distinguish two kinds of predicates:
@table @i
@item @i{ deterministic} predicates which either fail or succeed but are not
2002-09-09 18:40:12 +01:00
backtrackable, like the one in the introduction;
2001-04-09 20:54:03 +01:00
@item @i{ backtrackable}
predicates which can succeed more than once.
@end table
2002-09-09 18:40:12 +01:00
@findex YAP_ UserCPredicate (C-Interface function)
2001-04-09 20:54:03 +01:00
The first kind of predicates should be implemented as a C function with
no arguments which should return zero if the predicate fails and a
non-zero value otherwise. The predicate should be declared to
YAP, in the initialization routine, with a call to
@example
2002-09-09 18:40:12 +01:00
void YAP_ UserCPredicate(char *@var{ name} , YAP_ Bool *@var{ fn} (), unsigned long int @var{ arity} );
2001-04-09 20:54:03 +01:00
@end example
@noindent
2002-09-09 18:40:12 +01:00
where @var{ name} is the name of the predicate, @var{ fn} is the C function
implementing the predicate and @var{ arity} is its arity.
2010-01-15 15:09:18 +00:00
@findex YAP_ UserBackCPredicate (C-Interface function, deprecated)
@findex YAP_ UserBackCutCPredicate (C-Interface function)
2002-09-09 18:40:12 +01:00
@findex YAP_ PRESERVE_ DATA (C-Interface function)
@findex YAP_ PRESERVED_ DATA (C-Interface function)
2011-07-21 14:32:49 +01:00
@findex YAP_ PRESERVED_ DATA_ CUT (C-Interface function)
2002-09-09 18:40:12 +01:00
@findex YAP_ cutsucceed (C-Interface function)
@findex YAP_ cutfail (C-Interface function)
2010-01-15 15:09:18 +00:00
For the second kind of predicates we need three C functions. The first one
is called when the predicate is first activated; the second one
is called on backtracking to provide (possibly) other solutions; the
last one is called on pruning. Note
2001-04-09 20:54:03 +01:00
also that we normally also need to preserve some information to find out
the next solution.
In fact the role of the two functions can be better understood from the
2009-04-25 16:59:23 +01:00
following Prolog definition
2001-04-09 20:54:03 +01:00
@example
p :- start.
p :- repeat,
continue.
@end example
@noindent
where @code{ start} and @code{ continue} correspond to the two C functions
described above.
As an example we will consider implementing in C a predicate @code{ n100(N)}
which, when called with an instantiated argument should succeed if that
argument is a numeral less or equal to 100, and, when called with an
uninstantiated argument, should provide, by backtracking, all the positive
integers less or equal to 100.
To do that we first declare a structure, which can only consist
2009-04-25 16:59:23 +01:00
of Prolog terms, containing the information to be preserved on backtracking
2001-04-09 20:54:03 +01:00
and a pointer variable to a structure of that type.
@example
2007-02-18 00:26:36 +00:00
#include "YAPInterface.h"
2005-10-18 18:04:43 +01:00
static int start_ n100(void);
static int continue_ n100(void);
2001-04-09 20:54:03 +01:00
typedef struct @{
2002-09-09 18:40:12 +01:00
YAP_ Term next_ solution; /* the next solution */
2001-04-09 20:54:03 +01:00
@} n100_ data_ type;
n100_ data_ type *n100_ data;
@end example
2001-05-24 16:26:41 +01:00
We now write the @code{ C} function to handle the first call:
2001-04-09 20:54:03 +01:00
@example
2005-10-18 18:04:43 +01:00
static int start_ n100(void)
2001-04-09 20:54:03 +01:00
@{
2005-10-18 18:04:43 +01:00
YAP_ Term t = YAP_ ARG1;
2002-09-09 18:40:12 +01:00
YAP_ PRESERVE_ DATA(n100_ data,n100_ data_ type);
if(YAP_ IsVarTerm(t)) @{
n100_ data->next_ solution = YAP_ MkIntTerm(0);
2005-10-18 18:04:43 +01:00
return continue_ n100();
2001-04-09 20:54:03 +01:00
@}
2002-09-09 18:40:12 +01:00
if(!YAP_ IsIntTerm(t) || YAP_ IntOfTerm(t)<0 || YAP_ IntOfTerm(t)>100) @{
YAP_ cut_ fail();
2001-05-24 16:26:41 +01:00
@} else @{
2002-09-09 18:40:12 +01:00
YAP_ cut_ succeed();
2001-05-24 16:26:41 +01:00
@}
2001-04-09 20:54:03 +01:00
@}
@end example
The routine starts by getting the dereference value of the argument.
2011-07-21 14:32:49 +01:00
The call to @code{ YAP_ PRESERVE_ DATA} is used to initialize the memory
which will hold the information to be preserved across
backtracking. The first argument is the variable we shall use, and the
second its type. Note that we can only use @code{ YAP_ PRESERVE_ DATA}
once, so often we will want the variable to be a structure. This data
is visible to the garbage collector, so it should consist of Prolog
terms, as in the example. It is also correct to store pointers to
objects external to YAP stacks, as the garbage collector will ignore
such references.
2001-04-09 20:54:03 +01:00
If the argument of the predicate is a variable, the routine initializes the
structure to be preserved across backtracking with the information
required to provide the next solution, and exits by calling @code{
continue_ n100} to provide that solution.
2005-10-18 18:04:43 +01:00
If the argument was not a variable, the routine then checks if it was an
integer, and if so, if its value is positive and less than 100. In that
case it exits, denoting success, with @code{ YAP_ cut_ succeed} , or
otherwise exits with @code{ YAP_ cut_ fail} denoting failure.
2001-04-09 20:54:03 +01:00
2002-09-09 18:40:12 +01:00
The reason for using for using the functions @code{ YAP_ cut_ succeed} and
@code{ YAP_ cut_ fail} instead of just returning a non-zero value in the
first case, and zero in the second case, is that otherwise, if
backtracking occurred later, the routine @code{ continue_ n100} would be
called to provide additional solutions.
2001-04-09 20:54:03 +01:00
The code required for the second function is
@example
2005-10-18 18:04:43 +01:00
static int continue_ n100(void)
2001-04-09 20:54:03 +01:00
@{
int n;
2005-03-02 19:52:12 +00:00
YAP_ Term t;
2005-10-18 18:04:43 +01:00
YAP_ Term sol = YAP_ ARG1;
2002-09-09 18:40:12 +01:00
YAP_ PRESERVED_ DATA(n100_ data,n100_ data_ type);
n = YAP_ IntOfTerm(n100_ data->next_ solution);
2001-04-09 20:54:03 +01:00
if( n == 100) @{
2002-09-09 18:40:12 +01:00
t = YAP_ MkIntTerm(n);
2005-10-18 18:04:43 +01:00
YAP_ Unify(sol,t);
2002-09-09 18:40:12 +01:00
YAP_ cut_ succeed();
2001-04-09 20:54:03 +01:00
@}
else @{
2005-10-18 18:04:43 +01:00
YAP_ Unify(sol,n100_ data->next_ solution);
2002-09-09 18:40:12 +01:00
n100_ data->next_ solution = YAP_ MkIntTerm(n+1);
return(TRUE);
2001-04-09 20:54:03 +01:00
@}
@}
@end example
2002-09-09 18:40:12 +01:00
Note that again the macro @code{ YAP_ PRESERVED_ DATA} is used at the
beginning of the function to access the data preserved from the previous
solution. Then it checks if the last solution was found and in that
case exits with @code{ YAP_ cut_ succeed} in order to cut any further
backtracking. If this is not the last solution then we save the value
for the next solution in the data structure and exit normally with 1
denoting success. Note also that in any of the two cases we use the
2002-10-11 04:39:11 +01:00
function @code{ YAP_ unify} to bind the argument of the call to the value
2002-09-09 18:40:12 +01:00
saved in @code{ n100_ state->next_ solution} .
2001-04-09 20:54:03 +01:00
Note also that the only correct way to signal failure in a backtrackable
2002-09-09 18:40:12 +01:00
predicate is to use the @code{ YAP_ cut_ fail} macro.
2001-04-09 20:54:03 +01:00
Backtrackable predicates should be declared to YAP, in a way
similar to what happened with deterministic ones, but using instead a
call to
@example
2010-01-15 15:09:18 +00:00
void YAP_ UserBackCutCPredicate(char *@var{ name} ,
int *@var{ init} (), int *@var{ cont} (), int *@var{ cut} (),
2002-09-09 18:40:12 +01:00
unsigned long int @var{ arity} , unsigned int @var{ sizeof} );
2001-04-09 20:54:03 +01:00
@end example
@noindent
2010-01-15 15:09:18 +00:00
where @var{ name} is a string with the name of the predicate, @var{ init} ,
@var{ cont} , @var{ cut} are the C functions used to start, continue and
when pruning the execution of the predicate, @var{ arity} is the
predicate arity, and @var{ sizeof} is the size of the data to be
preserved in the stack. In this example, we would have something like
2005-10-18 18:04:43 +01:00
2011-07-21 14:32:49 +01:00
@example
void
init_ n100(void)
@{
YAP_ UserBackCutCPredicate("n100", start_ n100, continue_ n100, cut_ n100, 1, 1);
@}
@end example
The argument before last is the predicate's arity. Notice again the
last argument to the call. function argument gives the extra space we
want to use for @code{ PRESERVED_ DATA} . Space is given in cells, where
a cell is the same size as a pointer. The garbage collector has access
to this space, hence users should use it either to store terms or to
store pointers to objects outside the stacks.
The code for @code{ cut_ n100} could be:
@example
static int cut_ n100(void)
@{
YAP_ PRESERVED_ DATA_ CUT(n100_ data,n100_ data_ type*);
fprintf("n100 cut with counter %ld\n", YAP_IntOfTerm(n100_data->next_solution));
return TRUE;
@}
@end example
Notice that we have to use @code{ YAP_ PRESERVED_ DATA_ CUT} : this is
because the Prolog engine is at a different state during cut.
If no work is required at cut, we can use:
2005-10-18 18:04:43 +01:00
@example
void
init_ n100(void)
2005-10-31 18:12:51 +00:00
@{
2010-01-15 15:09:18 +00:00
YAP_ UserBackCutCPredicate("n100", start_ n100, continue_ n100, NULL, 1, 1);
2005-10-31 18:12:51 +00:00
@}
2005-10-18 18:04:43 +01:00
@end example
2011-07-21 14:32:49 +01:00
in this case no code is executed at cut time.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@node Loading Objects, Save& Rest, Writing C, C-Interface
2001-04-09 20:54:03 +01:00
@section Loading Object Files
The primitive predicate
@example
load_ foreign_ files(@var{ Files} ,@var{ Libs} ,@var{ InitRoutine} )
@end example
@noindent
should be used, from inside YAP, to load object files produced by the C
compiler. The argument @var{ ObjectFiles} should be a list of atoms
specifying the object files to load, @var{ Libs} is a list (possibly
empty) of libraries to be passed to the unix loader (@code{ ld} ) and
InitRoutine is the name of the C routine (to be called after the files
are loaded) to perform the necessary declarations to YAP of the
predicates defined in the files.
YAP will search for @var{ ObjectFiles} in the current directory first. If
it cannot find them it will search for the files using the environment
variable @code{ YAPLIBDIR} , if defined, or in the default library.
2010-06-17 00:32:52 +01:00
YAP also supports the SWI-Prolog interface to loading foreign code:
@table @code
@item open_ shared_ object(+@var{ File} , -@var{ Handle} )
@findex open_ shared_ object/2
@snindex open_ shared_ object/2
@cnindex open_ shared_ object/2
File is the name of a shared object file (called dynamic load
library in MS-Windows). This file is attached to the current process
and @var{ Handle} is unified with a handle to the library. Equivalent to
@code{ open_ shared_ object(File, [], Handle)} . See also
load_ foreign_ library/[1,2].
On errors, an exception @code{ shared_ object} (@var{ Action} ,
@var{ Message} ) is raised. @var{ Message} is the return value from
dlerror().
@item open_ shared_ object(+@var{ File} , -@var{ Handle} , +@var{ Options} )
@findex open_ shared_ object/3
@snindex open_ shared_ object/3
@cnindex open_ shared_ object/3
As @code{ open_ shared_ object/2} , but allows for additional flags to
be passed. @var{ Options} is a list of atoms. @code{ now} implies the
symbols are
resolved immediately rather than lazily (default). @code{ global} implies
symbols of the loaded object are visible while loading other shared
objects (by default they are local). Note that these flags may not
be supported by your operating system. Check the documentation of
@code{ dlopen()} or equivalent on your operating system. Unsupported
flags are silently ignored.
@item close_ shared_ object(+@var{ Handle} )
@findex close_ shared_ object/1
@snindex close_ shared_ object/1
@cnindex close_ shared_ object/1
Detach the shared object identified by @var{ Handle} .
@item call_ shared_ object_ function(+@var{ Handle} , +@var{ Function} )
@findex call_ shared_ object_ function/2
@snindex call_ shared_ object_ function/2
@cnindex call_ shared_ object_ function/2
Call the named function in the loaded shared library. The function
is called without arguments and the return-value is
ignored. In SWI-Prolog, normally this function installs foreign
language predicates using calls to @code{ PL_ register_ foreign()} .
@end table
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@node Save& Rest, YAP4 Notes, Loading Objects, C-Interface
2001-04-09 20:54:03 +01:00
@section Saving and Restoring
@comment The primitive predicates @code{ save} and @code{ restore} will save and restore
@comment object code loaded with @code{ load_ foreign_ files} . However, the values of
@comment any non-static data created by the C files loaded will not be saved nor
@comment restored.
2007-02-18 00:26:36 +00:00
YAP4 currently does not support @code{ save} and @code{ restore} for object code
2001-04-09 20:54:03 +01:00
loaded with @code{ load_ foreign_ files} . We plan to support save and restore
2007-02-18 00:26:36 +00:00
in future releases of YAP.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
@node YAP4 Notes, , Save& Rest, C-Interface
@section Changes to the C-Interface in YAP4
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
YAP4 includes several changes over the previous @code{ load_ foreign_ files}
2001-04-09 20:54:03 +01:00
interface. These changes were required to support the new binary code
formats, such as ELF used in Solaris2 and Linux.
@itemize @bullet
2002-09-09 18:40:12 +01:00
@item All Names of YAP objects now start with @var{ YAP_ } . This is
2007-02-18 00:26:36 +00:00
designed to avoid clashes with other code. Use @code{ YAPInterface.h} to
2002-09-09 18:40:12 +01:00
take advantage of the new interface. @code{ c_ interface.h} is still
available if you cannot port the code to the new interface.
2001-04-09 20:54:03 +01:00
@item Access to elements in the new interface always goes through
@emph{ functions} . This includes access to the argument registers,
2002-09-09 18:40:12 +01:00
@code{ YAP_ ARG1} to @code{ YAP_ ARG16} . This change breaks code such as
@code{ unify(& ARG1,& t)} , which is nowadays:
2001-04-09 20:54:03 +01:00
@example
@{
2002-09-09 18:40:12 +01:00
YAP_ Unify(ARG1, t);
2001-04-09 20:54:03 +01:00
@}
@end example
@item @code{ cut_ fail()} and @code{ cut_ succeed()} are now functions.
@item The use of @code{ Deref} is deprecated. All functions that return
Prolog terms, including the ones that access arguments, already
2009-04-25 16:59:23 +01:00
dereference their arguments.
2001-04-09 20:54:03 +01:00
@item Space allocated with PRESERVE_ DATA is ignored by garbage
collection and stack shifting. As a result, any pointers to a Prolog
stack object, including some terms, may be corrupted after garbage
collection or stack shifting. Prolog terms should instead be stored as
arguments to the backtrackable procedure.
@end itemize
2007-02-18 00:26:36 +00:00
@node YAPLibrary, Compatibility, C-Interface, Top
2001-04-09 20:54:03 +01:00
@chapter Using YAP as a Library
YAP can be used as a library to be called from other
programs. To do so, you must first create the YAP library:
@example
make library
make install_ library
@end example
This will install a file @code{ libyap.a} in @var{ LIBDIR} and the Prolog
headers in @var{ INCLUDEDIR} . The library contains all the functionality
available in YAP, except the foreign function loader and for
2007-02-18 00:26:36 +00:00
@code{ YAP} 's startup routines.
2001-04-09 20:54:03 +01:00
To actually use this library you must follow a five step process:
@enumerate
@item
2002-10-11 04:39:11 +01:00
You must initialize the YAP environment. A single function,
2002-09-09 18:40:12 +01:00
@code{ YAP_ FastInit} asks for a contiguous chunk in your memory space, fills
2001-04-09 20:54:03 +01:00
it in with the data-base, and sets up YAP's stacks and
execution registers. You can use a saved space from a standard system by
calling @code{ save_ program/1} .
@item You then have to prepare a query to give to
YAP. A query is a Prolog term, and you just have to use the same
functions that are available in the C-interface.
2002-09-09 18:40:12 +01:00
@item You can then use @code{ YAP_ RunGoal(query)} to actually evaluate your
2001-04-09 20:54:03 +01:00
query. The argument is the query term @code{ query} , and the result is 1
if the query succeeded, and 0 if it failed.
@item You can use the term destructor functions to check how
arguments were instantiated.
@item If you want extra solutions, you can use
2002-09-09 18:40:12 +01:00
@code{ YAP_ RestartGoal()} to obtain the next solution.
2001-04-09 20:54:03 +01:00
@end enumerate
The next program shows how to use this system. We assume the saved
program contains two facts for the procedure @t{ b} :
@example
@cartouche
#include <stdio.h>
2007-02-18 00:26:36 +00:00
#include "YAP/YAPInterface.h"
2001-04-09 20:54:03 +01:00
int
main(int argc, char *argv[]) @{
2005-03-02 18:35:49 +00:00
if (YAP_ FastInit("saved_ state") == YAP_ BOOT_ ERROR)
2001-04-09 20:54:03 +01:00
exit(1);
2004-01-26 10:44:13 +00:00
if (YAP_ RunGoal(YAP_ MkAtomTerm(YAP_ LookupAtom("do")))) @{
2001-04-09 20:54:03 +01:00
printf("Success\n ");
2002-09-09 18:40:12 +01:00
while (YAP_ RestartGoal())
2001-04-09 20:54:03 +01:00
printf("Success\n ");
@}
printf("NO\n ");
@}
@end cartouche
@end example
2002-10-11 04:39:11 +01:00
The program first initializes YAP, calls the query for the
2001-04-09 20:54:03 +01:00
first time and succeeds, and then backtracks twice. The first time
backtracking succeeds, the second it fails and exits.
To compile this program it should be sufficient to do:
@example
2007-02-18 00:26:36 +00:00
cc -o exem -I../YAP4.3.0 test.c -lYAP -lreadline -lm
2001-04-09 20:54:03 +01:00
@end example
You may need to adjust the libraries and library paths depending on the
2007-02-18 00:26:36 +00:00
Operating System and your installation of YAP.
2001-04-09 20:54:03 +01:00
2007-02-18 00:26:36 +00:00
Note that YAP4.3.0 provides the first version of the interface. The
2001-04-09 20:54:03 +01:00
interface may change and improve in the future.
2007-02-18 00:26:36 +00:00
The following C-functions are available from YAP:
2001-04-09 20:54:03 +01:00
@itemize @bullet
2005-03-02 19:52:12 +00:00
@item YAP_ CompileClause(@code{ YAP_ Term} @var{ Clause} )
2004-05-14 18:56:47 +01:00
@findex YAP_ CompileClause/1
2001-04-09 20:54:03 +01:00
Compile the Prolog term @var{ Clause} and assert it as the last clause
for the corresponding procedure.
2004-05-14 18:56:47 +01:00
@item @code{ int} YAP_ ContinueGoal(@code{ void} )
@findex YAP_ ContinueGoal/0
2001-04-09 20:54:03 +01:00
Continue execution from the point where it stopped.
2005-03-02 19:52:12 +00:00
@item @code{ void} YAP_ Error(@code{ int} @var{ ID} ,@code{ YAP_ Term} @var{ Cause} ,@code{ char *} @var{ error_ description} )
2004-05-14 18:56:47 +01:00
@findex YAP_ Error/1
2001-04-09 20:54:03 +01:00
Generate an YAP System Error with description given by the string
2005-03-02 19:52:12 +00:00
@var{ error_ description} . @var{ ID} is the error ID, if known, or
@code{ 0} . @var{ Cause} is the term that caused the crash.
2001-04-09 20:54:03 +01:00
2004-05-14 18:56:47 +01:00
@item @code{ void} YAP_ Exit(@code{ int} @var{ exit_ code} )
@findex YAP_ Exit/1
2001-04-09 20:54:03 +01:00
Exit YAP immediately. The argument @var{ exit_ code} gives the error code
and is supposed to be 0 after successful execution in Unix and Unix-like
systems.
2005-03-02 19:52:12 +00:00
@item @code{ YAP_ Term} YAP_ GetValue(@code{ Atom} @var{ at} )
2004-05-14 18:56:47 +01:00
@findex YAP_ GetValue/1
2001-04-09 20:54:03 +01:00
Return the term @var{ value} associated with the atom @var{ at} . If no
such term exists the function will return the empty list.
2004-05-14 18:56:47 +01:00
@item YAP_ FastInit(@code{ char *} @var{ SavedState} )
@findex YAP_ FastInit/1
2002-10-11 04:39:11 +01:00
Initialize a copy of YAP from @var{ SavedState} . The copy is
2001-04-09 20:54:03 +01:00
monolithic and currently must be loaded at the same address where it was
2004-05-14 18:56:47 +01:00
saved. @code{ YAP_ FastInit} is a simpler version of @code{ YAP_ Init} .
2001-04-09 20:54:03 +01:00
2005-03-02 18:35:49 +00:00
@item YAP_ Init(@var{ InitInfo} )
@findex YAP_ Init/1
Initialize YAP. The arguments are in a @code{ C}
structure of type @code{ YAP_ init_ args} .
The fields of @var{ InitInfo} are @code{ char *} @var{ SavedState} ,
@code{ int} @var{ HeapSize} , @code{ int} @var{ StackSize} , @code{ int}
@var{ TrailSize} , @code{ int} @var{ NumberofWorkers} , @code{ int}
2001-04-16 17:41:04 +01:00
@var{ SchedulerLoop} , @code{ int} @var{ DelayedReleaseLoad} , @code{ int}
2005-03-02 18:35:49 +00:00
@var{ argc} , @code{ char **} @var{ argv} , @code{ int} @var{ ErrorNo} , and
@code{ char *} @var{ ErrorCause} . The function returns an integer, which
indicates the current status. If the result is @code{ YAP_ BOOT_ ERROR}
booting failed.
2001-04-09 20:54:03 +01:00
If @var{ SavedState} is not NULL, try to open and restore the file
@var{ SavedState} . Initially YAP will search in the current directory. If
the saved state does not exist in the current directory YAP will use
either the default library directory or the directory given by the
environment variable @code{ YAPLIBDIR} . Note that currently
the saved state must be loaded at the same address where it was saved.
If @var{ HeapSize} is different from 0 use @var{ HeapSize} as the minimum
size of the Heap (or code space). If @var{ StackSize} is different from 0
use @var{ HeapSize} as the minimum size for the Stacks. If
@var{ TrailSize} is different from 0 use @var{ TrailSize} as the minimum
size for the Trails.
The @var{ NumberofWorkers} , @var{ NumberofWorkers} , and
@var{ DelayedReleaseLoad} are only of interest to the or-parallel system.
The argument count @var{ argc} and string of arguments @var{ argv}
arguments are to be passed to user programs as the arguments used to
call YAP.
2005-03-02 18:35:49 +00:00
If booting failed you may consult @code{ ErrorNo} and @code{ ErrorCause}
for the cause of the error, or call
@code{ YAP_ Error(ErrorNo,0L,ErrorCause)} to do default processing.
2005-03-02 19:52:12 +00:00
@item @code{ void} YAP_ PutValue(@code{ Atom} @var{ at} , @code{ YAP_ Term} @var{ value} )
2004-05-14 18:56:47 +01:00
@findex YAP_ PutValue/2
2001-04-09 20:54:03 +01:00
Associate the term @var{ value} with the atom @var{ at} . The term
@var{ value} must be a constant. This functionality is used by YAP as a
simple way for controlling and communicating with the Prolog run-time.
2011-07-22 15:49:40 +01:00
@item @code{ YAP_ Term} YAP_ Read(@code{ IOSTREAM *Stream} )
2004-05-14 18:56:47 +01:00
@findex YAP_ Read/1
2011-07-22 15:49:40 +01:00
Parse a @var{ Term} from the stream @var{ Stream} .
2001-04-09 20:54:03 +01:00
2007-05-17 14:00:39 +01:00
@item @code{ YAP_ Term} YAP_ Write(@code{ YAP_ Term} @var{ t} )
2007-05-14 17:44:12 +01:00
@findex YAP_ CopyTerm/1
Copy a Term @var{ t} and all associated constraints. May call the garbage
collector and returns @code{ 0L} on error (such as no space being
available).
2011-07-22 15:49:40 +01:00
@item @code{ void} YAP_ Write(@code{ YAP_ Term} @var{ t} , @code{ IOSTREAM}
@var{ stream} , @code{ int} @var{ flags} )
2004-05-14 18:56:47 +01:00
@findex YAP_ Write/3
2011-07-22 15:49:40 +01:00
Write a Term @var{ t} using the stream @var{ stream} to output
2001-04-09 20:54:03 +01:00
characters. The term is written according to a mask of the following
flags in the @code{ flag} argument: @code{ YAP_ WRITE_ QUOTED} ,
2011-07-22 15:49:40 +01:00
@code{ YAP_ WRITE_ HANDLE_ VARS} , @code{ YAP_ WRITE_ USE_ PORTRAY} , and @code{ YAP_ WRITE_ IGNORE_ OPS} .
2001-04-09 20:54:03 +01:00
2005-03-02 19:52:12 +00:00
@item @code{ void} YAP_ WriteBuffer(@code{ YAP_ Term} @var{ t} , @code{ char *}
2004-05-14 18:56:47 +01:00
@var{ buff} , @code{ unsigned int}
@var{ size} , @code{ int} @var{ flags} )
@findex YAP_ WriteBuffer/4
2005-03-02 19:52:12 +00:00
Write a YAP_ Term @var{ t} to buffer @var{ buff} with size @var{ size} . The
2004-05-14 18:56:47 +01:00
term is written according to a mask of the following flags in the
@code{ flag} argument: @code{ YAP_ WRITE_ QUOTED} ,
@code{ YAP_ WRITE_ HANDLE_ VARS} , and @code{ YAP_ WRITE_ IGNORE_ OPS} .
@item @code{ void} YAP_ InitConsult(@code{ int} @var{ mode} , @code{ char *} @var{ filename} )
@findex YAP_ InitConsult/2
2001-04-09 20:54:03 +01:00
Enter consult mode on file @var{ filename} . This mode maintains a few
2002-10-11 04:39:11 +01:00
data-structures internally, for instance to know whether a predicate
2001-04-09 20:54:03 +01:00
before or not. It is still possible to execute goals in consult mode.
If @var{ mode} is @code{ TRUE} the file will be reconsulted, otherwise
just consulted. In practice, this function is most useful for
2002-10-11 04:39:11 +01:00
bootstrapping Prolog, as otherwise one may call the Prolog predicate
2001-04-09 20:54:03 +01:00
@code{ compile/1} or @code{ consult/1} to do compilation.
Note that it is up to the user to open the file @var{ filename} . The
2004-05-14 18:56:47 +01:00
@code{ YAP_ InitConsult} function only uses the file name for internal
2001-04-09 20:54:03 +01:00
bookkeeping.
2004-05-14 18:56:47 +01:00
@item @code{ void} YAP_ EndConsult(@code{ void} )
@findex YAP_ EndConsult/0
2001-04-09 20:54:03 +01:00
Finish consult mode.
@end itemize
Some observations:
@itemize @bullet
@item The system will core dump if you try to load the saved state in a
different address from where it was made. This may be a problem if
your program uses @code{ mmap} . This problem will be addressed in future
versions of YAP.
@item Currently, the YAP library will pollute the name
space for your program.
@item The initial library includes the complete YAP system. In
the future we plan to split this library into several smaller libraries
2006-02-08 19:13:11 +00:00
(e.g. if you do not want to perform I/O).
2001-04-09 20:54:03 +01:00
@item You can generate your own saved states. Look at the
@code{ boot.yap} and @code{ init.yap} files.
@end itemize
2007-02-18 00:26:36 +00:00
@node Compatibility, Operators, YAPLibrary, Top
2001-04-09 20:54:03 +01:00
@chapter Compatibility with Other Prolog systems
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.
2007-02-18 00:26:36 +00:00
Developments since @code{ YAP4.1.6} we have striven at making
2001-04-09 20:54:03 +01:00
YAP compatible with the ISO-Prolog standard.
@menu
* C-Prolog:: Compatibility with the C-Prolog interpreter
* SICStus Prolog:: Compatibility with the SICStus Prolog system
* ISO Prolog:: Compatibility with the ISO Prolog standard
@end menu
@node C-Prolog, SICStus Prolog, , Compatibility
@section Compatibility with the C-Prolog interpreter
@menu
C-Prolog Compatibility
2005-10-31 18:12:51 +00:00
* Major Differences with C-Prolog:: Major Differences between YAP and C-Prolog
2007-02-18 00:26:36 +00:00
* Fully C-Prolog Compatible:: YAP predicates fully compatible with
2001-04-09 20:54:03 +01:00
C-Prolog
2007-02-18 00:26:36 +00:00
* Not Strictly C-Prolog Compatible:: YAP predicates not strictly as C-Prolog
* Not in C-Prolog:: YAP predicates not available in C-Prolog
2001-04-09 20:54:03 +01:00
* Not in YAP:: C-Prolog predicates not available in YAP
@end menu
2005-10-31 18:12:51 +00:00
@node Major Differences with C-Prolog, Fully C-Prolog Compatible, , C-Prolog
2001-04-09 20:54:03 +01:00
@subsection 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
@code{ assert} , @code{ clause} and @code{ retract} are used. First
predicates which will change during execution should be declared as
@code{ dynamic} by using commands like:
@example
:- dynamic f/n.
@end example
@noindent where @code{ 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:
@example
:- dynamic f/2, ..., g/1.
@end example
Primitive predicates such as @code{ 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
@code{ 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:
@example
@code{ :- yap_ flag(character_ escapes,off).}
@end example
@noindent
or by using:
@example
@code{ :- yap_ flag(language,cprolog).}
@end example
2005-10-31 18:12:51 +00:00
@node Fully C-Prolog Compatible, Not Strictly C-Prolog Compatible, Major Differences with C-Prolog, C-Prolog
2007-02-18 00:26:36 +00:00
@subsection YAP predicates fully compatible with C-Prolog
2001-04-09 20:54:03 +01:00
These are the Prolog built-ins that are fully compatible in both
C-Prolog and YAP:
@printindex cy
@node Not Strictly C-Prolog Compatible, Not in C-Prolog, Fully C-Prolog Compatible, C-Prolog
2007-02-18 00:26:36 +00:00
@subsection YAP predicates not strictly compatible with C-Prolog
2001-04-09 20:54:03 +01:00
These are YAP built-ins that are also available in C-Prolog, but
that are not fully compatible:
@printindex ca
@node Not in C-Prolog, Not in YAP, Not Strictly C-Prolog Compatible, C-Prolog
2007-02-18 00:26:36 +00:00
@subsection YAP predicates not available in C-Prolog
2001-04-09 20:54:03 +01:00
These are YAP built-ins not available in C-Prolog.
@printindex cn
@node Not in YAP, , Not in C-Prolog, C-Prolog
2007-02-18 00:26:36 +00:00
@subsection YAP predicates not available in C-Prolog
2001-04-09 20:54:03 +01:00
These are C-Prolog built-ins not available in YAP:
@table @code
@item 'LC'
The following Prolog text uses lower case letters.
@item 'NOLC'
The following Prolog text uses upper case letters only.
@end table
@node SICStus Prolog, ISO Prolog, C-Prolog, Compatibility
@section 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
@example
:- yap_ flag(language, sicstus).
@end example
@noindent
for maximum compatibility with SICStus Prolog.
@menu
SICStus Compatibility
2005-10-31 18:12:51 +00:00
* Major Differences with SICStus:: Major Differences between YAP and SICStus Prolog
2007-02-18 00:26:36 +00:00
* Fully SICStus Compatible:: YAP predicates fully compatible with
2001-04-09 20:54:03 +01:00
SICStus Prolog
2007-02-18 00:26:36 +00:00
* Not Strictly SICStus Compatible:: YAP predicates not strictly as
2001-04-09 20:54:03 +01:00
SICStus Prolog
2007-02-18 00:26:36 +00:00
* Not in SICStus Prolog:: YAP predicates not available in SICStus Prolog
2001-04-09 20:54:03 +01:00
@end menu
2005-10-31 18:12:51 +00:00
@node Major Differences with SICStus, Fully SICStus Compatible, , SICStus Prolog
2001-04-09 20:54:03 +01:00
@subsection 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:
@itemize @bullet
@item Differently from SICStus Prolog, YAP does not have a
notion of interpreted code. All code in YAP is compiled.
@item YAP does not support an intermediate byte-code
representation, so the @code{ fcompile/1} and @code{ load/1} built-ins are
not available in YAP.
@item YAP implements escape sequences as in the ISO standard. SICStus
Prolog implements Unix-like escape sequences.
2001-04-16 17:41:04 +01:00
@item YAP implements @code{ initialization/1} as per the ISO
2001-04-09 20:54:03 +01:00
standard. Use @code{ prolog_ initialization/1} for the SICStus Prolog
compatible built-in.
@item Prolog flags are different in SICStus Prolog and in YAP.
@item The SICStus Prolog @code{ on_ exception/3} and
2006-02-08 19:13:11 +00:00
@code{ raise_ exception} built-ins correspond to the ISO built-ins
2001-04-09 20:54:03 +01:00
@code{ catch/3} and @code{ throw/1} .
@item The following SICStus Prolog v3 built-ins are not (currently)
implemented in YAP (note that this is only a partial list):
2009-05-18 15:36:00 +01:00
@code{ file_ search_ path/2} ,
2001-04-16 17:41:04 +01:00
@code{ stream_ interrupt/3} , @code{ reinitialize/0} , @code{ help/0} ,
2001-05-28 20:54:53 +01:00
@code{ help/1} , @code{ trimcore/0} , @code{ load_ files/1} ,
@code{ load_ files/2} , and @code{ require/1} .
2001-04-09 20:54:03 +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.
@item YAP allows asserting and abolishing static code during
execution through the @code{ assert_ static/1} and @code{ abolish/1}
2006-02-08 19:13:11 +00:00
built-ins. This is not allowed in Quintus Prolog or SICStus Prolog.
2001-04-09 20:54:03 +01:00
@item The socket predicates, although designed to be compatible with
SICStus Prolog, are built-ins, not library predicates, in YAP.
@item This list is incomplete.
@end itemize
The following differences only exist if the @code{ language} flag is set
to @code{ yap} (the default):
@itemize @bullet
@item The @code{ consult/1} predicate in YAP follows C-Prolog
semantics. That is, it adds clauses to the data base, even for
preexisting procedures. This is different from @code{ consult/1} in
SICStus Prolog.
@cindex update semantics
@item By default, the data-base in YAP follows "immediate update
semantics", instead of "logical update semantics", as Quintus Prolog or
SICStus Prolog do. The difference is depicted in the next example:
@example
:- dynamic a/1.
?- assert(a(1)).
?- retract(a(X)), X1 is X +1, assertz(a(X)).
@end example
With immediate semantics, new clauses or entries to the data base are
visible in backtracking. In this example, the first call to
@code{ retract/1} will succeed. The call to @strong{ assertz/1} will then
succeed. On backtracking, the system will retry
@code{ retract/1} . Because the newly asserted goal is visible to
@code{ retract/1} , it can be retracted from the data base, and
@code{ 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 @emph{ will not affect previous activations of the
goal} . In the example, the call to @code{ assertz/1} will not see the
update performed by the @code{ assertz/1} , and the query will have a
single solution.
Calling @code{ yap_ flag(update_ semantics,logical)} will switch
YAP to use logical update semantics.
@item @code{ dynamic/1} is a built-in, not a directive, in YAP.
@item By default, YAP fails on undefined predicates. To follow default
SICStus Prolog use:
@example
:- yap_ flag(unknown,error).
@end example
@item By default, directives in YAP can be called from the top level.
@end itemize
@node Fully SICStus Compatible, Not Strictly SICStus Compatible, Major Differences with SICStus, SICStus Prolog
2007-02-18 00:26:36 +00:00
@subsection YAP predicates fully compatible with SICStus Prolog
2001-04-09 20:54:03 +01:00
These are the Prolog built-ins that are fully compatible in both SICStus
Prolog and YAP:
@printindex sy
2007-02-18 00:26:36 +00:00
@node Not Strictly SICStus Compatible, Not in SICStus Prolog, Fully SICStus Compatible, SICStus Prolog
@subsection YAP predicates not strictly compatible with SICStus Prolog
2001-04-09 20:54:03 +01:00
These are YAP built-ins that are also available in SICStus Prolog, but
that are not fully compatible:
@printindex sa
2007-02-18 00:26:36 +00:00
@node Not in SICStus Prolog, , Not Strictly SICStus Compatible, SICStus Prolog
@subsection YAP predicates not available in SICStus Prolog
2001-04-09 20:54:03 +01:00
These are YAP built-ins not available in SICStus Prolog.
@printindex sn
@node ISO Prolog, , SICStus Prolog, Compatibility
@section 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:
@itemize @bullet
@item YAP now supports all of the built-ins required by the
ISO-standard, and,
@item Error-handling is as required by the standard.
@end itemize
YAP by default is not fully ISO standard compliant. You can set the
@code{ language} flag to @code{ iso} to obtain very good
compatibility. Setting this flag changes the following:
@itemize @bullet
@item By default, YAP uses "immediate update semantics" for its
database, and not "logical update semantics", as per the standard,
(@pxref{ SICStus Prolog} ). This affects @code{ assert/1} ,
@code{ retract/1} , and friends.
Calling @code{ set_ prolog_ flag(update_ semantics,logical)} will switch
YAP to use logical update semantics.
@item By default, YAP implements the @code{ atom_ chars/2}
(@pxref{ Testing Terms} ), and @code{ number_ chars/2} , (@pxref{ Testing
Terms} ), built-ins as per the original Quintus Prolog definition, and
not as per the ISO definition.
Calling @code{ set_ prolog_ flag(to_ chars_ mode,iso)} will switch
YAP to use the ISO definition for
@code{ atom_ chars/2} and @code{ number_ chars/2} .
@item By default, YAP fails on undefined predicates. To follow the ISO
Prolog standard use:
@example
:- set_ prolog_ flag(unknown,error).
@end example
@item By default, YAP allows executable goals in directives. In ISO mode
most directives can only be called from top level (the exceptions are
@code{ set_ prolog_ flag/2} and @code{ op/3} ).
@item Error checking for meta-calls under ISO Prolog mode is stricter
than by default.
@item The @code{ strict_ iso} flag automatically enables the ISO Prolog
standard. This feature should disable all features not present in the
standard.
@end itemize
The following incompatibilities between YAP and the ISO standard are
known to still exist:
@itemize @bullet
@item Currently, YAP does not handle overflow errors in integer
operations, and handles floating-point errors only in some
architectures. Otherwise, YAP follows IEEE arithmetic.
@end itemize
Please inform the authors on other incompatibilities that may still
exist.
@node Operators, Predicate Index, Compatibility, Top
2007-02-18 00:26:36 +00:00
@appendix Summary of YAP Predefined Operators
2001-04-09 20:54:03 +01:00
The Prolog syntax caters for operators of three main kinds:
@itemize @bullet
@item
prefix;
@item
infix;
@item
postfix.
@end itemize
Each operator has precedence in the range 1 to 1200, and this
precedence is used to disambiguate expressions where the structure of the
term denoted is not made explicit using brackets. The operator of higher
precedence is the main functor.
If there are two operators with the highest precedence, the ambiguity
is solved analyzing the types of the operators. The possible infix types are:
2008-04-04 23:05:34 +01:00
@var{ xfx} , @var{ xfy} , and @var{ yfx} .
2001-04-09 20:54:03 +01:00
2008-04-04 23:05:34 +01:00
With an operator of type @var{ xfx} both sub-expressions must have lower
2001-04-09 20:54:03 +01:00
precedence than the operator itself, unless they are bracketed (which
2008-04-04 23:05:34 +01:00
assigns to them zero precedence). With an operator type @var{ xfy} only the
2001-04-09 20:54:03 +01:00
left-hand sub-expression must have lower precedence. The opposite happens
2008-04-04 23:05:34 +01:00
for @var{ yfx} type.
2001-04-09 20:54:03 +01:00
2008-04-04 23:05:34 +01:00
A prefix operator can be of type @var{ fx} or @var{ fy} .
A postfix operator can be of type @var{ xf} or @var{ yf} .
2001-04-09 20:54:03 +01:00
The meaning of the notation is analogous to the above.
@example
a + b * c
@end example
@noindent
means
@example
a + (b * c)
@end example
@noindent
as + and * have the following types and precedences:
@example
:-op(500,yfx,'+').
:-op(400,yfx,'*').
@end example
Now defining
@example
:-op(700,xfy,'++').
:-op(700,xfx,'=:=').
a ++ b =:= c
@end example
@noindent means
@example
a ++ (b =:= c)
@end example
The following is the list of the declarations of the predefined operators:
@example
:-op(1200,fx,['?-', ':-']).
:-op(1200,xfx,[':-','-->']).
2001-04-16 17:41:04 +01:00
:-op(1150,fx,[block,dynamic,mode,public,multifile,meta_ predicate,
sequential,table,initialization]).
2001-04-09 20:54:03 +01:00
:-op(1100,xfy,[';','|']).
:-op(1050,xfy,->).
:-op(1000,xfy,',').
:-op(999,xfy,'.').
:-op(900,fy,['\+ ', not]).
:-op(900,fx,[nospy, spy]).
:-op(700,xfx,[@@>=,@@=<,@@<,@@>,<,=,>,=:=,=\= ,\= =,>=,=<,==,\= ,=..,is]).
:-op(500,yfx,['\/ ','/\' ,'+','-']).
:-op(500,fx,['+','-']).
:-op(400,yfx,['<<','>>','//','*','/']).
:-op(300,xfx,mod).
:-op(200,xfy,['^ ','**']).
:-op(50,xfx,same).
@end example
@node Predicate Index, Concept Index, Operators, Top
@unnumbered Predicate Index
@printindex fn
@node Concept Index, , Predicate Index, Top
@unnumbered Concept Index
@printindex cp
@contents
@bye