[m-rev.] for review: improve purity documentation

Tyson Dowd trd at cs.mu.OZ.AU
Wed Mar 6 15:31:57 AEDT 2002


Hi,

This change came out of discussion with Fergus on Monday, so it would be
good if someone else could also look at this change.  Peter Schachte?
Ralph?

(If you don't believe in the correctness of this change, then we can
have a discussion on that too, just change this thread over into
mercury-developers). 

===================================================================


Estimated hours taken: 2
Branches: main

doc/reference_manual.texi:
	Improve the documentation regarding purity.
	Make it clear that impure goals cannot change the declarative
	semantics of pure goals (only the operational semantics).

	Also make it clear that users should be careful around
	promise_pure declarations, as both pure and impure predicates
	can be in scope, so that the impure predicates may accidentally 
	modify the the declarative semantics of pure predicates.


Index: doc/reference_manual.texi
===================================================================
RCS file: /home/mercury1/repository/mercury/doc/reference_manual.texi,v
retrieving revision 1.242
diff -u -r1.242 reference_manual.texi
--- doc/reference_manual.texi	21 Feb 2002 14:20:44 -0000	1.242
+++ doc/reference_manual.texi	6 Mar 2002 01:33:03 -0000
@@ -6762,11 +6762,11 @@
 
 Please note that the facilities described here are needed only very
 rarely.  The main intent is for implementing language primitives such as
-the all solutions predicates, or for implementing interfaces to C
-libraries using the C interface.  Any other use of @samp{impure} or
- at samp{semipure} probably indicates either a weakness in the Mercury
-standard library, or the programmer's lack of familiarity with the
-standard library.  Newcomers to Mercury are hence encouraged to
+the all solutions predicates, or for implementing interfaces to foreign
+language libraries using the foreign language interface.  Any other use of
+ at samp{impure} or @samp{semipure} probably indicates either a weakness in
+the Mercury standard library, or the programmer's lack of familiarity
+with the standard library.  Newcomers to Mercury are hence encouraged to
 @strong{skip this section}.
 
 @menu
@@ -6791,27 +6791,31 @@
 values of the input arguments.
 They do not interact with the ``real'' world (i.e., do any
 input/output) without taking an io__state (@pxref{Types}) as input and
-returning one as output, and do not make any changes to any data
+returning one as output, and do not change the value of any data
 structure that will not be undone on backtracking (unless the data
-structure would be unreachable on backtracking).  The behaviour of pure
-predicates is never affected by the invocation of pure predicates.
+structure would be unreachable on backtracking).  Note that equality
+axioms are important when considering the value of data structures.
+The declarative semantics of pure predicates is never affected by the
+invocation of other predicates.
 It is possible for the invocation of pure predicates to affect the
-behaviour of non-pure predicates and vice versa.
+operational behaviour of non-pure predicates and vice versa.
 
 By default, Mercury predicates and functions are pure.
-Without using the foreign function interface or calling other impure
-predicates and functions it is impossible to write impure code in Mercury.
+Without using the foreign language interface, writing mode-specific
+clauses or calling other impure predicates and functions it is
+impossible to write impure code in Mercury.
 
 @item semipure
 Semipure predicates are just like pure predicates, except that their
-behaviour may be affected by the invocation of impure predicates.  That
-is, they are sensitive to the state of the computation other than as
-reflected by their input arguments, though they do not affect the state
-themselves.
+declarative semantics may be affected by the invocation of impure
+predicates.  That is, they are sensitive to the state of the computation
+other than as reflected by their input arguments, though they do not
+affect the state themselves.
 
 @item impure
-Impure predicates may do almost anything, including changing the state of the
-computation.
+Impure predicates may perform IO, modify hidden state, and modify the
+operational semantics of other code.  They may not change the
+declarative semantics of pure code.
 They must be type-, mode-, determinism- and uniqueness correct. 
 
 @end table
@@ -6975,6 +6979,14 @@
 :- pragma promise_semipure(@var{Name}/@var{Arity}).
 @end example
 
+Programmers should be very careful about mixing code that is promised
+pure with the impure predicates or functions that may manipulate the
+same hidden state (for example, the impure predicates used to implement 
+a predicate that is promised pure); the promise pure is supposed to
+promise that impure code cannot change the declarative semantics of pure
+code.  The module system can be used to minimize the possibility of
+making errors with such code, by keeping impure predicates or functions
+behind the interface where code is promised pure.
 
 @node Impurity Example
 @section An example using impurity

Tyson.
--------------------------------------------------------------------------
mercury-reviews mailing list
post:  mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe:   Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------



More information about the reviews mailing list