diff src/data.cc @ 5333:ac8d64b9e76a

[project @ 2005-05-02 18:15:20 by jwe]
author jwe
date Mon, 02 May 2005 18:16:51 +0000
parents 4c8a2e4e0717
children 941f0fc6b596
line wrap: on
line diff
--- a/src/data.cc	Mon May 02 17:58:53 2005 +0000
+++ b/src/data.cc	Mon May 02 18:16:51 2005 +0000
@@ -1826,10 +1826,10 @@
 {
 
 #define IMAGINARY_DOC_STRING "-*- texinfo -*-\n\
-@defvr {Built-in Variable} I\n\
-@defvrx {Built-in Variable} J\n\
-@defvrx {Built-in Variable} i\n\
-@defvrx {Built-in Variable} j\n\
+@defvr {Built-in Constant} I\n\
+@defvrx {Built-in Constant} J\n\
+@defvrx {Built-in Constant} i\n\
+@defvrx {Built-in Constant} j\n\
 A pure imaginary number, defined as\n\
 @iftex\n\
 @tex\n\
@@ -1846,15 +1846,15 @@
 @end defvr"
 
 #define INFINITY_DOC_STRING "-*- texinfo -*-\n\
-@defvr {Built-in Variable} Inf\n\
-@defvrx {Built-in Variable} inf\n\
+@defvr {Built-in Constant} Inf\n\
+@defvrx {Built-in Constant} inf\n\
 Infinity.  This is the result of an operation like 1/0, or an operation\n\
 that results in a floating point overflow.\n\
 @end defvr"
 
 #define NAN_DOC_STRING "-*- texinfo -*-\n\
-@defvr {Built-in Variable} NaN\n\
-@defvrx {Built-in Variable} nan\n\
+@defvr {Built-in Constant} NaN\n\
+@defvrx {Built-in Constant} nan\n\
 Not a number.  This is the result of an operation like\n\
 @iftex\n\
 @tex\n\
@@ -1882,7 +1882,7 @@
 
   DEFCONST (NA, lo_ieee_na_value (),
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} NA\n\
+@defvr {Built-in Constant} NA\n\
 Missing value.\n\
 @end defvr");
 
@@ -1897,7 +1897,7 @@
 
   DEFCONST (e, e_val,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} e\n\
+@defvr {Built-in Constant} e\n\
 The base of natural logarithms.  The constant\n\
 @iftex\n\
 @tex\n\
@@ -1920,7 +1920,7 @@
 
   DEFCONST (eps, DBL_EPSILON,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} eps\n\
+@defvr {Built-in Constant} eps\n\
 The machine precision.  More precisely, @code{eps} is the largest\n\
 relative spacing between any two adjacent numbers in the machine's\n\
 floating point system.  This number is obviously system-dependent.  On\n\
@@ -1938,8 +1938,9 @@
 
   DEFCONST (false, false,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} false\n\
+@defvr {Built-in Constant} false\n\
 Logical false value.\n\
+@seealso{true}\n\
 @end defvr");
 
   DEFCONST (i, Complex (0.0, 1.0),
@@ -1962,14 +1963,14 @@
 
   DEFCONST (pi, pi_val,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} pi\n\
+@defvr {Built-in Constant} pi\n\
 The ratio of the circumference of a circle to its diameter.\n\
 Internally, @code{pi} is computed as @samp{4.0 * atan (1.0)}.\n\
 @end defvr");
 
   DEFCONST (realmax, DBL_MAX,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} realmax\n\
+@defvr {Built-in Constant} realmax\n\
 The largest floating point number that is representable.  The actual\n\
 value is system-dependent.  On machines that support 64-bit IEEE\n\
 floating point arithmetic, @code{realmax} is approximately\n\
@@ -1977,6 +1978,7 @@
  1.7977e+308\n\
 @end ifinfo\n\
 @iftex\n\
+@seealso{realmin}\n\
 @tex\n\
  $1.7977\\times10^{308}$.\n\
 @end tex\n\
@@ -1985,7 +1987,7 @@
 
   DEFCONST (realmin, DBL_MIN,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} realmin\n\
+@defvr {Built-in Constant} realmin\n\
 The smallest normalized floating point number that is representable.\n\
 The actual value is system-dependent.  On machines that support\n\
 64-bit IEEE floating point arithmetic, @code{realmin} is approximately\n\
@@ -1997,12 +1999,14 @@
  $2.2251\\times10^{-308}$.\n\
 @end tex\n\
 @end iftex\n\
+@seealso{realmax}\n\
 @end defvr");
 
   DEFCONST (true, true,
     "-*- texinfo -*-\n\
-@defvr {Built-in Variable} true\n\
+@defvr {Built-in Constant} true\n\
 Logical true value.\n\
+@seealso{false}\n\
 @end defvr");
 
 }