This file is indexed.

/usr/share/doc/swi-prolog-doc/Manual/gvar.html is in swi-prolog-doc 5.6.59-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<HTML>
<HEAD>
<TITLE>SWI-Prolog 5.6.59 Reference Manual: Section 6.3</TITLE><LINK REL=home HREF="index.html">
<LINK REL=contents HREF="Contents.html">
<LINK REL=index HREF="DocIndex.html">
<LINK REL=previous HREF="coroutining.html">
<LINK REL=next HREF="chr.html">
<STYLE type="text/css">
/* Style sheet for SWI-Prolog latex2html
*/

dd.defbody
{ margin-bottom: 1em;
}

dt.pubdef
{ background-color: #c5e1ff;
}

pre.code
{ margin-left: 1.5em;
margin-right: 1.5em;
border: 1px dotted;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
background-color: #f8f8f8;
}

div.navigate
{ text-align: center;
background-color: #f0f0f0;
border: 1px dotted;
padding: 5px;
}

div.title
{ text-align: center;
padding-bottom: 1em;
font-size: 200%;
font-weight: bold;
}

div.author
{ text-align: center;
font-style: italic;
}

div.abstract
{ margin-top: 2em;
background-color: #f0f0f0;
border: 1px dotted;
padding: 5px;
margin-left: 10%; margin-right:10%;
}

div.abstract-title
{ text-align: center;
padding: 5px;
font-size: 120%;
font-weight: bold;
}

div.toc-h1
{ font-size: 200%;
font-weight: bold;
}

div.toc-h2
{ font-size: 120%;
font-weight: bold;
margin-left: 2em;
}

div.toc-h3
{ font-size: 100%;
font-weight: bold;
margin-left: 4em;
}

div.toc-h4
{ font-size: 100%;
margin-left: 6em;
}

span.sec-nr
{ 
}

span.sec-title
{ 
}

span.pred-ext
{ font-weight: bold;
}

span.pred-tag
{ float: right;
font-size: 80%;
font-style: italic;
color: #202020;
}

/* Footnotes */

sup.fn { color: blue; text-decoration: underline; }
span.fn-text { display: none; }
sup.fn span {display: none;}
sup:hover span 
{ display: block !important;
position: absolute; top: auto; left: auto; width: 80%;
color: #000; background: white;
border: 2px solid;
padding: 5px; margin: 10px; z-index: 100;
font-size: smaller;
}
</STYLE>
</HEAD>
<BODY BGCOLOR="white">
<DIV class="navigate"><A class="nav" href="index.html"><IMG SRC="home.gif" BORDER=0 ALT="Home"></A>
<A class="nav" href="Contents.html"><IMG SRC="index.gif" BORDER=0 ALT="Contents"></A>
<A class="nav" href="DocIndex.html"><IMG SRC="yellow_pages.gif" BORDER=0 ALT="Index"></A>
<A class="nav" href="coroutining.html"><IMG SRC="prev.gif" BORDER=0 ALT="Previous"></A>
<A class="nav" href="chr.html"><IMG SRC="next.gif" BORDER=0 ALT="Next"></A>
</DIV>

<H2><A NAME="sec:6.3"><SPAN class="sec-nr">6.3</SPAN> <SPAN class="sec-title">Global 
variables</SPAN></A></H2>

<A NAME="sec:gvar"></A>

<P>Global variables are associations between names (atoms) and terms. 
They differ in various ways from storing information using <A NAME="idx:assert1:1226"></A><A class="pred" href="db.html#assert/1">assert/1</A> 
or <A NAME="idx:recorda3:1227"></A><A class="pred" href="db.html#recorda/3">recorda/3</A>.

<P>
<UL>
<LI>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.

<P>
<LI>They support both global assignment using <A NAME="idx:nbsetval2:1228"></A><A class="pred" href="gvar.html#nb_setval/2">nb_setval/2</A> 
and backtrackable assignment using <A NAME="idx:bsetval2:1229"></A><A class="pred" href="gvar.html#b_setval/2">b_setval/2</A>.

<P>
<LI>Only one value (which can be an arbitrary complex Prolog term) can 
be associated to a variable at a time.

<P>
<LI>Their value cannot be shared among threads. Each thread has its own 
namespace and values for global variables.

<P>
<LI>Currently global variables are scoped globally. We may consider 
module scoping in future versions.
</UL>

<P>Both <A NAME="idx:bsetval2:1230"></A><A class="pred" href="gvar.html#b_setval/2">b_setval/2</A> 
and <A NAME="idx:nbsetval2:1231"></A><A class="pred" href="gvar.html#nb_setval/2">nb_setval/2</A> 
implicitly create a variable if the referenced name does not already 
refer to a variable.

