SWI-Prolog Did You Know
Did you know?
SWI-Prolog supports the full Unicode character set 😀
Search Documentation:
Predicate vertices/2
HOME
DOWNLOAD
SWI-Prolog
Sources/building
Docker images
Add-ons
Browse GIT
DOCUMENTATION
Manual
Packages
FAQ
Command line
PlDoc
Bluffers
â–¶
Prolog syntax
PceEmacs
HTML generation
License
Publications
Rev 7 Extensions
TUTORIALS
Beginner
â–¶
Getting started
Learn Prolog Now!
Simply Logical
Debugger
Development tools
Advanced
â–¶
Modules
Grammars (DCGs)
clp(fd)
Printing messages
PlDoc
Web applications
â–¶
Web applications
Let's Encrypt!
Pengines
Semantic web
â–¶
ClioPatria
RDF namespaces
Graphics
â–¶
XPCE
GUI options
Machine learning
â–¶
Probabilistic Logic Programming
External collections
â–¶
Meta level tutorials
For packagers
â–¶
Linux packages
COMMUNITY
Forum & mailing list
Blog
News
Report a bug
Submit a patch
Submit an add-on
Roadmap (on GitHub)
External links
Contributing
Code of Conduct
Contributors
SWI-Prolog items
COMMERCIAL
WIKI
Login
View changes
Sandbox
Wiki help
All tags
swipl
library
debug.pl
settings.pl -- Setting management
arithmetic.pl -- Extensible arithmetic
predicate_options.pl -- Access and analyse predicate options
error.pl -- Error generating support
option.pl
broadcast.pl
lists.pl -- List Manipulation
apply.pl -- Apply predicates on a list
operators.pl -- Manage operators
pairs.pl -- Operations on key-value lists
prolog_source.pl -- Examine Prolog source-files
thread_pool.pl -- Resource bounded thread management
shlib.pl -- Utility library for loading foreign objects (DLLs, shared objects)
gensym.pl -- Generate unique symbols
main.pl -- Provide entry point for scripts
readutil.pl -- Read utilities
aggregate.pl -- Aggregation operators on backtrackable predicates
quasi_quotations.pl -- Define Quasi Quotation syntax
url.pl -- Analysing and constructing URL
www_browser.pl -- Open a URL in the users browser
prolog_colour.pl -- Prolog syntax colouring support.
record.pl -- Access compound arguments by name
prolog_xref.pl -- Prolog cross-referencer data collection
occurs.pl -- Finding and counting sub-terms
ordsets.pl -- Ordered set manipulation
assoc.pl -- Binary associations
ugraphs.pl -- Graph manipulation library
vertices/2
vertices_edges_to_ugraph/3
add_vertices/3
del_vertices/3
add_edges/3
ugraph_union/3
del_edges/3
edges/2
transitive_closure/2
transpose_ugraph/2
compose/3
ugraph_layers/2
top_sort/2
neighbors/3
neighbours/3
connect_ugraph/3
complement/2
reachable/3
iostream.pl -- Utilities to deal with streams
atom.pl -- Operations on atoms
prolog_pack.pl -- A package manager for Prolog
solution_sequences.pl -- Modify solution sequences
prolog_stack.pl -- Examine the Prolog stack
pure_input.pl -- Pure Input from files and streams
utf8.pl -- UTF-8 encoding/decoding on lists of character codes.
base64.pl -- Base64 encoding and decoding
persistency.pl -- Provide persistent dynamic predicates
codesio.pl -- I/O on Lists of Character Codes
git.pl -- Run GIT commands
prolog_versions.pl -- Demand specific (Prolog) versions
random.pl -- Random numbers
prolog_code.pl -- Utilities for reasoning about code
make.pl -- Reload modified source files
ansi_term.pl -- Print decorated text to ANSI consoles
apply_macros.pl -- Goal expansion rules to avoid meta-calling
yall.pl -- Lambda expressions
backcomp.pl -- Backward compatibility
base32.pl -- Base32 encoding and decoding
charsio.pl -- I/O on Lists of Character Codes
check.pl -- Consistency checking
check_installation.pl -- Check installation issues and features
dialect.pl -- Support multiple Prolog dialects
pio.pl -- Pure I/O
coinduction.pl -- Co-Logic Programming
console_input.pl
csv.pl -- Process CSV (Comma-Separated Values) data
ctypes.pl -- Character code classification
date.pl -- Process dates and times
rbtrees.pl -- Red black trees
prolog_wrap.pl -- Wrapping predicates
shell.pl -- Elementary shell commands
terms.pl -- Term manipulation
quintus.pl -- Quintus compatibility
tables.pl -- XSB interface to tables
nb_set.pl -- Non-backtrackable sets
thread.pl -- High level thread primitives
dicts.pl -- Dict utilities
dif.pl -- The dif/2 constraint
edinburgh.pl -- Some traditional Edinburgh predicates
edit.pl -- Editor interface
exceptions.pl -- Exception classification
explain.pl -- Describe Prolog Terms
modules.pl -- Module utility predicates
sort.pl
sandbox.pl -- Sandboxed Prolog code
prolog_format.pl -- Analyse format specifications
fastrw.pl -- Fast reading and writing of terms
files.pl
hashtable.pl -- Hash tables
heaps.pl -- heaps/priority queues
help.pl -- Text based manual
hotfix.pl -- Load hotfixes into executables
increval.pl -- Incremental dynamic predicate modification
intercept.pl -- Intercept and signal interface
lazy_lists.pl -- Lazy list handling
listing.pl -- List programs and pretty print clauses
macros.pl -- Macro expansion
nb_rbtrees.pl -- Non-backtrackable operations on red black trees
obfuscate.pl -- Code obfuscating
optparse.pl -- command line parsing
oset.pl -- Ordered set manipulation
portray_text.pl -- Portray text
pprint.pl -- Pretty Print Prolog terms
prolog_autoload.pl -- Autoload all dependencies
prolog_breakpoints.pl -- Manage Prolog break-points
prolog_clause.pl -- Get detailed source-information about a clause
prolog_codewalk.pl -- Prolog code walker
prolog_config.pl -- Provide configuration information
prolog_coverage.pl -- Coverage analysis tool
prolog_debug.pl -- User level debugging tools
prolog_deps.pl -- Compute file dependencies
prolog_evaluable.pl -- Inspect properties of evaluable functions
prolog_history.pl -- Per-directory persistent commandline history
prolog_jiti.pl -- Just In Time Indexing (JITI) utilities
prolog_locale.pl -- Tweak the locale for Prolog development
prolog_metainference.pl -- Infer meta-predicate properties
prolog_profile.pl -- Execution profiler
prolog_qlfmake.pl -- Compile the library to QLF format
prolog_trace.pl -- Print access to predicates
qpforeign.pl -- Quintus compatible foreign loader
qsave.pl -- Save current program as a state or executable
zip.pl -- Access resource ZIP archives
readln.pl -- Read line as list of tokens
rwlocks.pl -- Read/write locks
statistics.pl -- Get information about resource usage
streams.pl -- Manage Prolog streams
strings.pl -- String utilities
system.pl -- System utilities
threadutil.pl -- Interactive thread utilities
tty.pl -- Terminal operations
varnumbers.pl -- Utilities for numbered terms
vm.pl -- SWI-Prolog Virtual Machine utilities
wfs.pl -- Well Founded Semantics interface
when.pl -- Conditional coroutining
writef.pl -- Old-style formatted write
win_menu.pl -- Console window menu
vertices
(+Graph, -Vertices)
Unify
Vertices
with all vertices appearing in
Graph
. Example:
?- vertices([1-[3,5],2-[4],3-[],4-[5],5-[]], L). L = [1, 2, 3, 4, 5]