There is no consensus for a core library, portable across Prolog systems, let alone a standard for such a library. Since release 3, SICS has acquired Quintus Prolog, which has a rather rich library. For release 4, we have decided to make this asset be available to the SICStus community by providing a library that is a merger of the previous SICStus and Quintus libraries, which already overlap significantly.
The User’s Manual documents the library of release 4. For the purposes of aiding code transition to release 4, the following is a list of the release 3 library modules, and their fate in release 4. See also Guide to Porting Code from Release 3.
attscomclientfdbggaugeheapslinda/clientlinda/serverpillowprologbeanstcltktimeouttreeswgraphsxmlAs in release 3.
arraysThe native release 4 counterpart is called library(logarr).
Also available is a deprecated compatibility module library(arrays3).
assocThe native release 4 counterpart is called library(avl),
reflecting the abstract data type, AVL trees, and with a modified,
richer API. Also available is a deprecated compatibility module
library(assoc3).
bdbAs in release 3, but uses the default Berkeley DB hash function, so all of the standard Berkeley DB utilites should now work.
charsioCalled library(codesio) in release 4.
Likewise, the syllable ‘chars’ has been renamed to ‘codes’
in predicate names.
clpbclpqclprAs in release 3, unsupported.
clpfdAs in release 3, plus the following additions and changes:
automaton/8is a new constraint capturing any constraint whose checker of ground instances can be expressed as a finite automaton.
minimum/2maximum/2are new constraints, constraining a value to be the minimum (maximum) of a list of values.
nvalue/2is a new constraint, constraining the number of distinct values taken by a list of values.
cumulative/[1,2]provides a unified interface, subsuming serialized/[2,3] and cumulative/[4,5].
table/[2,3]defines an n-ary constraint by extension, subsuming relation/3.
all_different/[1,2]all_distinct/[1,2]Arguments can have unbounded domains.
scalar_product/[4,5]can optionally be told to maintain arc-consistency.
This functionality subsumes knapsack/3.
global_cardinality/[2,3]can optionally be told to use a simple algorithm.
This functionality subsumes count/4.
fd_copy_term/3is gone. Subsumed by built-in copy_term/3.
jasperThe Jasper module is available in the current release. An alternative for Java users is PrologBeans. The latter is the recommended method for interfacing Java with SICStus. Jasper should only be used when PrologBeans is insufficient.
listsThe native release 4 counterpart has a modified, richer API.
Also available is a deprecated compatibility module library(lists3).
ordsetsAs in release 3, plus several new predicates.
queuesThe native release 4 counterpart has a modified, richer API.
Also available is a deprecated compatibility module library(queues3).
randomThe native release 4 counterpart has a modified, richer API.
Also available is a deprecated compatibility module library(random3).
Please note: The random number generator state is slightly
different from the one in release 3.
socketsThe new predicate socket_client_open/3 subsumes socket/2
and socket_connect/3.
socket_server_open/[2,3] subsumes socket/2,
socket_bind/2 and socket_listen/2.
socket_select/7 can wait for any kind of stream, not just socket
streams. socket_select/7 waits until one unit (character for
text streams, byte for binary streams) can be transferred.
socket_select/7 can wait for streams ready to write.
socket_select/7 does not create streams, you need to explicitly
use socket_server_accept/4.
Socket streams are binary by default.
Blocking socket operations can be interrupted on both UNIX and Windows.
library(sockets) should work with IPv6 (in addition to IPv4 and AF_UNIX).
systemOperations on files and directories have been moved to its own module,
library(file_systems). Process primitives have been redesigned
and moved to a new module, library(process). The predicates for
creating temporary files, mktemp/2 and tmpnam/1, have been
removed. They used C library functionality that is broken by design and
insecure. Instead, to create and open a temporary file use something
like open(temp('foo'), write, S,
[if_exists(generate_unique_name)]), possibly together with
stream_property(S, file_name(Path)) if you need to know the path
to the generated file name.
The (little) remaining functionality is largely as in release 3.
Also available is a deprecated compatibility module library(system3).
termsAs in release 3, plus several new predicates.
term_hash/2 is not guaranteed to compute the same hash values as in release 3.
ugraphsAs in release 3, plus a couple of deletions.
objectsReplaced by the Quintus Prolog flavor of library(objects).
chrA reimplementation of library(chr),
based on the Leuven implementation.
flinkagespaceoutNot present in release 4.
vbspNot available in the current release. Visual Basic .NET and other .NET languages can use PrologBeans .NET.
The following is a list of library modules that are new in release 4.
aggregateprovides an aggregation operator for data-base-style queries.
assocuses unbalanced binary trees to implement “association lists”, i.e. extendible finite mappings from terms to terms.
bagsdefines operations on bags, or multisets
betweenprovides some means of generating integers.
file_systemsaccesses files and directories.
objectsprovides a package for object-oriented programming,
and can be regarded as a high-level
alternative to library(structs).
plunitUnit test harness.
processCreating, killing, releasing, and waiting on processes.
remprovides Rem’s algorithm for maintaining equivalence classes.
samsortprovides generic sorting.
setsdefines operations on sets represented as lists with the elements unordered.
structsprovides access to C data structures, and can be regarded as a low-level
alternative to library(objects).
typesProvides type checking.
varnumbersAn inverse of numbervars/3.