next up previous index
Next: Input and Output Up: Non-logical Storage and References Previous: Non-logical Arrays   Index


Global References

Terms stored in non-logical variables and arrays are copies of the setval/2 arguments, and the terms obtained by getval/2 are thus not identical to the original terms, in particular their variables are different. Sometimes it is necessary to be able to access the original term with its variables, i.e. to have global variables in the meaning of conventional programming languages. A typical example is global state that a set of predicates wants to share without having to pass an argument pair through all the predicate invocations.

ECLiPSe offers the possibility to store references to general terms and to access them even inside predicates that have no common variables with the predicate that has stored them. They are stored in so-called references. For example,

:- local reference(p).
or
:- local reference(p, 0).
creates a named reference p (with an initial value of 0) which can be used to store references to terms. This reference is accessed and modified in the same way as non-logical variables, with setval/2 and getval/2, but the following points are different for references:

The use of references should be considered carefully. Their overuse can lead to programs which are difficult to understand and difficult to optimize. Typical applications use at most a single reference per module, for example to hold state that would otherwise have to be passed via additional arguments through many predicate invocations.


next up previous index
Next: Input and Output Up: Non-logical Storage and References Previous: Non-logical Arrays   Index
Warwick Harvey
2004-08-07