<P>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 <A NAME="idx:initialization1:1232"></A><A class="pred" href="consulting.html#initialization/1">initialization/1</A> 
to recreate them after loading the saved state. Each thread has its own 
set of global variables, starting with an empty set. Using
<A NAME="idx:threadinitialization1:1233"></A><A class="pred" href="threadcreate.html#thread_initialization/1">thread_initialization/1</A> 
to define a global variable it will be defined, restored after reloading 
a saved state and created in all threads that are created <EM>after</EM> 
the registration. Finally, global variables can be initialised using the 
exception hook called
<A NAME="idx:exception3:1234"></A><A class="pred" href="exception3.html#exception/3">exception/3</A>. 
The latter technique is by CHR (see <A class="sec" href="chr.html">chapter 
7</A>.

<DL>
<DT class="pubdef"><A NAME="b_setval/2"><STRONG>b_setval</STRONG>(<VAR>+Name, 
+Value</VAR>)</A></DT>
<DD class="defbody">
Associate the term <VAR>Value</VAR> with the atom <VAR>Name</VAR> or 
replaces the currently associated value with <VAR>Value</VAR>. If <VAR>Name</VAR> 
does not refer to an existing global variable a variable with initial 
value
<CODE>[]</CODE> is created (the empty list). On backtracking the 
assignment is reversed.</DD>
<DT class="pubdef"><A NAME="b_getval/2"><STRONG>b_getval</STRONG>(<VAR>+Name, 
-Value</VAR>)</A></DT>
<DD class="defbody">
Get the value associated with the global variable <VAR>Name</VAR> and 
unify it with <VAR>Value</VAR>. Note that this unification may further 
instantiate the value of the global variable. If this is undesirable the 
normal precautions (double negation or <A NAME="idx:copyterm2:1235"></A><A class="pred" href="manipterm.html#copy_term/2">copy_term/2</A>) 
must be taken. The
<A NAME="idx:bgetval2:1236"></A><A class="pred" href="gvar.html#b_getval/2">b_getval/2</A> 
predicate generates errors if <VAR>Name</VAR> is not an atom or the 
requested variable does not exist.
</DD>
</DL>

<DL>
<DT class="pubdef"><A NAME="nb_setval/2"><STRONG>nb_setval</STRONG>(<VAR>+Name, 
+Value</VAR>)</A></DT>
<DD class="defbody">
Associates a copy of <VAR>Value</VAR> created with <A NAME="idx:duplicateterm2:1237"></A><A class="pred" href="manipterm.html#duplicate_term/2">duplicate_term/2</A> 
with the atom <VAR>Name</VAR>. Note that this can be used to set an 
initial value other than <CODE>[]</CODE> prior to backtrackable 
assignment.</DD>
<DT class="pubdef"><A NAME="nb_getval/2"><STRONG>nb_getval</STRONG>(<VAR>+Name, 
-Value</VAR>)</A></DT>
<DD class="defbody">
The <A NAME="idx:nbgetval2:1238"></A><A class="pred" href="gvar.html#nb_getval/2">nb_getval/2</A> 
predicate is a synonym for <A NAME="idx:bgetval2:1239"></A><A class="pred" href="gvar.html#b_getval/2">b_getval/2</A>, 
introduced for compatibility and symmetry. As most scenarios will use a 
particular global variable either using non-backtracable or 
backtrackable assignment, using <A NAME="idx:nbgetval2:1240"></A><A class="pred" href="gvar.html#nb_getval/2">nb_getval/2</A> 
can be used to document that the variable is used non-backtracable.</DD>
<DT class="pubdef"><A NAME="nb_linkval/2"><STRONG>nb_linkval</STRONG>(<VAR>+Name, 
+Value</VAR>)</A></DT>
<DD class="defbody">
Associates the term <VAR>Value</VAR> with the atom <VAR>Name</VAR> 
without copying it. This is a fast special-purpose variation of <A NAME="idx:nbsetval2:1241"></A><A class="pred" href="gvar.html#nb_setval/2">nb_setval/2</A> 
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 <EM>trailed</EM> 
and left alone otherwise, which implies that the history that created 
the term affects the behaviour on backtracking. Please consider the 
following example:

<PRE class="code">
demo_nb_linkval :-
        T = nice(N),
        (   N = world,
            nb_linkval(myvar, T),
            fail
        ;   nb_getval(myvar, V),
            writeln(V)
        ).
</PRE>

</DD>
<DT class="pubdef"><A NAME="nb_current/2"><STRONG>nb_current</STRONG>(<VAR>?Name, 
?Value</VAR>)</A></DT>
<DD class="defbody">
Enumerate all defined variables with their value. The order of 
enumeration is undefined.</DD>
<DT class="pubdef"><A NAME="nb_delete/1"><STRONG>nb_delete</STRONG>(<VAR>+Name</VAR>)</A></DT>
<DD class="defbody">
Delete the named global variable.
</DD>
</DL>

<H3><A NAME="sec:6.3.1"><SPAN class="sec-nr">6.3.1</SPAN> <SPAN class="sec-title">Compatibility 
of SWI-Prolog Global Variables</SPAN></A></H3>

<P>Global variables have been introduced by various Prolog 
implementations recently. The implementation of them in SWI-Prolog is 
based on hProlog by Bart Demoen. In discussion with Bart it was decided 
that the semantics if hProlog <A NAME="idx:nbsetval2:1242"></A><A class="pred" href="gvar.html#nb_setval/2">nb_setval/2</A>, 
which is equivalent to <A NAME="idx:nblinkval2:1243"></A><A class="pred" href="gvar.html#nb_linkval/2">nb_linkval/2</A> 
is not acceptable for normal Prolog users as the behaviour is influenced 
by how built-in predicates constructing terms (<A NAME="idx:read1:1244"></A><A class="pred" href="termrw.html#read/1">read/1</A>, 
=../2, etc.) are implemented.

<P>GNU-Prolog provides a rich set of global variables, including arrays. 
Arrays can be implemented easily in SWI-Prolog using <A NAME="idx:functor3:1245"></A><A class="pred" href="manipterm.html#functor/3">functor/3</A> 
and
<A NAME="idx:setarg3:1246"></A><A class="pred" href="manipterm.html#setarg/3">setarg/3</A> 
due to the unrestricted arity of compound terms.

<P></BODY></HTML>