]> www.ginac.de Git - cln.git/blob - doc/cln.texi
- Added forgotten index entries.
[cln.git] / doc / cln.texi
1 \input texinfo  @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename cln.info
4 @settitle CLN, a Class Library for Numbers
5 @c @setchapternewpage off
6 @c For `info' only.
7 @paragraphindent 0
8 @c For TeX only.
9 @iftex
10 @c I hate putting "@noindent" in front of every paragraph.
11 @parindent=0pt
12 @end iftex
13 @c %**end of header
14
15
16 @c My own index.
17 @defindex my
18 @c Don't need the other types of indices.
19 @synindex cp my
20 @synindex fn my
21 @synindex vr my
22 @synindex ky my
23 @synindex pg my
24 @synindex tp my
25
26
27 @c For `info' only.
28 @ifinfo
29 This file documents @sc{cln}, a Class Library for Numbers.
30
31 Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and
32 Richard Kreckel, @code{<kreckel@@ginac.de>}.
33
34 Copyright (C)  Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000.
35
36 Permission is granted to make and distribute verbatim copies of
37 this manual provided the copyright notice and this permission notice
38 are preserved on all copies.
39
40 @ignore
41 Permission is granted to process this file through TeX and print the
42 results, provided the printed document carries copying permission
43 notice identical to this one except for the removal of this paragraph
44 (this paragraph not being relevant to the printed manual).
45
46 @end ignore
47 Permission is granted to copy and distribute modified versions of this
48 manual under the conditions for verbatim copying, provided that the entire
49 resulting derived work is distributed under the terms of a permission
50 notice identical to this one.
51
52 Permission is granted to copy and distribute translations of this manual
53 into another language, under the above conditions for modified versions,
54 except that this permission notice may be stated in a translation approved
55 by the author.
56 @end ifinfo
57
58
59 @c For TeX only.
60 @c prevent ugly black rectangles on overfull hbox lines:
61 @finalout
62 @titlepage
63 @title CLN, a Class Library for Numbers
64
65 @author by Bruno Haible
66 @page
67 @vskip 0pt plus 1filll
68 Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000.
69
70 @sp 2
71 Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and
72 Richard Kreckel, @code{<kreckel@@ginac.de>}.
73
74 Permission is granted to make and distribute verbatim copies of
75 this manual provided the copyright notice and this permission notice
76 are preserved on all copies.
77
78 Permission is granted to copy and distribute modified versions of this
79 manual under the conditions for verbatim copying, provided that the entire
80 resulting derived work is distributed under the terms of a permission
81 notice identical to this one.
82
83 Permission is granted to copy and distribute translations of this manual
84 into another language, under the above conditions for modified versions,
85 except that this permission notice may be stated in a translation approved
86 by the author.
87
88 @end titlepage
89 @page
90
91
92 @node Top, Introduction, (dir), (dir)
93
94 @c @menu
95 @c * Introduction::                Introduction
96 @c @end menu
97
98 @menu
99 * Introduction::                
100 * Installation::                
101 * Ordinary number types::       
102 * Functions on numbers::        
103 * Input/Output::                
104 * Rings::                       
105 * Modular integers::            
106 * Symbolic data types::         
107 * Univariate polynomials::      
108 * Internals::                   
109 * Using the library::           
110 * Customizing::                 
111 * Index::                       
112
113
114  --- The Detailed Node Listing ---
115
116 Installation
117
118 * Prerequisites::               
119 * Building the library::        
120 * Installing the library::      
121 * Cleaning up::                 
122
123 Prerequisites
124
125 * C++ compiler::                
126 * Make utility::                
127 * Sed utility::                 
128
129 Building the library
130
131 * Using the GNU MP Library::    
132
133 Ordinary number types
134
135 * Exact numbers::               
136 * Floating-point numbers::      
137 * Complex numbers::             
138 * Conversions::                 
139
140 Functions on numbers
141
142 * Constructing numbers::        
143 * Elementary functions::        
144 * Elementary rational functions::  
145 * Elementary complex functions::  
146 * Comparisons::                 
147 * Rounding functions::          
148 * Roots::                       
149 * Transcendental functions::    
150 * Functions on integers::       
151 * Functions on floating-point numbers::  
152 * Conversion functions::        
153 * Random number generators::    
154 * Obfuscating operators::       
155
156 Constructing numbers
157
158 * Constructing integers::       
159 * Constructing rational numbers::  
160 * Constructing floating-point numbers::  
161 * Constructing complex numbers::  
162
163 Transcendental functions
164
165 * Exponential and logarithmic functions::  
166 * Trigonometric functions::     
167 * Hyperbolic functions::        
168 * Euler gamma::                 
169 * Riemann zeta::                
170
171 Functions on integers
172
173 * Logical functions::           
174 * Number theoretic functions::  
175 * Combinatorial functions::     
176
177 Conversion functions
178
179 * Conversion to floating-point numbers::  
180 * Conversion to rational numbers::  
181
182 Input/Output
183
184 * Internal and printed representation::  
185 * Input functions::             
186 * Output functions::            
187
188 Modular integers
189
190 * Modular integer rings::       
191 * Functions on modular integers::  
192
193 Symbolic data types
194
195 * Strings::                     
196 * Symbols::                     
197
198 Univariate polynomials
199
200 * Univariate polynomial rings::  
201 * Functions on univariate polynomials::  
202 * Special polynomials::         
203
204 Internals
205
206 * Why C++ ?::                   
207 * Memory efficiency::           
208 * Speed efficiency::            
209 * Garbage collection::          
210
211 Using the library
212
213 * Compiler options::            
214 * Include files::               
215 * An Example::                  
216 * Debugging support::           
217
218 Customizing
219
220 * Error handling::              
221 * Floating-point underflow::    
222 * Customizing I/O::             
223 * Customizing the memory allocator::  
224
225
226 @end menu
227
228 @node Introduction, Installation, Top, Top
229 @comment node-name, next, previous, up
230 @chapter Introduction
231
232 @noindent
233 CLN is a library for computations with all kinds of numbers.
234 It has a rich set of number classes:
235
236 @itemize @bullet
237 @item
238 Integers (with unlimited precision),
239
240 @item
241 Rational numbers,
242
243 @item
244 Floating-point numbers:
245
246 @itemize @minus
247 @item
248 Short float,
249 @item
250 Single float,
251 @item
252 Double float,
253 @item
254 Long float (with unlimited precision),
255 @end itemize
256
257 @item
258 Complex numbers,
259
260 @item
261 Modular integers (integers modulo a fixed integer),
262
263 @item
264 Univariate polynomials.
265 @end itemize
266
267 @noindent
268 The subtypes of the complex numbers among these are exactly the
269 types of numbers known to the Common Lisp language. Therefore
270 @code{CLN} can be used for Common Lisp implementations, giving
271 @samp{CLN} another meaning: it becomes an abbreviation of
272 ``Common Lisp Numbers''.
273
274 @noindent
275 The CLN package implements
276
277 @itemize @bullet
278 @item
279 Elementary functions (@code{+}, @code{-}, @code{*}, @code{/}, @code{sqrt},
280 comparisons, @dots{}),
281
282 @item
283 Logical functions (logical @code{and}, @code{or}, @code{not}, @dots{}),
284
285 @item
286 Transcendental functions (exponential, logarithmic, trigonometric, hyperbolic
287 functions and their inverse functions).
288 @end itemize
289
290 @noindent
291 CLN is a C++ library. Using C++ as an implementation language provides
292
293 @itemize @bullet
294 @item
295 efficiency: it compiles to machine code,
296 @item
297 type safety: the C++ compiler knows about the number types and complains
298 if, for example, you try to assign a float to an integer variable.
299 @item
300 algebraic syntax: You can use the @code{+}, @code{-}, @code{*}, @code{=},
301 @code{==}, @dots{} operators as in C or C++.
302 @end itemize
303
304 @noindent
305 CLN is memory efficient:
306
307 @itemize @bullet
308 @item
309 Small integers and short floats are immediate, not heap allocated.
310 @item
311 Heap-allocated memory is reclaimed through an automatic, non-interruptive
312 garbage collection.
313 @end itemize
314
315 @noindent
316 CLN is speed efficient:
317
318 @itemize @bullet
319 @item
320 The kernel of CLN has been written in assembly language for some CPUs
321 (@code{i386}, @code{m68k}, @code{sparc}, @code{mips}, @code{arm}).
322 @item
323 @cindex GMP
324 On all CPUs, CLN may be configured to use the superefficient low-level
325 routines from GNU GMP version 3.
326 @item
327 It uses Karatsuba multiplication, which is significantly faster
328 for large numbers than the standard multiplication algorithm.
329 @item
330 For very large numbers (more than 12000 decimal digits), it uses
331 @iftex
332 Sch{@"o}nhage-Strassen
333 @cindex Sch{@"o}nhage-Strassen multiplication
334 @end iftex
335 @ifinfo
336 Schönhage-Strassen
337 @cindex Schönhage-Strassen multiplication
338 @end ifinfo
339 multiplication, which is an asymptotically optimal multiplication
340 algorithm, for multiplication, division and radix conversion.
341 @end itemize
342
343 @noindent
344 CLN aims at being easily integrated into larger software packages:
345
346 @itemize @bullet
347 @item
348 The garbage collection imposes no burden on the main application.
349 @item
350 The library provides hooks for memory allocation and exceptions.
351 @end itemize
352
353
354 @node Installation, Ordinary number types, Introduction, Top
355 @chapter Installation
356
357 This section describes how to install the CLN package on your system.
358
359
360 @menu
361 * Prerequisites::               
362 * Building the library::        
363 * Installing the library::      
364 * Cleaning up::                 
365 @end menu
366
367 @node Prerequisites, Building the library, Installation, Installation
368 @section Prerequisites
369
370 @menu
371 * C++ compiler::                
372 * Make utility::                
373 * Sed utility::                 
374 @end menu
375
376 @node C++ compiler, Make utility, Prerequisites, Prerequisites
377 @subsection C++ compiler
378
379 To build CLN, you need a C++ compiler.
380 Actually, you need GNU @code{g++ 2.7.0} or newer.
381 On HPPA, you need GNU @code{g++ 2.8.0} or newer.
382 I recommend GNU @code{g++ 2.95} or newer.
383
384 The following C++ features are used:
385 classes, member functions,
386 overloading of functions and operators,
387 constructors and destructors, inline, const,
388 multiple inheritance, templates.
389
390 The following C++ features are not used:
391 @code{new}, @code{delete}, virtual inheritance,
392 exceptions.
393
394 CLN relies on semi-automatic ordering of initializations
395 of static and global variables, a feature which I could
396 implement for GNU g++ only.
397
398 @ignore
399 @comment cl_modules.h requires g++
400 Therefore nearly any C++ compiler will do.
401
402 The following C++ compilers are known to compile CLN:
403 @itemize @minus
404 @item
405 GNU @code{g++ 2.7.0}, @code{g++ 2.7.2}
406 @item
407 SGI @code{CC 4}
408 @end itemize
409
410 The following C++ compilers are known to be unusable for CLN:
411 @itemize @minus
412 @item
413 On SunOS 4, @code{CC 2.1}, because it doesn't grok @code{//} comments
414 in lines containing @code{#if} or @code{#elif} preprocessor commands.
415 @item
416 On AIX 3.2.5, @code{xlC}, because it doesn't grok the template syntax
417 in @code{cl_SV.h} and @code{cl_GV.h}, because it forces most class types
418 to have default constructors, and because it probably miscompiles the
419 integer multiplication routines.
420 @item
421 On AIX 4.1.4.0, @code{xlC}, because when optimizing, it sometimes converts
422 @code{short}s to @code{int}s by zero-extend.
423 @item
424 GNU @code{g++ 2.5.8}
425 @item
426 On HPPA, GNU @code{g++ 2.7.x}, because the semi-automatic ordering of
427 initializations will not work.
428 @end itemize
429 @end ignore
430
431 @node Make utility, Sed utility, C++ compiler, Prerequisites
432 @subsection Make utility
433 @cindex @code{make}
434
435 To build CLN, you also need to have GNU @code{make} installed.
436
437 @node Sed utility,  , Make utility, Prerequisites
438 @subsection Sed utility
439 @cindex @code{sed}
440
441 To build CLN on HP-UX, you also need to have GNU @code{sed} installed.
442 This is because the libtool script, which creates the CLN library, relies
443 on @code{sed}, and the vendor's @code{sed} utility on these systems is too
444 limited.
445
446
447 @node Building the library, Installing the library, Prerequisites, Installation
448 @section Building the library
449
450 As with any autoconfiguring GNU software, installation is as easy as this:
451
452 @example
453 $ ./configure
454 $ make
455 $ make check
456 @end example
457
458 If on your system, @samp{make} is not GNU @code{make}, you have to use
459 @samp{gmake} instead of @samp{make} above.
460
461 The @code{configure} command checks out some features of your system and
462 C++ compiler and builds the @code{Makefile}s. The @code{make} command
463 builds the library. This step may take 4 hours on an average workstation.
464 The @code{make check} runs some test to check that no important subroutine
465 has been miscompiled.
466
467 The @code{configure} command accepts options. To get a summary of them, try
468
469 @example
470 $ ./configure --help
471 @end example
472
473 Some of the options are explained in detail in the @samp{INSTALL.generic} file.
474
475 You can specify the C compiler, the C++ compiler and their options through
476 the following environment variables when running @code{configure}:
477
478 @table @code
479 @item CC
480 Specifies the C compiler.
481
482 @item CFLAGS
483 Flags to be given to the C compiler when compiling programs (not when linking).
484
485 @item CXX
486 Specifies the C++ compiler.
487
488 @item CXXFLAGS
489 Flags to be given to the C++ compiler when compiling programs (not when linking).
490 @end table
491
492 Examples:
493
494 @example
495 $ CC="gcc" CFLAGS="-O" CXX="g++" CXXFLAGS="-O" ./configure
496 $ CC="gcc -V 2.7.2" CFLAGS="-O -g" \
497   CXX="g++ -V 2.7.2" CXXFLAGS="-O -g" ./configure
498 $ CC="gcc -V 2.8.1" CFLAGS="-O -fno-exceptions" \
499   CXX="g++ -V 2.8.1" CXXFLAGS="-O -fno-exceptions" ./configure
500 $ CC="gcc -V egcs-2.91.60" CFLAGS="-O2 -fno-exceptions" \
501   CXX="g++ -V egcs-2.91.60" CFLAGS="-O2 -fno-exceptions" ./configure
502 @end example
503 @ignore
504 @comment cl_modules.h requires g++
505 You should not mix GNU and non-GNU compilers. So, if @code{CXX} is a non-GNU
506 compiler, @code{CC} should be set to a non-GNU compiler as well. Examples:
507
508 @example
509 $ CC="cc" CFLAGS="-O" CXX="CC" CXXFLAGS="-O" ./configure
510 $ CC="gcc -V 2.7.0" CFLAGS="-g" CXX="g++ -V 2.7.0" CXXFLAGS="-g" ./configure
511 @end example
512
513 On SGI Irix 5, if you wish not to use @code{g++}:
514
515 @example
516 $ CC="cc" CFLAGS="-O" CXX="CC" CXXFLAGS="-O -Olimit 16000" ./configure
517 @end example
518
519 On SGI Irix 6, if you wish not to use @code{g++}:
520
521 @example
522 $ CC="cc -32" CFLAGS="-O" CXX="CC -32" CXXFLAGS="-O -Olimit 34000" \
523   ./configure --without-gmp
524 $ CC="cc -n32" CFLAGS="-O" CXX="CC -n32" CXXFLAGS="-O \
525   -OPT:const_copy_limit=32400 -OPT:global_limit=32400 -OPT:fprop_limit=4000" \
526   ./configure --without-gmp
527 @end example
528 @end ignore
529
530 Note that for these environment variables to take effect, you have to set
531 them (assuming a Bourne-compatible shell) on the same line as the
532 @code{configure} command. If you made the settings in earlier shell
533 commands, you have to @code{export} the environment variables before
534 calling @code{configure}. In a @code{csh} shell, you have to use the
535 @samp{setenv} command for setting each of the environment variables.
536
537 On Linux, @code{g++} needs 15 MB to compile the tests. So you should better
538 have 17 MB swap space and 1 MB room in $TMPDIR.
539
540 If you use @code{g++} version 2.7.x, don't add @samp{-O2} to the CXXFLAGS,
541 because @samp{g++ -O} generates better code for CLN than @samp{g++ -O2}.
542
543 If you use @code{g++} version 2.8.x or egcs-2.91.x (a.k.a. egcs-1.1) or
544 gcc-2.95.x, I recommend adding @samp{-fno-exceptions} to the CXXFLAGS.
545 This will likely generate better code.
546
547 If you use @code{g++} version egcs-2.91.x (egcs-1.1) or gcc-2.95.x on Sparc,
548 add either @samp{-O} or @samp{-O2 -fno-schedule-insns} to the CXXFLAGS.
549 With full @samp{-O2}, @code{g++} miscompiles the division routines. Also, for
550 --enable-shared to work, you need egcs-1.1.2 or newer.
551
552 By default, only a static library is built. You can build CLN as a shared
553 library too, by calling @code{configure} with the option @samp{--enable-shared}.
554 To get it built as a shared library only, call @code{configure} with the options
555 @samp{--enable-shared --disable-static}.
556
557 If you use @code{g++} version egcs-2.91.x (egcs-1.1) on Sparc, you cannot
558 use @samp{--enable-shared} because @code{g++} would miscompile parts of the
559 library.
560
561
562 @menu
563 * Using the GNU MP Library::    
564 @end menu
565
566 @node Using the GNU MP Library,  , Building the library, Building the library
567 @subsection Using the GNU MP Library
568 @cindex GMP
569
570 Starting with version 1.0.4, CLN may be configured to make use of a
571 preinstalled @code{gmp} library.  Please make sure that you have at
572 least @code{gmp} version 3.0 installed since earlier versions are
573 unsupported and likely not to work.  Enabling this feature by calling
574 @code{configure} with the option @samp{--with-gmp} is known to be quite
575 a boost for CLN's performance.
576
577 If you have installed the @code{gmp} library and its header file in
578 some place where your compiler cannot find it by default, you must help
579 @code{configure} by setting @code{CPPFLAGS} and @code{LDFLAGS}.  Here is
580 an example:
581
582 @example
583 $ CC="gcc" CFLAGS="-O2" CXX="g++" CXXFLAGS="-O2 -fno-exceptions" \
584   CPPFLAGS="-I/opt/gmp/include" LDFLAGS="-L/opt/gmp/lib" ./configure --with-gmp
585 @end example
586
587
588 @node Installing the library, Cleaning up, Building the library, Installation
589 @section Installing the library
590 @cindex installation
591
592 As with any autoconfiguring GNU software, installation is as easy as this:
593
594 @example
595 $ make install
596 @end example
597
598 The @samp{make install} command installs the library and the include files
599 into public places (@file{/usr/local/lib/} and @file{/usr/local/include/},
600 if you haven't specified a @code{--prefix} option to @code{configure}).
601 This step may require superuser privileges.
602
603 If you have already built the library and wish to install it, but didn't
604 specify @code{--prefix=@dots{}} at configure time, just re-run
605 @code{configure}, giving it the same options as the first time, plus
606 the @code{--prefix=@dots{}} option.
607
608
609 @node Cleaning up,  , Installing the library, Installation
610 @section Cleaning up
611
612 You can remove system-dependent files generated by @code{make} through
613
614 @example
615 $ make clean
616 @end example
617
618 You can remove all files generated by @code{make}, thus reverting to a
619 virgin distribution of CLN, through
620
621 @example
622 $ make distclean
623 @end example
624
625
626 @node Ordinary number types, Functions on numbers, Installation, Top
627 @chapter Ordinary number types
628
629 CLN implements the following class hierarchy:
630
631 @example
632                         Number
633                        cl_number
634                      <cl_number.h>
635                           |
636                           |
637                  Real or complex number
638                         cl_N
639                      <cl_complex.h>
640                           |
641                           |
642                      Real number
643                         cl_R
644                       <cl_real.h>
645                           |
646       +-------------------+-------------------+
647       |                                       |
648 Rational number                     Floating-point number
649     cl_RA                                   cl_F
650 <cl_rational.h>                          <cl_float.h>
651       |                                       |
652       |                  +-------------+-------------+-------------+
653    Integer               |             |             |             |
654     cl_I            Short-Float   Single-Float  Double-Float   Long-Float
655  <cl_integer.h>        cl_SF         cl_FF         cl_DF         cl_LF
656                    <cl_sfloat.h> <cl_ffloat.h> <cl_dfloat.h> <cl_lfloat.h>
657 @end example
658
659 @cindex @code{cl_number}
660 @cindex abstract class
661 The base class @code{cl_number} is an abstract base class.
662 It is not useful to declare a variable of this type except if you want
663 to completely disable compile-time type checking and use run-time type
664 checking instead.
665
666 @cindex @code{cl_N}
667 @cindex real number
668 @cindex complex number
669 The class @code{cl_N} comprises real and complex numbers. There is
670 no special class for complex numbers since complex numbers with imaginary
671 part @code{0} are automatically converted to real numbers.
672
673 @cindex @code{cl_R}
674 The class @code{cl_R} comprises real numbers of different kinds. It is an
675 abstract class.
676
677 @cindex @code{cl_RA}
678 @cindex rational number
679 @cindex integer
680 The class @code{cl_RA} comprises exact real numbers: rational numbers, including
681 integers. There is no special class for non-integral rational numbers
682 since rational numbers with denominator @code{1} are automatically converted
683 to integers.
684
685 @cindex @code{cl_F}
686 The class @code{cl_F} implements floating-point approximations to real numbers.
687 It is an abstract class.
688
689
690 @menu
691 * Exact numbers::               
692 * Floating-point numbers::      
693 * Complex numbers::             
694 * Conversions::                 
695 @end menu
696
697 @node Exact numbers, Floating-point numbers, Ordinary number types, Ordinary number types
698 @section Exact numbers
699 @cindex exact number
700
701 Some numbers are represented as exact numbers: there is no loss of information
702 when such a number is converted from its mathematical value to its internal
703 representation. On exact numbers, the elementary operations (@code{+},
704 @code{-}, @code{*}, @code{/}, comparisons, @dots{}) compute the completely
705 correct result.
706
707 In CLN, the exact numbers are:
708
709 @itemize @bullet
710 @item
711 rational numbers (including integers),
712 @item
713 complex numbers whose real and imaginary parts are both rational numbers.
714 @end itemize
715
716 Rational numbers are always normalized to the form
717 @code{@var{numerator}/@var{denominator}} where the numerator and denominator
718 are coprime integers and the denominator is positive. If the resulting
719 denominator is @code{1}, the rational number is converted to an integer.
720
721 Small integers (typically in the range @code{-2^30}@dots{}@code{2^30-1},
722 for 32-bit machines) are especially efficient, because they consume no heap
723 allocation. Otherwise the distinction between these immediate integers
724 (called ``fixnums'') and heap allocated integers (called ``bignums'')
725 is completely transparent.
726
727
728 @node Floating-point numbers, Complex numbers, Exact numbers, Ordinary number types
729 @section Floating-point numbers
730 @cindex floating-point number
731
732 Not all real numbers can be represented exactly. (There is an easy mathematical
733 proof for this: Only a countable set of numbers can be stored exactly in
734 a computer, even if one assumes that it has unlimited storage. But there
735 are uncountably many real numbers.) So some approximation is needed.
736 CLN implements ordinary floating-point numbers, with mantissa and exponent.
737
738 @cindex rounding error
739 The elementary operations (@code{+}, @code{-}, @code{*}, @code{/}, @dots{})
740 only return approximate results. For example, the value of the expression
741 @code{(cl_F) 0.3 + (cl_F) 0.4} prints as @samp{0.70000005}, not as
742 @samp{0.7}. Rounding errors like this one are inevitable when computing
743 with floating-point numbers.
744
745 Nevertheless, CLN rounds the floating-point results of the operations @code{+},
746 @code{-}, @code{*}, @code{/}, @code{sqrt} according to the ``round-to-even''
747 rule: It first computes the exact mathematical result and then returns the
748 floating-point number which is nearest to this. If two floating-point numbers
749 are equally distant from the ideal result, the one with a @code{0} in its least
750 significant mantissa bit is chosen.
751
752 Similarly, testing floating point numbers for equality @samp{x == y}
753 is gambling with random errors. Better check for @samp{abs(x - y) < epsilon}
754 for some well-chosen @code{epsilon}.
755
756 Floating point numbers come in four flavors:
757
758 @itemize @bullet
759 @item
760 @cindex @code{cl_SF}
761 Short floats, type @code{cl_SF}.
762 They have 1 sign bit, 8 exponent bits (including the exponent's sign),
763 and 17 mantissa bits (including the ``hidden'' bit).
764 They don't consume heap allocation.
765
766 @item
767 @cindex @code{cl_FF}
768 Single floats, type @code{cl_FF}.
769 They have 1 sign bit, 8 exponent bits (including the exponent's sign),
770 and 24 mantissa bits (including the ``hidden'' bit).
771 In CLN, they are represented as IEEE single-precision floating point numbers.
772 This corresponds closely to the C/C++ type @samp{float}.
773
774 @item
775 @cindex @code{cl_DF}
776 Double floats, type @code{cl_DF}.
777 They have 1 sign bit, 11 exponent bits (including the exponent's sign),
778 and 53 mantissa bits (including the ``hidden'' bit).
779 In CLN, they are represented as IEEE double-precision floating point numbers.
780 This corresponds closely to the C/C++ type @samp{double}.
781
782 @item
783 @cindex @code{cl_LF}
784 Long floats, type @code{cl_LF}.
785 They have 1 sign bit, 32 exponent bits (including the exponent's sign),
786 and n mantissa bits (including the ``hidden'' bit), where n >= 64.
787 The precision of a long float is unlimited, but once created, a long float
788 has a fixed precision. (No ``lazy recomputation''.)
789 @end itemize
790
791 Of course, computations with long floats are more expensive than those
792 with smaller floating-point formats.
793
794 CLN does not implement features like NaNs, denormalized numbers and
795 gradual underflow. If the exponent range of some floating-point type
796 is too limited for your application, choose another floating-point type
797 with larger exponent range.
798
799 @cindex @code{cl_F}
800 As a user of CLN, you can forget about the differences between the
801 four floating-point types and just declare all your floating-point
802 variables as being of type @code{cl_F}. This has the advantage that
803 when you change the precision of some computation (say, from @code{cl_DF}
804 to @code{cl_LF}), you don't have to change the code, only the precision
805 of the initial values. Also, many transcendental functions have been
806 declared as returning a @code{cl_F} when the argument is a @code{cl_F},
807 but such declarations are missing for the types @code{cl_SF}, @code{cl_FF},
808 @code{cl_DF}, @code{cl_LF}. (Such declarations would be wrong if
809 the floating point contagion rule happened to change in the future.)
810
811
812 @node Complex numbers, Conversions, Floating-point numbers, Ordinary number types
813 @section Complex numbers
814 @cindex complex number
815
816 Complex numbers, as implemented by the class @code{cl_N}, have a real
817 part and an imaginary part, both real numbers. A complex number whose
818 imaginary part is the exact number @code{0} is automatically converted
819 to a real number.
820
821 Complex numbers can arise from real numbers alone, for example
822 through application of @code{sqrt} or transcendental functions.
823
824
825 @node Conversions,  , Complex numbers, Ordinary number types
826 @section Conversions
827 @cindex conversion
828
829 Conversions from any class to any its superclasses (``base classes'' in
830 C++ terminology) is done automatically.
831
832 Conversions from the C built-in types @samp{long} and @samp{unsigned long}
833 are provided for the classes @code{cl_I}, @code{cl_RA}, @code{cl_R},
834 @code{cl_N} and @code{cl_number}.
835
836 Conversions from the C built-in types @samp{int} and @samp{unsigned int}
837 are provided for the classes @code{cl_I}, @code{cl_RA}, @code{cl_R},
838 @code{cl_N} and @code{cl_number}. However, these conversions emphasize
839 efficiency. Their range is therefore limited:
840
841 @itemize @minus
842 @item
843 The conversion from @samp{int} works only if the argument is < 2^29 and > -2^29.
844 @item
845 The conversion from @samp{unsigned int} works only if the argument is < 2^29.
846 @end itemize
847
848 In a declaration like @samp{cl_I x = 10;} the C++ compiler is able to
849 do the conversion of @code{10} from @samp{int} to @samp{cl_I} at compile time
850 already. On the other hand, code like @samp{cl_I x = 1000000000;} is
851 in error.
852 So, if you want to be sure that an @samp{int} whose magnitude is not guaranteed
853 to be < 2^29 is correctly converted to a @samp{cl_I}, first convert it to a
854 @samp{long}. Similarly, if a large @samp{unsigned int} is to be converted to a
855 @samp{cl_I}, first convert it to an @samp{unsigned long}.
856
857 Conversions from the C built-in type @samp{float} are provided for the classes
858 @code{cl_FF}, @code{cl_F}, @code{cl_R}, @code{cl_N} and @code{cl_number}.
859
860 Conversions from the C built-in type @samp{double} are provided for the classes
861 @code{cl_DF}, @code{cl_F}, @code{cl_R}, @code{cl_N} and @code{cl_number}.
862
863 Conversions from @samp{const char *} are provided for the classes
864 @code{cl_I}, @code{cl_RA},
865 @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}, @code{cl_F},
866 @code{cl_R}, @code{cl_N}.
867 The easiest way to specify a value which is outside of the range of the
868 C++ built-in types is therefore to specify it as a string, like this:
869 @cindex Rubik's cube
870 @example
871    cl_I order_of_rubiks_cube_group = "43252003274489856000";
872 @end example
873 Note that this conversion is done at runtime, not at compile-time.
874
875 Conversions from @code{cl_I} to the C built-in types @samp{int},
876 @samp{unsigned int}, @samp{long}, @samp{unsigned long} are provided through
877 the functions
878
879 @table @code
880 @item int cl_I_to_int (const cl_I& x)
881 @cindex @code{cl_I_to_int ()}
882 @itemx unsigned int cl_I_to_uint (const cl_I& x)
883 @cindex @code{cl_I_to_uint ()}
884 @itemx long cl_I_to_long (const cl_I& x)
885 @cindex @code{cl_I_to_long ()}
886 @itemx unsigned long cl_I_to_ulong (const cl_I& x)
887 @cindex @code{cl_I_to_ulong ()}
888 Returns @code{x} as element of the C type @var{ctype}. If @code{x} is not
889 representable in the range of @var{ctype}, a runtime error occurs.
890 @end table
891
892 Conversions from the classes @code{cl_I}, @code{cl_RA},
893 @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}, @code{cl_F} and
894 @code{cl_R}
895 to the C built-in types @samp{float} and @samp{double} are provided through
896 the functions
897
898 @table @code
899 @item float cl_float_approx (const @var{type}& x)
900 @cindex @code{cl_float_approx ()}
901 @itemx double cl_double_approx (const @var{type}& x)
902 @cindex @code{cl_double_approx ()}
903 Returns an approximation of @code{x} of C type @var{ctype}.
904 If @code{abs(x)} is too close to 0 (underflow), 0 is returned.
905 If @code{abs(x)} is too large (overflow), an IEEE infinity is returned.
906 @end table
907
908 Conversions from any class to any of its subclasses (``derived classes'' in
909 C++ terminology) are not provided. Instead, you can assert and check
910 that a value belongs to a certain subclass, and return it as element of that
911 class, using the @samp{As} and @samp{The} macros.
912 @cindex @code{As()()}
913 @code{As(@var{type})(@var{value})} checks that @var{value} belongs to
914 @var{type} and returns it as such.
915 @cindex @code{The()()}
916 @code{The(@var{type})(@var{value})} assumes that @var{value} belongs to
917 @var{type} and returns it as such. It is your responsibility to ensure
918 that this assumption is valid.
919 Example:
920
921 @example
922 @group
923    cl_I x = @dots{};
924    if (!(x >= 0)) abort();
925    cl_I ten_x = The(cl_I)(expt(10,x)); // If x >= 0, 10^x is an integer.
926                 // In general, it would be a rational number.
927 @end group
928 @end example
929
930
931 @node Functions on numbers, Input/Output, Ordinary number types, Top
932 @chapter Functions on numbers
933
934 Each of the number classes declares its mathematical operations in the
935 corresponding include file. For example, if your code operates with
936 objects of type @code{cl_I}, it should @code{#include <cl_integer.h>}.
937
938
939 @menu
940 * Constructing numbers::        
941 * Elementary functions::        
942 * Elementary rational functions::  
943 * Elementary complex functions::  
944 * Comparisons::                 
945 * Rounding functions::          
946 * Roots::                       
947 * Transcendental functions::    
948 * Functions on integers::       
949 * Functions on floating-point numbers::  
950 * Conversion functions::        
951 * Random number generators::    
952 * Obfuscating operators::       
953 @end menu
954
955 @node Constructing numbers, Elementary functions, Functions on numbers, Functions on numbers
956 @section Constructing numbers
957
958 Here is how to create number objects ``from nothing''.
959
960
961 @menu
962 * Constructing integers::       
963 * Constructing rational numbers::  
964 * Constructing floating-point numbers::  
965 * Constructing complex numbers::  
966 @end menu
967
968 @node Constructing integers, Constructing rational numbers, Constructing numbers, Constructing numbers
969 @subsection Constructing integers
970
971 @code{cl_I} objects are most easily constructed from C integers and from
972 strings. See @ref{Conversions}.
973
974
975 @node Constructing rational numbers, Constructing floating-point numbers, Constructing integers, Constructing numbers
976 @subsection Constructing rational numbers
977
978 @code{cl_RA} objects can be constructed from strings. The syntax
979 for rational numbers is described in @ref{Internal and printed representation}.
980 Another standard way to produce a rational number is through application
981 of @samp{operator /} or @samp{recip} on integers.
982
983
984 @node Constructing floating-point numbers, Constructing complex numbers, Constructing rational numbers, Constructing numbers
985 @subsection Constructing floating-point numbers
986
987 @code{cl_F} objects with low precision are most easily constructed from
988 C @samp{float} and @samp{double}. See @ref{Conversions}.
989
990 To construct a @code{cl_F} with high precision, you can use the conversion
991 from @samp{const char *}, but you have to specify the desired precision
992 within the string. (See @ref{Internal and printed representation}.)
993 Example:
994 @example
995    cl_F e = "0.271828182845904523536028747135266249775724709369996e+1_40";
996 @end example
997 will set @samp{e} to the given value, with a precision of 40 decimal digits.
998
999 The programmatic way to construct a @code{cl_F} with high precision is
1000 through the @code{cl_float} conversion function, see
1001 @ref{Conversion to floating-point numbers}. For example, to compute
1002 @code{e} to 40 decimal places, first construct 1.0 to 40 decimal places
1003 and then apply the exponential function:
1004 @example
1005    cl_float_format_t precision = cl_float_format(40);
1006    cl_F e = exp(cl_float(1,precision));
1007 @end example
1008
1009
1010 @node Constructing complex numbers,  , Constructing floating-point numbers, Constructing numbers
1011 @subsection Constructing complex numbers
1012
1013 Non-real @code{cl_N} objects are normally constructed through the function
1014 @example
1015    cl_N complex (const cl_R& realpart, const cl_R& imagpart)
1016 @end example
1017 See @ref{Elementary complex functions}.
1018
1019
1020 @node Elementary functions, Elementary rational functions, Constructing numbers, Functions on numbers
1021 @section Elementary functions
1022
1023 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
1024 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1025 defines the following operations:
1026
1027 @table @code
1028 @item @var{type} operator + (const @var{type}&, const @var{type}&)
1029 @cindex @code{operator + ()}
1030 Addition.
1031
1032 @item @var{type} operator - (const @var{type}&, const @var{type}&)
1033 @cindex @code{operator - ()}
1034 Subtraction.
1035
1036 @item @var{type} operator - (const @var{type}&)
1037 Returns the negative of the argument.
1038
1039 @item @var{type} plus1 (const @var{type}& x)
1040 @cindex @code{plus1 ()}
1041 Returns @code{x + 1}.
1042
1043 @item @var{type} minus1 (const @var{type}& x)
1044 @cindex @code{minus1 ()}
1045 Returns @code{x - 1}.
1046
1047 @item @var{type} operator * (const @var{type}&, const @var{type}&)
1048 @cindex @code{operator * ()}
1049 Multiplication.
1050
1051 @item @var{type} square (const @var{type}& x)
1052 @cindex @code{square ()}
1053 Returns @code{x * x}.
1054 @end table
1055
1056 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA},
1057 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1058 defines the following operations:
1059
1060 @table @code
1061 @item @var{type} operator / (const @var{type}&, const @var{type}&)
1062 @cindex @code{operator / ()}
1063 Division.
1064
1065 @item @var{type} recip (const @var{type}&)
1066 @cindex @code{recip ()}
1067 Returns the reciprocal of the argument.
1068 @end table
1069
1070 The class @code{cl_I} doesn't define a @samp{/} operation because
1071 in the C/C++ language this operator, applied to integral types,
1072 denotes the @samp{floor} or @samp{truncate} operation (which one of these,
1073 is implementation dependent). (@xref{Rounding functions}.)
1074 Instead, @code{cl_I} defines an ``exact quotient'' function:
1075
1076 @table @code
1077 @item cl_I exquo (const cl_I& x, const cl_I& y)
1078 @cindex @code{exquo ()}
1079 Checks that @code{y} divides @code{x}, and returns the quotient @code{x}/@code{y}.
1080 @end table
1081
1082 The following exponentiation functions are defined:
1083
1084 @table @code
1085 @item cl_I expt_pos (const cl_I& x, const cl_I& y)
1086 @cindex @code{expt_pos ()}
1087 @itemx cl_RA expt_pos (const cl_RA& x, const cl_I& y)
1088 @code{y} must be > 0. Returns @code{x^y}.
1089
1090 @item cl_RA expt (const cl_RA& x, const cl_I& y)
1091 @cindex @code{expt ()}
1092 @itemx cl_R expt (const cl_R& x, const cl_I& y)
1093 @itemx cl_N expt (const cl_N& x, const cl_I& y)
1094 Returns @code{x^y}.
1095 @end table
1096
1097 Each of the classes @code{cl_R}, @code{cl_RA}, @code{cl_I},
1098 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1099 defines the following operation:
1100
1101 @table @code
1102 @item @var{type} abs (const @var{type}& x)
1103 @cindex @code{abs ()}
1104 Returns the absolute value of @code{x}.
1105 This is @code{x} if @code{x >= 0}, and @code{-x} if @code{x <= 0}.
1106 @end table
1107
1108 The class @code{cl_N} implements this as follows:
1109
1110 @table @code
1111 @item cl_R abs (const cl_N x)
1112 Returns the absolute value of @code{x}.
1113 @end table
1114
1115 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
1116 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1117 defines the following operation:
1118
1119 @table @code
1120 @item @var{type} signum (const @var{type}& x)
1121 @cindex @code{signum ()}
1122 Returns the sign of @code{x}, in the same number format as @code{x}.
1123 This is defined as @code{x / abs(x)} if @code{x} is non-zero, and
1124 @code{x} if @code{x} is zero. If @code{x} is real, the value is either
1125 0 or 1 or -1.
1126 @end table
1127
1128
1129 @node Elementary rational functions, Elementary complex functions, Elementary functions, Functions on numbers
1130 @section Elementary rational functions
1131
1132 Each of the classes @code{cl_RA}, @code{cl_I} defines the following operations:
1133
1134 @table @code
1135 @item cl_I numerator (const @var{type}& x)
1136 @cindex @code{numerator ()}
1137 Returns the numerator of @code{x}.
1138
1139 @item cl_I denominator (const @var{type}& x)
1140 @cindex @code{denominator ()}
1141 Returns the denominator of @code{x}.
1142 @end table
1143
1144 The numerator and denominator of a rational number are normalized in such
1145 a way that they have no factor in common and the denominator is positive.
1146
1147
1148 @node Elementary complex functions, Comparisons, Elementary rational functions, Functions on numbers
1149 @section Elementary complex functions
1150
1151 The class @code{cl_N} defines the following operation:
1152
1153 @table @code
1154 @item cl_N complex (const cl_R& a, const cl_R& b)
1155 @cindex @code{complex ()}
1156 Returns the complex number @code{a+bi}, that is, the complex number with
1157 real part @code{a} and imaginary part @code{b}.
1158 @end table
1159
1160 Each of the classes @code{cl_N}, @code{cl_R} defines the following operations:
1161
1162 @table @code
1163 @item cl_R realpart (const @var{type}& x)
1164 @cindex @code{realpart ()}
1165 Returns the real part of @code{x}.
1166
1167 @item cl_R imagpart (const @var{type}& x)
1168 @cindex @code{imagpart ()}
1169 Returns the imaginary part of @code{x}.
1170
1171 @item @var{type} conjugate (const @var{type}& x)
1172 @cindex @code{conjugate ()}
1173 Returns the complex conjugate of @code{x}.
1174 @end table
1175
1176 We have the relations
1177
1178 @itemize @asis
1179 @item
1180 @code{x = complex(realpart(x), imagpart(x))}
1181 @item
1182 @code{conjugate(x) = complex(realpart(x), -imagpart(x))}
1183 @end itemize
1184
1185
1186 @node Comparisons, Rounding functions, Elementary complex functions, Functions on numbers
1187 @section Comparisons
1188 @cindex comparison
1189
1190 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
1191 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1192 defines the following operations:
1193
1194 @table @code
1195 @item bool operator == (const @var{type}&, const @var{type}&)
1196 @cindex @code{operator == ()}
1197 @itemx bool operator != (const @var{type}&, const @var{type}&)
1198 @cindex @code{operator != ()}
1199 Comparison, as in C and C++.
1200
1201 @item uint32 cl_equal_hashcode (const @var{type}&)
1202 @cindex @code{cl_equal_hashcode ()}
1203 Returns a 32-bit hash code that is the same for any two numbers which are
1204 the same according to @code{==}. This hash code depends on the number's value,
1205 not its type or precision.
1206
1207 @item cl_boolean zerop (const @var{type}& x)
1208 @cindex @code{zerop ()}
1209 Compare against zero: @code{x == 0}
1210 @end table
1211
1212 Each of the classes @code{cl_R}, @code{cl_RA}, @code{cl_I},
1213 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1214 defines the following operations:
1215
1216 @table @code
1217 @item cl_signean cl_compare (const @var{type}& x, const @var{type}& y)
1218 @cindex @code{cl_compare ()}
1219 Compares @code{x} and @code{y}. Returns +1 if @code{x}>@code{y},
1220 -1 if @code{x}<@code{y}, 0 if @code{x}=@code{y}.
1221
1222 @item bool operator <= (const @var{type}&, const @var{type}&)
1223 @cindex @code{operator <= ()}
1224 @itemx bool operator < (const @var{type}&, const @var{type}&)
1225 @cindex @code{operator < ()}
1226 @itemx bool operator >= (const @var{type}&, const @var{type}&)
1227 @cindex @code{operator >= ()}
1228 @itemx bool operator > (const @var{type}&, const @var{type}&)
1229 @cindex @code{operator > ()}
1230 Comparison, as in C and C++.
1231
1232 @item cl_boolean minusp (const @var{type}& x)
1233 @cindex @code{minusp ()}
1234 Compare against zero: @code{x < 0}
1235
1236 @item cl_boolean plusp (const @var{type}& x)
1237 @cindex @code{plusp ()}
1238 Compare against zero: @code{x > 0}
1239
1240 @item @var{type} max (const @var{type}& x, const @var{type}& y)
1241 @cindex @code{max ()}
1242 Return the maximum of @code{x} and @code{y}.
1243
1244 @item @var{type} min (const @var{type}& x, const @var{type}& y)
1245 @cindex @code{min ()}
1246 Return the minimum of @code{x} and @code{y}.
1247 @end table
1248
1249 When a floating point number and a rational number are compared, the float
1250 is first converted to a rational number using the function @code{rational}.
1251 Since a floating point number actually represents an interval of real numbers,
1252 the result might be surprising.
1253 For example, @code{(cl_F)(cl_R)"1/3" == (cl_R)"1/3"} returns false because
1254 there is no floating point number whose value is exactly @code{1/3}.
1255
1256
1257 @node Rounding functions, Roots, Comparisons, Functions on numbers
1258 @section Rounding functions
1259 @cindex rounding
1260
1261 When a real number is to be converted to an integer, there is no ``best''
1262 rounding. The desired rounding function depends on the application.
1263 The Common Lisp and ISO Lisp standards offer four rounding functions:
1264
1265 @table @code
1266 @item floor(x)
1267 This is the largest integer <=@code{x}.
1268
1269 @item ceiling(x)
1270 This is the smallest integer >=@code{x}.
1271
1272 @item truncate(x)
1273 Among the integers between 0 and @code{x} (inclusive) the one nearest to @code{x}.
1274
1275 @item round(x)
1276 The integer nearest to @code{x}. If @code{x} is exactly halfway between two
1277 integers, choose the even one.
1278 @end table
1279
1280 These functions have different advantages:
1281
1282 @code{floor} and @code{ceiling} are translation invariant:
1283 @code{floor(x+n) = floor(x) + n} and @code{ceiling(x+n) = ceiling(x) + n}
1284 for every @code{x} and every integer @code{n}.
1285
1286 On the other hand, @code{truncate} and @code{round} are symmetric:
1287 @code{truncate(-x) = -truncate(x)} and @code{round(-x) = -round(x)},
1288 and furthermore @code{round} is unbiased: on the ``average'', it rounds
1289 down exactly as often as it rounds up.
1290
1291 The functions are related like this:
1292
1293 @itemize @asis
1294 @item
1295 @code{ceiling(m/n) = floor((m+n-1)/n) = floor((m-1)/n)+1}
1296 for rational numbers @code{m/n} (@code{m}, @code{n} integers, @code{n}>0), and
1297 @item
1298 @code{truncate(x) = sign(x) * floor(abs(x))}
1299 @end itemize
1300
1301 Each of the classes @code{cl_R}, @code{cl_RA},
1302 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1303 defines the following operations:
1304
1305 @table @code
1306 @item cl_I floor1 (const @var{type}& x)
1307 @cindex @code{floor1 ()}
1308 Returns @code{floor(x)}.
1309 @item cl_I ceiling1 (const @var{type}& x)
1310 @cindex @code{ceiling1 ()}
1311 Returns @code{ceiling(x)}.
1312 @item cl_I truncate1 (const @var{type}& x)
1313 @cindex @code{truncate1 ()}
1314 Returns @code{truncate(x)}.
1315 @item cl_I round1 (const @var{type}& x)
1316 @cindex @code{round1 ()}
1317 Returns @code{round(x)}.
1318 @end table
1319
1320 Each of the classes @code{cl_R}, @code{cl_RA}, @code{cl_I},
1321 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1322 defines the following operations:
1323
1324 @table @code
1325 @item cl_I floor1 (const @var{type}& x, const @var{type}& y)
1326 Returns @code{floor(x/y)}.
1327 @item cl_I ceiling1 (const @var{type}& x, const @var{type}& y)
1328 Returns @code{ceiling(x/y)}.
1329 @item cl_I truncate1 (const @var{type}& x, const @var{type}& y)
1330 Returns @code{truncate(x/y)}.
1331 @item cl_I round1 (const @var{type}& x, const @var{type}& y)
1332 Returns @code{round(x/y)}.
1333 @end table
1334
1335 These functions are called @samp{floor1}, @dots{} here instead of
1336 @samp{floor}, @dots{}, because on some systems, system dependent include
1337 files define @samp{floor} and @samp{ceiling} as macros.
1338
1339 In many cases, one needs both the quotient and the remainder of a division.
1340 It is more efficient to compute both at the same time than to perform
1341 two divisions, one for quotient and the next one for the remainder.
1342 The following functions therefore return a structure containing both
1343 the quotient and the remainder. The suffix @samp{2} indicates the number
1344 of ``return values''. The remainder is defined as follows:
1345
1346 @itemize @bullet
1347 @item
1348 for the computation of @code{quotient = floor(x)},
1349 @code{remainder = x - quotient},
1350 @item
1351 for the computation of @code{quotient = floor(x,y)},
1352 @code{remainder = x - quotient*y},
1353 @end itemize
1354
1355 and similarly for the other three operations.
1356
1357 Each of the classes @code{cl_R}, @code{cl_RA},
1358 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1359 defines the following operations:
1360
1361 @table @code
1362 @item struct @var{type}_div_t @{ cl_I quotient; @var{type} remainder; @};
1363 @itemx @var{type}_div_t floor2 (const @var{type}& x)
1364 @itemx @var{type}_div_t ceiling2 (const @var{type}& x)
1365 @itemx @var{type}_div_t truncate2 (const @var{type}& x)
1366 @itemx @var{type}_div_t round2 (const @var{type}& x)
1367 @end table
1368
1369 Each of the classes @code{cl_R}, @code{cl_RA}, @code{cl_I},
1370 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1371 defines the following operations:
1372
1373 @table @code
1374 @item struct @var{type}_div_t @{ cl_I quotient; @var{type} remainder; @};
1375 @itemx @var{type}_div_t floor2 (const @var{type}& x, const @var{type}& y)
1376 @cindex @code{floor2 ()}
1377 @itemx @var{type}_div_t ceiling2 (const @var{type}& x, const @var{type}& y)
1378 @cindex @code{ceiling2 ()}
1379 @itemx @var{type}_div_t truncate2 (const @var{type}& x, const @var{type}& y)
1380 @cindex @code{truncate2 ()}
1381 @itemx @var{type}_div_t round2 (const @var{type}& x, const @var{type}& y)
1382 @cindex @code{round2 ()}
1383 @end table
1384
1385 Sometimes, one wants the quotient as a floating-point number (of the
1386 same format as the argument, if the argument is a float) instead of as
1387 an integer. The prefix @samp{f} indicates this.
1388
1389 Each of the classes
1390 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1391 defines the following operations:
1392
1393 @table @code
1394 @item @var{type} ffloor (const @var{type}& x)
1395 @cindex @code{ffloor ()}
1396 @itemx @var{type} fceiling (const @var{type}& x)
1397 @cindex @code{fceiling ()}
1398 @itemx @var{type} ftruncate (const @var{type}& x)
1399 @cindex @code{ftruncate ()}
1400 @itemx @var{type} fround (const @var{type}& x)
1401 @cindex @code{fround ()}
1402 @end table
1403
1404 and similarly for class @code{cl_R}, but with return type @code{cl_F}.
1405
1406 The class @code{cl_R} defines the following operations:
1407
1408 @table @code
1409 @item cl_F ffloor (const @var{type}& x, const @var{type}& y)
1410 @itemx cl_F fceiling (const @var{type}& x, const @var{type}& y)
1411 @itemx cl_F ftruncate (const @var{type}& x, const @var{type}& y)
1412 @itemx cl_F fround (const @var{type}& x, const @var{type}& y)
1413 @end table
1414
1415 These functions also exist in versions which return both the quotient
1416 and the remainder. The suffix @samp{2} indicates this.
1417
1418 Each of the classes
1419 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1420 defines the following operations:
1421 @cindex @code{cl_F_fdiv_t}
1422 @cindex @code{cl_SF_fdiv_t}
1423 @cindex @code{cl_FF_fdiv_t}
1424 @cindex @code{cl_DF_fdiv_t}
1425 @cindex @code{cl_LF_fdiv_t}
1426
1427 @table @code
1428 @item struct @var{type}_fdiv_t @{ @var{type} quotient; @var{type} remainder; @};
1429 @itemx @var{type}_fdiv_t ffloor2 (const @var{type}& x)
1430 @cindex @code{ffloor2 ()}
1431 @itemx @var{type}_fdiv_t fceiling2 (const @var{type}& x)
1432 @cindex @code{fceiling2 ()}
1433 @itemx @var{type}_fdiv_t ftruncate2 (const @var{type}& x)
1434 @cindex @code{ftruncate2 ()}
1435 @itemx @var{type}_fdiv_t fround2 (const @var{type}& x)
1436 @cindex @code{fround2 ()}
1437 @end table
1438 and similarly for class @code{cl_R}, but with quotient type @code{cl_F}.
1439 @cindex @code{cl_R_fdiv_t}
1440
1441 The class @code{cl_R} defines the following operations:
1442
1443 @table @code
1444 @item struct @var{type}_fdiv_t @{ cl_F quotient; cl_R remainder; @};
1445 @itemx @var{type}_fdiv_t ffloor2 (const @var{type}& x, const @var{type}& y)
1446 @itemx @var{type}_fdiv_t fceiling2 (const @var{type}& x, const @var{type}& y)
1447 @itemx @var{type}_fdiv_t ftruncate2 (const @var{type}& x, const @var{type}& y)
1448 @itemx @var{type}_fdiv_t fround2 (const @var{type}& x, const @var{type}& y)
1449 @end table
1450
1451 Other applications need only the remainder of a division.
1452 The remainder of @samp{floor} and @samp{ffloor} is called @samp{mod}
1453 (abbreviation of ``modulo''). The remainder @samp{truncate} and
1454 @samp{ftruncate} is called @samp{rem} (abbreviation of ``remainder'').
1455
1456 @itemize @bullet
1457 @item
1458 @code{mod(x,y) = floor2(x,y).remainder = x - floor(x/y)*y}
1459 @item
1460 @code{rem(x,y) = truncate2(x,y).remainder = x - truncate(x/y)*y}
1461 @end itemize
1462
1463 If @code{x} and @code{y} are both >= 0, @code{mod(x,y) = rem(x,y) >= 0}.
1464 In general, @code{mod(x,y)} has the sign of @code{y} or is zero,
1465 and @code{rem(x,y)} has the sign of @code{x} or is zero.
1466
1467 The classes @code{cl_R}, @code{cl_I} define the following operations:
1468
1469 @table @code
1470 @item @var{type} mod (const @var{type}& x, const @var{type}& y)
1471 @cindex @code{mod ()}
1472 @itemx @var{type} rem (const @var{type}& x, const @var{type}& y)
1473 @cindex @code{rem ()}
1474 @end table
1475
1476
1477 @node Roots, Transcendental functions, Rounding functions, Functions on numbers
1478 @section Roots
1479
1480 Each of the classes @code{cl_R},
1481 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
1482 defines the following operation:
1483
1484 @table @code
1485 @item @var{type} sqrt (const @var{type}& x)
1486 @cindex @code{sqrt ()}
1487 @code{x} must be >= 0. This function returns the square root of @code{x},
1488 normalized to be >= 0. If @code{x} is the square of a rational number,
1489 @code{sqrt(x)} will be a rational number, else it will return a
1490 floating-point approximation.
1491 @end table
1492
1493 The classes @code{cl_RA}, @code{cl_I} define the following operation:
1494
1495 @table @code
1496 @item cl_boolean sqrtp (const @var{type}& x, @var{type}* root)
1497 @cindex @code{sqrtp ()}
1498 This tests whether @code{x} is a perfect square. If so, it returns true
1499 and the exact square root in @code{*root}, else it returns false.
1500 @end table
1501
1502 Furthermore, for integers, similarly:
1503
1504 @table @code
1505 @item cl_boolean isqrt (const @var{type}& x, @var{type}* root)
1506 @cindex @code{isqrt ()}
1507 @code{x} should be >= 0. This function sets @code{*root} to
1508 @code{floor(sqrt(x))} and returns the same value as @code{sqrtp}:
1509 the boolean value @code{(expt(*root,2) == x)}.
1510 @end table
1511
1512 For @code{n}th roots, the classes @code{cl_RA}, @code{cl_I}
1513 define the following operation:
1514
1515 @table @code
1516 @item cl_boolean rootp (const @var{type}& x, const cl_I& n, @var{type}* root)
1517 @cindex @code{rootp ()}
1518 @code{x} must be >= 0. @code{n} must be > 0.
1519 This tests whether @code{x} is an @code{n}th power of a rational number.
1520 If so, it returns true and the exact root in @code{*root}, else it returns
1521 false.
1522 @end table
1523
1524 The only square root function which accepts negative numbers is the one
1525 for class @code{cl_N}:
1526
1527 @table @code
1528 @item cl_N sqrt (const cl_N& z)
1529 @cindex @code{sqrt ()}
1530 Returns the square root of @code{z}, as defined by the formula
1531 @code{sqrt(z) = exp(log(z)/2)}. Conversion to a floating-point type
1532 or to a complex number are done if necessary. The range of the result is the
1533 right half plane @code{realpart(sqrt(z)) >= 0}
1534 including the positive imaginary axis and 0, but excluding
1535 the negative imaginary axis.
1536 The result is an exact number only if @code{z} is an exact number.
1537 @end table
1538
1539
1540 @node Transcendental functions, Functions on integers, Roots, Functions on numbers
1541 @section Transcendental functions
1542 @cindex transcendental functions
1543
1544 The transcendental functions return an exact result if the argument
1545 is exact and the result is exact as well. Otherwise they must return
1546 inexact numbers even if the argument is exact.
1547 For example, @code{cos(0) = 1} returns the rational number @code{1}.
1548
1549
1550 @menu
1551 * Exponential and logarithmic functions::  
1552 * Trigonometric functions::     
1553 * Hyperbolic functions::        
1554 * Euler gamma::                 
1555 * Riemann zeta::                
1556 @end menu
1557
1558 @node Exponential and logarithmic functions, Trigonometric functions, Transcendental functions, Transcendental functions
1559 @subsection Exponential and logarithmic functions
1560
1561 @table @code
1562 @item cl_R exp (const cl_R& x)
1563 @cindex @code{exp ()}
1564 @itemx cl_N exp (const cl_N& x)
1565 Returns the exponential function of @code{x}. This is @code{e^x} where
1566 @code{e} is the base of the natural logarithms. The range of the result
1567 is the entire complex plane excluding 0.
1568
1569 @item cl_R ln (const cl_R& x)
1570 @cindex @code{ln ()}
1571 @code{x} must be > 0. Returns the (natural) logarithm of x.
1572
1573 @item cl_N log (const cl_N& x)
1574 @cindex @code{log ()}
1575 Returns the (natural) logarithm of x. If @code{x} is real and positive,
1576 this is @code{ln(x)}. In general, @code{log(x) = log(abs(x)) + i*phase(x)}.
1577 The range of the result is the strip in the complex plane
1578 @code{-pi < imagpart(log(x)) <= pi}.
1579
1580 @item cl_R phase (const cl_N& x)
1581 @cindex @code{phase ()}
1582 Returns the angle part of @code{x} in its polar representation as a
1583 complex number. That is, @code{phase(x) = atan(realpart(x),imagpart(x))}.
1584 This is also the imaginary part of @code{log(x)}.
1585 The range of the result is the interval @code{-pi < phase(x) <= pi}.
1586 The result will be an exact number only if @code{zerop(x)} or
1587 if @code{x} is real and positive.
1588
1589 @item cl_R log (const cl_R& a, const cl_R& b)
1590 @code{a} and @code{b} must be > 0. Returns the logarithm of @code{a} with
1591 respect to base @code{b}. @code{log(a,b) = ln(a)/ln(b)}.
1592 The result can be exact only if @code{a = 1} or if @code{a} and @code{b}
1593 are both rational.
1594
1595 @item cl_N log (const cl_N& a, const cl_N& b)
1596 Returns the logarithm of @code{a} with respect to base @code{b}.
1597 @code{log(a,b) = log(a)/log(b)}.
1598
1599 @item cl_N expt (const cl_N& x, const cl_N& y)
1600 @cindex @code{expt ()}
1601 Exponentiation: Returns @code{x^y = exp(y*log(x))}.
1602 @end table
1603
1604 The constant e = exp(1) = 2.71828@dots{} is returned by the following functions:
1605
1606 @table @code
1607 @item cl_F cl_exp1 (cl_float_format_t f)
1608 @cindex @code{exp1 ()}
1609 Returns e as a float of format @code{f}.
1610
1611 @item cl_F cl_exp1 (const cl_F& y)
1612 Returns e in the float format of @code{y}.
1613
1614 @item cl_F cl_exp1 (void)
1615 Returns e as a float of format @code{cl_default_float_format}.
1616 @end table
1617
1618
1619 @node Trigonometric functions, Hyperbolic functions, Exponential and logarithmic functions, Transcendental functions
1620 @subsection Trigonometric functions
1621
1622 @table @code
1623 @item cl_R sin (const cl_R& x)
1624 @cindex @code{sin ()}
1625 Returns @code{sin(x)}. The range of the result is the interval
1626 @code{-1 <= sin(x) <= 1}.
1627
1628 @item cl_N sin (const cl_N& z)
1629 Returns @code{sin(z)}. The range of the result is the entire complex plane.
1630
1631 @item cl_R cos (const cl_R& x)
1632 @cindex @code{cos ()}
1633 Returns @code{cos(x)}. The range of the result is the interval
1634 @code{-1 <= cos(x) <= 1}.
1635
1636 @item cl_N cos (const cl_N& x)
1637 Returns @code{cos(z)}. The range of the result is the entire complex plane.
1638
1639 @item struct cl_cos_sin_t @{ cl_R cos; cl_R sin; @};
1640 @cindex @code{cl_cos_sin_t}
1641 @itemx cl_cos_sin_t cl_cos_sin (const cl_R& x)
1642 Returns both @code{sin(x)} and @code{cos(x)}. This is more efficient than
1643 @cindex @code{cl_cos_sin ()}
1644 computing them separately. The relation @code{cos^2 + sin^2 = 1} will
1645 hold only approximately.
1646
1647 @item cl_R tan (const cl_R& x)
1648 @cindex @code{tan ()}
1649 @itemx cl_N tan (const cl_N& x)
1650 Returns @code{tan(x) = sin(x)/cos(x)}.
1651
1652 @item cl_N cis (const cl_R& x)
1653 @cindex @code{cis ()}
1654 @itemx cl_N cis (const cl_N& x)
1655 Returns @code{exp(i*x)}. The name @samp{cis} means ``cos + i sin'', because
1656 @code{e^(i*x) = cos(x) + i*sin(x)}.
1657
1658 @cindex @code{asin}
1659 @cindex @code{asin ()}
1660 @item cl_N asin (const cl_N& z)
1661 Returns @code{arcsin(z)}. This is defined as
1662 @code{arcsin(z) = log(iz+sqrt(1-z^2))/i} and satisfies
1663 @code{arcsin(-z) = -arcsin(z)}.
1664 The range of the result is the strip in the complex domain
1665 @code{-pi/2 <= realpart(arcsin(z)) <= pi/2}, excluding the numbers
1666 with @code{realpart = -pi/2} and @code{imagpart < 0} and the numbers
1667 with @code{realpart = pi/2} and @code{imagpart > 0}.
1668 @ignore
1669 Proof: This follows from arcsin(z) = arsinh(iz)/i and the corresponding
1670 results for arsinh.
1671 @end ignore
1672
1673 @item cl_N acos (const cl_N& z)
1674 @cindex @code{acos ()}
1675 Returns @code{arccos(z)}. This is defined as
1676 @code{arccos(z) = pi/2 - arcsin(z) = log(z+i*sqrt(1-z^2))/i}
1677 @ignore
1678  Kahan's formula:
1679  @code{arccos(z) = 2*log(sqrt((1+z)/2)+i*sqrt((1-z)/2))/i}
1680 @end ignore
1681 and satisfies @code{arccos(-z) = pi - arccos(z)}.
1682 The range of the result is the strip in the complex domain
1683 @code{0 <= realpart(arcsin(z)) <= pi}, excluding the numbers
1684 with @code{realpart = 0} and @code{imagpart < 0} and the numbers
1685 with @code{realpart = pi} and @code{imagpart > 0}.
1686 @ignore
1687 Proof: This follows from the results about arcsin.
1688 @end ignore
1689
1690 @cindex @code{atan}
1691 @cindex @code{atan ()}
1692 @item cl_R atan (const cl_R& x, const cl_R& y)
1693 Returns the angle of the polar representation of the complex number
1694 @code{x+iy}. This is @code{atan(y/x)} if @code{x>0}. The range of
1695 the result is the interval @code{-pi < atan(x,y) <= pi}. The result will
1696 be an exact number only if @code{x > 0} and @code{y} is the exact @code{0}.
1697 WARNING: In Common Lisp, this function is called as @code{(atan y x)},
1698 with reversed order of arguments.
1699
1700 @item cl_R atan (const cl_R& x)
1701 Returns @code{arctan(x)}. This is the same as @code{atan(1,x)}. The range
1702 of the result is the interval @code{-pi/2 < atan(x) < pi/2}. The result
1703 will be an exact number only if @code{x} is the exact @code{0}.
1704
1705 @item cl_N atan (const cl_N& z)
1706 Returns @code{arctan(z)}. This is defined as
1707 @code{arctan(z) = (log(1+iz)-log(1-iz)) / 2i} and satisfies
1708 @code{arctan(-z) = -arctan(z)}. The range of the result is
1709 the strip in the complex domain
1710 @code{-pi/2 <= realpart(arctan(z)) <= pi/2}, excluding the numbers
1711 with @code{realpart = -pi/2} and @code{imagpart >= 0} and the numbers
1712 with @code{realpart = pi/2} and @code{imagpart <= 0}.
1713 @ignore
1714 Proof: arctan(z) = artanh(iz)/i, we know the range of the artanh function.
1715 @end ignore
1716
1717 @end table
1718
1719 @cindex pi
1720 @cindex Archimedes' constant
1721 Archimedes' constant pi = 3.14@dots{} is returned by the following functions:
1722
1723 @table @code
1724 @item cl_F cl_pi (cl_float_format_t f)
1725 @cindex @code{cl_pi ()}
1726 Returns pi as a float of format @code{f}.
1727
1728 @item cl_F cl_pi (const cl_F& y)
1729 Returns pi in the float format of @code{y}.
1730
1731 @item cl_F cl_pi (void)
1732 Returns pi as a float of format @code{cl_default_float_format}.
1733 @end table
1734
1735
1736 @node Hyperbolic functions, Euler gamma, Trigonometric functions, Transcendental functions
1737 @subsection Hyperbolic functions
1738
1739 @table @code
1740 @item cl_R sinh (const cl_R& x)
1741 @cindex @code{sinh ()}
1742 Returns @code{sinh(x)}.
1743
1744 @item cl_N sinh (const cl_N& z)
1745 Returns @code{sinh(z)}. The range of the result is the entire complex plane.
1746
1747 @item cl_R cosh (const cl_R& x)
1748 @cindex @code{cosh ()}
1749 Returns @code{cosh(x)}. The range of the result is the interval
1750 @code{cosh(x) >= 1}.
1751
1752 @item cl_N cosh (const cl_N& z)
1753 Returns @code{cosh(z)}. The range of the result is the entire complex plane.
1754
1755 @item struct cl_cosh_sinh_t @{ cl_R cosh; cl_R sinh; @};
1756 @cindex @code{cl_cosh_sinh_t}
1757 @itemx cl_cosh_sinh_t cl_cosh_sinh (const cl_R& x)
1758 @cindex @code{cl_cosh_sinh ()}
1759 Returns both @code{sinh(x)} and @code{cosh(x)}. This is more efficient than
1760 computing them separately. The relation @code{cosh^2 - sinh^2 = 1} will
1761 hold only approximately.
1762
1763 @item cl_R tanh (const cl_R& x)
1764 @cindex @code{tanh ()}
1765 @itemx cl_N tanh (const cl_N& x)
1766 Returns @code{tanh(x) = sinh(x)/cosh(x)}.
1767
1768 @item cl_N asinh (const cl_N& z)
1769 @cindex @code{asinh ()}
1770 Returns @code{arsinh(z)}. This is defined as
1771 @code{arsinh(z) = log(z+sqrt(1+z^2))} and satisfies
1772 @code{arsinh(-z) = -arsinh(z)}.
1773 @ignore
1774 Proof: Knowing the range of log, we know -pi < imagpart(arsinh(z)) <= pi.
1775 Actually, z+sqrt(1+z^2) can never be real and <0, so
1776 -pi < imagpart(arsinh(z)) < pi.
1777 We have (z+sqrt(1+z^2))*(-z+sqrt(1+(-z)^2)) = (1+z^2)-z^2 = 1, hence the
1778 logs of both factors sum up to 0 mod 2*pi*i, hence to 0.
1779 @end ignore
1780 The range of the result is the strip in the complex domain
1781 @code{-pi/2 <= imagpart(arsinh(z)) <= pi/2}, excluding the numbers
1782 with @code{imagpart = -pi/2} and @code{realpart > 0} and the numbers
1783 with @code{imagpart = pi/2} and @code{realpart < 0}.
1784 @ignore
1785 Proof: Write z = x+iy. Because of arsinh(-z) = -arsinh(z), we may assume
1786 that z is in Range(sqrt), that is, x>=0 and, if x=0, then y>=0.
1787 If x > 0, then Re(z+sqrt(1+z^2)) = x + Re(sqrt(1+z^2)) >= x > 0,
1788 so -pi/2 < imagpart(log(z+sqrt(1+z^2))) < pi/2.
1789 If x = 0 and y >= 0, arsinh(z) = log(i*y+sqrt(1-y^2)).
1790   If y <= 1, the realpart is 0 and the imagpart is >= 0 and <= pi/2.
1791   If y >= 1, the imagpart is pi/2 and the realpart is
1792              log(y+sqrt(y^2-1)) >= log(y) >= 0.
1793 @end ignore
1794 @ignore
1795 Moreover, if z is in Range(sqrt),
1796 log(sqrt(1+z^2)+z) = 2 artanh(z/(1+sqrt(1+z^2)))
1797 (for a proof, see file src/cl_C_asinh.cc).
1798 @end ignore
1799
1800 @item cl_N acosh (const cl_N& z)
1801 @cindex @code{acosh ()}
1802 Returns @code{arcosh(z)}. This is defined as
1803 @code{arcosh(z) = 2*log(sqrt((z+1)/2)+sqrt((z-1)/2))}.
1804 The range of the result is the half-strip in the complex domain
1805 @code{-pi < imagpart(arcosh(z)) <= pi, realpart(arcosh(z)) >= 0},
1806 excluding the numbers with @code{realpart = 0} and @code{-pi < imagpart < 0}.
1807 @ignore
1808 Proof: sqrt((z+1)/2) and sqrt((z-1)/2)) lie in Range(sqrt), hence does
1809 their sum, hence its log has an imagpart <= pi/2 and > -pi/2.
1810 If z is in Range(sqrt), we have
1811   sqrt(z+1)*sqrt(z-1) = sqrt(z^2-1)
1812   ==> (sqrt((z+1)/2)+sqrt((z-1)/2))^2 = (z+1)/2 + sqrt(z^2-1) + (z-1)/2
1813                                       = z + sqrt(z^2-1)
1814   ==> arcosh(z) = log(z+sqrt(z^2-1)) mod 2*pi*i
1815   and since the imagpart of both expressions is > -pi, <= pi
1816   ==> arcosh(z) = log(z+sqrt(z^2-1))
1817   To prove that the realpart of this is >= 0, write z = x+iy with x>=0,
1818   z^2-1 = u+iv with u = x^2-y^2-1, v = 2xy,
1819   sqrt(z^2-1) = p+iq with p = sqrt((sqrt(u^2+v^2)+u)/2) >= 0,
1820                           q = sqrt((sqrt(u^2+v^2)-u)/2) * sign(v),
1821   then |z+sqrt(z^2-1)|^2 = |x+iy + p+iq|^2
1822           = (x+p)^2 + (y+q)^2
1823           = x^2 + 2xp + p^2 + y^2 + 2yq + q^2
1824           >= x^2 + p^2 + y^2 + q^2                 (since x>=0, p>=0, yq>=0)
1825           = x^2 + y^2 + sqrt(u^2+v^2)
1826           >= x^2 + y^2 + |u|
1827           >= x^2 + y^2 - u
1828           = 1 + 2*y^2
1829           >= 1
1830   hence realpart(log(z+sqrt(z^2-1))) = log(|z+sqrt(z^2-1)|) >= 0.
1831   Equality holds only if y = 0 and u <= 0, i.e. 0 <= x < 1.
1832   In this case arcosh(z) = log(x+i*sqrt(1-x^2)) has imagpart >=0.
1833 Otherwise, -z is in Range(sqrt).
1834   If y != 0, sqrt((z+1)/2) = i^sign(y) * sqrt((-z-1)/2),
1835              sqrt((z-1)/2) = i^sign(y) * sqrt((-z+1)/2),
1836              hence arcosh(z) = sign(y)*pi/2*i + arcosh(-z),
1837              and this has realpart > 0.
1838   If y = 0 and -1<=x<=0, we still have sqrt(z+1)*sqrt(z-1) = sqrt(z^2-1),
1839              ==> arcosh(z) = log(z+sqrt(z^2-1)) = log(x+i*sqrt(1-x^2))
1840              has realpart = 0 and imagpart > 0.
1841   If y = 0 and x<=-1, however, sqrt(z+1)*sqrt(z-1) = - sqrt(z^2-1),
1842              ==> arcosh(z) = log(z-sqrt(z^2-1)) = pi*i + arcosh(-z).
1843              This has realpart >= 0 and imagpart = pi.
1844 @end ignore
1845
1846 @item cl_N atanh (const cl_N& z)
1847 @cindex @code{atanh ()}
1848 Returns @code{artanh(z)}. This is defined as
1849 @code{artanh(z) = (log(1+z)-log(1-z)) / 2} and satisfies
1850 @code{artanh(-z) = -artanh(z)}. The range of the result is
1851 the strip in the complex domain
1852 @code{-pi/2 <= imagpart(artanh(z)) <= pi/2}, excluding the numbers
1853 with @code{imagpart = -pi/2} and @code{realpart <= 0} and the numbers
1854 with @code{imagpart = pi/2} and @code{realpart >= 0}.
1855 @ignore
1856 Proof: Write z = x+iy. Examine
1857   imagpart(artanh(z)) = (atan(1+x,y) - atan(1-x,-y))/2.
1858   Case 1: y = 0.
1859           x > 1 ==> imagpart = -pi/2, realpart = 1/2 log((x+1)/(x-1)) > 0,
1860           x < -1 ==> imagpart = pi/2, realpart = 1/2 log((-x-1)/(-x+1)) < 0,
1861           |x| < 1 ==> imagpart = 0
1862   Case 2: y > 0.
1863           imagpart(artanh(z))
1864               = (atan(1+x,y) - atan(1-x,-y))/2
1865               = ((pi/2 - atan((1+x)/y)) - (-pi/2 - atan((1-x)/-y)))/2
1866               = (pi - atan((1+x)/y) - atan((1-x)/y))/2
1867               > (pi -     pi/2      -     pi/2     )/2 = 0
1868           and (1+x)/y > (1-x)/y
1869               ==> atan((1+x)/y) > atan((-1+x)/y) = - atan((1-x)/y)
1870               ==> imagpart < pi/2.
1871           Hence 0 < imagpart < pi/2.
1872   Case 3: y < 0.
1873           By artanh(z) = -artanh(-z) and case 2, -pi/2 < imagpart < 0.
1874 @end ignore
1875 @end table
1876
1877
1878 @node Euler gamma, Riemann zeta, Hyperbolic functions, Transcendental functions
1879 @subsection Euler gamma
1880 @cindex Euler's constant
1881
1882 Euler's constant C = 0.577@dots{} is returned by the following functions:
1883
1884 @table @code
1885 @item cl_F cl_eulerconst (cl_float_format_t f)
1886 @cindex @code{cl_eulerconst ()}
1887 Returns Euler's constant as a float of format @code{f}.
1888
1889 @item cl_F cl_eulerconst (const cl_F& y)
1890 Returns Euler's constant in the float format of @code{y}.
1891
1892 @item cl_F cl_eulerconst (void)
1893 Returns Euler's constant as a float of format @code{cl_default_float_format}.
1894 @end table
1895
1896 Catalan's constant G = 0.915@dots{} is returned by the following functions:
1897 @cindex Catalan's constant
1898
1899 @table @code
1900 @item cl_F cl_catalanconst (cl_float_format_t f)
1901 @cindex @code{cl_catalanconst ()}
1902 Returns Catalan's constant as a float of format @code{f}.
1903
1904 @item cl_F cl_catalanconst (const cl_F& y)
1905 Returns Catalan's constant in the float format of @code{y}.
1906
1907 @item cl_F cl_catalanconst (void)
1908 Returns Catalan's constant as a float of format @code{cl_default_float_format}.
1909 @end table
1910
1911
1912 @node Riemann zeta,  , Euler gamma, Transcendental functions
1913 @subsection Riemann zeta
1914 @cindex Riemann's zeta
1915
1916 Riemann's zeta function at an integral point @code{s>1} is returned by the
1917 following functions:
1918
1919 @table @code
1920 @item cl_F cl_zeta (int s, cl_float_format_t f)
1921 @cindex @code{cl_zeta ()}
1922 Returns Riemann's zeta function at @code{s} as a float of format @code{f}.
1923
1924 @item cl_F cl_zeta (int s, const cl_F& y)
1925 Returns Riemann's zeta function at @code{s} in the float format of @code{y}.
1926
1927 @item cl_F cl_zeta (int s)
1928 Returns Riemann's zeta function at @code{s} as a float of format
1929 @code{cl_default_float_format}.
1930 @end table
1931
1932
1933 @node Functions on integers, Functions on floating-point numbers, Transcendental functions, Functions on numbers
1934 @section Functions on integers
1935
1936 @menu
1937 * Logical functions::           
1938 * Number theoretic functions::  
1939 * Combinatorial functions::     
1940 @end menu
1941
1942 @node Logical functions, Number theoretic functions, Functions on integers, Functions on integers
1943 @subsection Logical functions
1944
1945 Integers, when viewed as in two's complement notation, can be thought as
1946 infinite bit strings where the bits' values eventually are constant.
1947 For example,
1948 @example
1949     17 = ......00010001
1950     -6 = ......11111010
1951 @end example
1952
1953 The logical operations view integers as such bit strings and operate
1954 on each of the bit positions in parallel.
1955
1956 @table @code
1957 @item cl_I lognot (const cl_I& x)
1958 @cindex @code{lognot ()}
1959 @itemx cl_I operator ~ (const cl_I& x)
1960 @cindex @code{operator ~ ()}
1961 Logical not, like @code{~x} in C. This is the same as @code{-1-x}.
1962
1963 @item cl_I logand (const cl_I& x, const cl_I& y)
1964 @cindex @code{logand ()}
1965 @itemx cl_I operator & (const cl_I& x, const cl_I& y)
1966 @cindex @code{operator & ()}
1967 Logical and, like @code{x & y} in C.
1968
1969 @item cl_I logior (const cl_I& x, const cl_I& y)
1970 @cindex @code{logior ()}
1971 @itemx cl_I operator | (const cl_I& x, const cl_I& y)
1972 @cindex @code{operator | ()}
1973 Logical (inclusive) or, like @code{x | y} in C.
1974
1975 @item cl_I logxor (const cl_I& x, const cl_I& y)
1976 @cindex @code{logxor ()}
1977 @itemx cl_I operator ^ (const cl_I& x, const cl_I& y)
1978 @cindex @code{operator ^ ()}
1979 Exclusive or, like @code{x ^ y} in C.
1980
1981 @item cl_I logeqv (const cl_I& x, const cl_I& y)
1982 @cindex @code{logeqv ()}
1983 Bitwise equivalence, like @code{~(x ^ y)} in C.
1984
1985 @item cl_I lognand (const cl_I& x, const cl_I& y)
1986 @cindex @code{lognand ()}
1987 Bitwise not and, like @code{~(x & y)} in C.
1988
1989 @item cl_I lognor (const cl_I& x, const cl_I& y)
1990 @cindex @code{lognor ()}
1991 Bitwise not or, like @code{~(x | y)} in C.
1992
1993 @item cl_I logandc1 (const cl_I& x, const cl_I& y)
1994 @cindex @code{logandc1 ()}
1995 Logical and, complementing the first argument, like @code{~x & y} in C.
1996
1997 @item cl_I logandc2 (const cl_I& x, const cl_I& y)
1998 @cindex @code{logandc2 ()}
1999 Logical and, complementing the second argument, like @code{x & ~y} in C.
2000
2001 @item cl_I logorc1 (const cl_I& x, const cl_I& y)
2002 @cindex @code{logorc1 ()}
2003 Logical or, complementing the first argument, like @code{~x | y} in C.
2004
2005 @item cl_I logorc2 (const cl_I& x, const cl_I& y)
2006 @cindex @code{logorc2 ()}
2007 Logical or, complementing the second argument, like @code{x | ~y} in C.
2008 @end table
2009
2010 These operations are all available though the function
2011 @table @code
2012 @item cl_I boole (cl_boole op, const cl_I& x, const cl_I& y)
2013 @cindex @code{boole ()}
2014 @end table
2015 where @code{op} must have one of the 16 values (each one stands for a function
2016 which combines two bits into one bit): @code{boole_clr}, @code{boole_set},
2017 @code{boole_1}, @code{boole_2}, @code{boole_c1}, @code{boole_c2},
2018 @code{boole_and}, @code{boole_ior}, @code{boole_xor}, @code{boole_eqv},
2019 @code{boole_nand}, @code{boole_nor}, @code{boole_andc1}, @code{boole_andc2},
2020 @code{boole_orc1}, @code{boole_orc2}.
2021 @cindex @code{boole_clr}
2022 @cindex @code{boole_set}
2023 @cindex @code{boole_1}
2024 @cindex @code{boole_2}
2025 @cindex @code{boole_c1}
2026 @cindex @code{boole_c2}
2027 @cindex @code{boole_and}
2028 @cindex @code{boole_xor}
2029 @cindex @code{boole_eqv}
2030 @cindex @code{boole_nand}
2031 @cindex @code{boole_nor}
2032 @cindex @code{boole_andc1}
2033 @cindex @code{boole_andc2}
2034 @cindex @code{boole_orc1}
2035 @cindex @code{boole_orc2}
2036
2037
2038 Other functions that view integers as bit strings:
2039
2040 @table @code
2041 @item cl_boolean logtest (const cl_I& x, const cl_I& y)
2042 @cindex @code{logtest ()}
2043 Returns true if some bit is set in both @code{x} and @code{y}, i.e. if
2044 @code{logand(x,y) != 0}.
2045
2046 @item cl_boolean logbitp (const cl_I& n, const cl_I& x)
2047 @cindex @code{logbitp ()}
2048 Returns true if the @code{n}th bit (from the right) of @code{x} is set.
2049 Bit 0 is the least significant bit.
2050
2051 @item uintL logcount (const cl_I& x)
2052 @cindex @code{logcount ()}
2053 Returns the number of one bits in @code{x}, if @code{x} >= 0, or
2054 the number of zero bits in @code{x}, if @code{x} < 0.
2055 @end table
2056
2057 The following functions operate on intervals of bits in integers. 
2058 The type
2059 @example
2060 struct cl_byte @{ uintL size; uintL position; @};
2061 @end example
2062 @cindex @code{cl_byte}
2063 represents the bit interval containing the bits
2064 @code{position}@dots{}@code{position+size-1} of an integer.
2065 The constructor @code{cl_byte(size,position)} constructs a @code{cl_byte}.
2066
2067 @table @code
2068 @item cl_I ldb (const cl_I& n, const cl_byte& b)
2069 @cindex @code{ldb ()}
2070 extracts the bits of @code{n} described by the bit interval @code{b}
2071 and returns them as a nonnegative integer with @code{b.size} bits.
2072
2073 @item cl_boolean ldb_test (const cl_I& n, const cl_byte& b)
2074 @cindex @code{ldb_test ()}
2075 Returns true if some bit described by the bit interval @code{b} is set in
2076 @code{n}.
2077
2078 @item cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
2079 @cindex @code{dpb ()}
2080 Returns @code{n}, with the bits described by the bit interval @code{b}
2081 replaced by @code{newbyte}. Only the lowest @code{b.size} bits of
2082 @code{newbyte} are relevant.
2083 @end table
2084
2085 The functions @code{ldb} and @code{dpb} implicitly shift. The following
2086 functions are their counterparts without shifting:
2087
2088 @table @code
2089 @item cl_I mask_field (const cl_I& n, const cl_byte& b)
2090 @cindex @code{mask_field ()}
2091 returns an integer with the bits described by the bit interval @code{b}
2092 copied from the corresponding bits in @code{n}, the other bits zero.
2093
2094 @item cl_I deposit_field (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
2095 @cindex @code{deposit_field ()}
2096 returns an integer where the bits described by the bit interval @code{b}
2097 come from @code{newbyte} and the other bits come from @code{n}.
2098 @end table
2099
2100 The following relations hold:
2101
2102 @itemize @asis
2103 @item
2104 @code{ldb (n, b) = mask_field(n, b) >> b.position},
2105 @item
2106 @code{dpb (newbyte, n, b) = deposit_field (newbyte << b.position, n, b)},
2107 @item
2108 @code{deposit_field(newbyte,n,b) = n ^ mask_field(n,b) ^ mask_field(new_byte,b)}.
2109 @end itemize
2110
2111 The following operations on integers as bit strings are efficient shortcuts
2112 for common arithmetic operations:
2113
2114 @table @code
2115 @item cl_boolean oddp (const cl_I& x)
2116 @cindex @code{oddp ()}
2117 Returns true if the least significant bit of @code{x} is 1. Equivalent to
2118 @code{mod(x,2) != 0}.
2119
2120 @item cl_boolean evenp (const cl_I& x)
2121 @cindex @code{evenp ()}
2122 Returns true if the least significant bit of @code{x} is 0. Equivalent to
2123 @code{mod(x,2) == 0}.
2124
2125 @item cl_I operator << (const cl_I& x, const cl_I& n)
2126 @cindex @code{operator << ()}
2127 Shifts @code{x} by @code{n} bits to the left. @code{n} should be >=0.
2128 Equivalent to @code{x * expt(2,n)}.
2129
2130 @item cl_I operator >> (const cl_I& x, const cl_I& n)
2131 @cindex @code{operator >> ()}
2132 Shifts @code{x} by @code{n} bits to the right. @code{n} should be >=0.
2133 Bits shifted out to the right are thrown away.
2134 Equivalent to @code{floor(x / expt(2,n))}.
2135
2136 @item cl_I ash (const cl_I& x, const cl_I& y)
2137 @cindex @code{ash ()}
2138 Shifts @code{x} by @code{y} bits to the left (if @code{y}>=0) or
2139 by @code{-y} bits to the right (if @code{y}<=0). In other words, this
2140 returns @code{floor(x * expt(2,y))}.
2141
2142 @item uintL integer_length (const cl_I& x)
2143 @cindex @code{integer_length ()}
2144 Returns the number of bits (excluding the sign bit) needed to represent @code{x}
2145 in two's complement notation. This is the smallest n >= 0 such that
2146 -2^n <= x < 2^n. If x > 0, this is the unique n > 0 such that
2147 2^(n-1) <= x < 2^n.
2148
2149 @item uintL ord2 (const cl_I& x)
2150 @cindex @code{ord2 ()}
2151 @code{x} must be non-zero. This function returns the number of 0 bits at the
2152 right of @code{x} in two's complement notation. This is the largest n >= 0
2153 such that 2^n divides @code{x}.
2154
2155 @item uintL power2p (const cl_I& x)
2156 @cindex @code{power2p ()}
2157 @code{x} must be > 0. This function checks whether @code{x} is a power of 2.
2158 If @code{x} = 2^(n-1), it returns n. Else it returns 0.
2159 (See also the function @code{logp}.)
2160 @end table
2161
2162
2163 @node Number theoretic functions, Combinatorial functions, Logical functions, Functions on integers
2164 @subsection Number theoretic functions
2165
2166 @table @code
2167 @item uint32 gcd (uint32 a, uint32 b)
2168 @cindex @code{gcd ()}
2169 @itemx cl_I gcd (const cl_I& a, const cl_I& b)
2170 This function returns the greatest common divisor of @code{a} and @code{b},
2171 normalized to be >= 0.
2172
2173 @item cl_I xgcd (const cl_I& a, const cl_I& b, cl_I* u, cl_I* v)
2174 @cindex @code{xgcd ()}
2175 This function (``extended gcd'') returns the greatest common divisor @code{g} of
2176 @code{a} and @code{b} and at the same time the representation of @code{g}
2177 as an integral linear combination of @code{a} and @code{b}:
2178 @code{u} and @code{v} with @code{u*a+v*b = g}, @code{g} >= 0.
2179 @code{u} and @code{v} will be normalized to be of smallest possible absolute
2180 value, in the following sense: If @code{a} and @code{b} are non-zero, and
2181 @code{abs(a) != abs(b)}, @code{u} and @code{v} will satisfy the inequalities
2182 @code{abs(u) <= abs(b)/(2*g)}, @code{abs(v) <= abs(a)/(2*g)}.
2183
2184 @item cl_I lcm (const cl_I& a, const cl_I& b)
2185 @cindex @code{lcm ()}
2186 This function returns the least common multiple of @code{a} and @code{b},
2187 normalized to be >= 0.
2188
2189 @item cl_boolean logp (const cl_I& a, const cl_I& b, cl_RA* l)
2190 @cindex @code{logp ()}
2191 @itemx cl_boolean logp (const cl_RA& a, const cl_RA& b, cl_RA* l)
2192 @code{a} must be > 0. @code{b} must be >0 and != 1. If log(a,b) is
2193 rational number, this function returns true and sets *l = log(a,b), else
2194 it returns false.
2195 @end table
2196
2197
2198 @node Combinatorial functions,  , Number theoretic functions, Functions on integers
2199 @subsection Combinatorial functions
2200
2201 @table @code
2202 @item cl_I factorial (uintL n)
2203 @cindex @code{factorial ()}
2204 @code{n} must be a small integer >= 0. This function returns the factorial
2205 @code{n}! = @code{1*2*@dots{}*n}.
2206
2207 @item cl_I doublefactorial (uintL n)
2208 @cindex @code{doublefactorial ()}
2209 @code{n} must be a small integer >= 0. This function returns the 
2210 doublefactorial @code{n}!! = @code{1*3*@dots{}*n} or 
2211 @code{n}!! = @code{2*4*@dots{}*n}, respectively.
2212
2213 @item cl_I binomial (uintL n, uintL k)
2214 @cindex @code{binomial ()}
2215 @code{n} and @code{k} must be small integers >= 0. This function returns the
2216 binomial coefficient
2217 @tex
2218 ${n \choose k} = {n! \over n! (n-k)!}$
2219 @end tex
2220 @ifinfo
2221 (@code{n} choose @code{k}) = @code{n}! / @code{k}! @code{(n-k)}!
2222 @end ifinfo
2223 for 0 <= k <= n, 0 else.
2224 @end table
2225
2226
2227 @node Functions on floating-point numbers, Conversion functions, Functions on integers, Functions on numbers
2228 @section Functions on floating-point numbers
2229
2230 Recall that a floating-point number consists of a sign @code{s}, an
2231 exponent @code{e} and a mantissa @code{m}. The value of the number is
2232 @code{(-1)^s * 2^e * m}.
2233
2234 Each of the classes
2235 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
2236 defines the following operations.
2237
2238 @table @code
2239 @item @var{type} scale_float (const @var{type}& x, sintL delta)
2240 @cindex @code{scale_float ()}
2241 @itemx @var{type} scale_float (const @var{type}& x, const cl_I& delta)
2242 Returns @code{x*2^delta}. This is more efficient than an explicit multiplication
2243 because it copies @code{x} and modifies the exponent.
2244 @end table
2245
2246 The following functions provide an abstract interface to the underlying
2247 representation of floating-point numbers.
2248
2249 @table @code
2250 @item sintL float_exponent (const @var{type}& x)
2251 @cindex @code{float_exponent ()}
2252 Returns the exponent @code{e} of @code{x}.
2253 For @code{x = 0.0}, this is 0. For @code{x} non-zero, this is the unique
2254 integer with @code{2^(e-1) <= abs(x) < 2^e}.
2255
2256 @item sintL float_radix (const @var{type}& x)
2257 @cindex @code{float_radix ()}
2258 Returns the base of the floating-point representation. This is always @code{2}.
2259
2260 @item @var{type} float_sign (const @var{type}& x)
2261 @cindex @code{float_sign ()}
2262 Returns the sign @code{s} of @code{x} as a float. The value is 1 for
2263 @code{x} >= 0, -1 for @code{x} < 0.
2264
2265 @item uintL float_digits (const @var{type}& x)
2266 @cindex @code{float_digits ()}
2267 Returns the number of mantissa bits in the floating-point representation
2268 of @code{x}, including the hidden bit. The value only depends on the type
2269 of @code{x}, not on its value.
2270
2271 @item uintL float_precision (const @var{type}& x)
2272 @cindex @code{float_precision ()}
2273 Returns the number of significant mantissa bits in the floating-point
2274 representation of @code{x}. Since denormalized numbers are not supported,
2275 this is the same as @code{float_digits(x)} if @code{x} is non-zero, and
2276 0 if @code{x} = 0.
2277 @end table
2278
2279 The complete internal representation of a float is encoded in the type
2280 @cindex @code{cl_decoded_float}
2281 @cindex @code{cl_decoded_sfloat}
2282 @cindex @code{cl_decoded_ffloat}
2283 @cindex @code{cl_decoded_dfloat}
2284 @cindex @code{cl_decoded_lfloat}
2285 @code{cl_decoded_float} (or @code{cl_decoded_sfloat}, @code{cl_decoded_ffloat},
2286 @code{cl_decoded_dfloat}, @code{cl_decoded_lfloat}, respectively), defined by
2287 @example
2288 struct cl_decoded_@var{type}float @{
2289         @var{type} mantissa; cl_I exponent; @var{type} sign;
2290 @};
2291 @end example
2292
2293 and returned by the function
2294
2295 @table @code
2296 @item cl_decoded_@var{type}float decode_float (const @var{type}& x)
2297 @cindex @code{decode_float ()}
2298 For @code{x} non-zero, this returns @code{(-1)^s}, @code{e}, @code{m} with
2299 @code{x = (-1)^s * 2^e * m} and @code{0.5 <= m < 1.0}. For @code{x} = 0,
2300 it returns @code{(-1)^s}=1, @code{e}=0, @code{m}=0.
2301 @code{e} is the same as returned by the function @code{float_exponent}.
2302 @end table
2303
2304 A complete decoding in terms of integers is provided as type
2305 @example
2306 @cindex @code{cl_idecoded_float}
2307 struct cl_idecoded_float @{
2308         cl_I mantissa; cl_I exponent; cl_I sign;
2309 @};
2310 @end example
2311 by the following function:
2312
2313 @table @code
2314 @item cl_idecoded_float integer_decode_float (const @var{type}& x)
2315 @cindex @code{integer_decode_float ()}
2316 For @code{x} non-zero, this returns @code{(-1)^s}, @code{e}, @code{m} with
2317 @code{x = (-1)^s * 2^e * m} and @code{m} an integer with @code{float_digits(x)}
2318 bits. For @code{x} = 0, it returns @code{(-1)^s}=1, @code{e}=0, @code{m}=0.
2319 WARNING: The exponent @code{e} is not the same as the one returned by
2320 the functions @code{decode_float} and @code{float_exponent}.
2321 @end table
2322
2323 Some other function, implemented only for class @code{cl_F}:
2324
2325 @table @code
2326 @item cl_F float_sign (const cl_F& x, const cl_F& y)
2327 @cindex @code{float_sign ()}
2328 This returns a floating point number whose precision and absolute value
2329 is that of @code{y} and whose sign is that of @code{x}. If @code{x} is
2330 zero, it is treated as positive. Same for @code{y}.
2331 @end table
2332
2333
2334 @node Conversion functions, Random number generators, Functions on floating-point numbers, Functions on numbers
2335 @section Conversion functions
2336 @cindex conversion
2337
2338 @menu
2339 * Conversion to floating-point numbers::  
2340 * Conversion to rational numbers::  
2341 @end menu
2342
2343 @node Conversion to floating-point numbers, Conversion to rational numbers, Conversion functions, Conversion functions
2344 @subsection Conversion to floating-point numbers
2345
2346 The type @code{cl_float_format_t} describes a floating-point format.
2347 @cindex @code{cl_float_format_t}
2348
2349 @table @code
2350 @item cl_float_format_t cl_float_format (uintL n)
2351 @cindex @code{cl_float_format ()}
2352 Returns the smallest float format which guarantees at least @code{n}
2353 decimal digits in the mantissa (after the decimal point).
2354
2355 @item cl_float_format_t cl_float_format (const cl_F& x)
2356 Returns the floating point format of @code{x}.
2357
2358 @item cl_float_format_t cl_default_float_format
2359 @cindex @code{cl_default_float_format}
2360 Global variable: the default float format used when converting rational numbers
2361 to floats.
2362 @end table
2363
2364 To convert a real number to a float, each of the types
2365 @code{cl_R}, @code{cl_F}, @code{cl_I}, @code{cl_RA},
2366 @code{int}, @code{unsigned int}, @code{float}, @code{double}
2367 defines the following operations:
2368
2369 @table @code
2370 @item cl_F cl_float (const @var{type}&x, cl_float_format_t f)
2371 @cindex @code{cl_float ()}
2372 Returns @code{x} as a float of format @code{f}.
2373 @item cl_F cl_float (const @var{type}&x, const cl_F& y)
2374 Returns @code{x} in the float format of @code{y}.
2375 @item cl_F cl_float (const @var{type}&x)
2376 Returns @code{x} as a float of format @code{cl_default_float_format} if
2377 it is an exact number, or @code{x} itself if it is already a float.
2378 @end table
2379
2380 Of course, converting a number to a float can lose precision.
2381
2382 Every floating-point format has some characteristic numbers:
2383
2384 @table @code
2385 @item cl_F most_positive_float (cl_float_format_t f)
2386 @cindex @code{most_positive_float ()}
2387 Returns the largest (most positive) floating point number in float format @code{f}.
2388
2389 @item cl_F most_negative_float (cl_float_format_t f)
2390 @cindex @code{most_negative_float ()}
2391 Returns the smallest (most negative) floating point number in float format @code{f}.
2392
2393 @item cl_F least_positive_float (cl_float_format_t f)
2394 @cindex @code{least_positive_float ()}
2395 Returns the least positive floating point number (i.e. > 0 but closest to 0)
2396 in float format @code{f}.
2397
2398 @item cl_F least_negative_float (cl_float_format_t f)
2399 @cindex @code{least_negative_float ()}
2400 Returns the least negative floating point number (i.e. < 0 but closest to 0)
2401 in float format @code{f}.
2402
2403 @item cl_F float_epsilon (cl_float_format_t f)
2404 @cindex @code{float_epsilon ()}
2405 Returns the smallest floating point number e > 0 such that @code{1+e != 1}.
2406
2407 @item cl_F float_negative_epsilon (cl_float_format_t f)
2408 @cindex @code{float_negative_epsilon ()}
2409 Returns the smallest floating point number e > 0 such that @code{1-e != 1}.
2410 @end table
2411
2412
2413 @node Conversion to rational numbers,  , Conversion to floating-point numbers, Conversion functions
2414 @subsection Conversion to rational numbers
2415
2416 Each of the classes @code{cl_R}, @code{cl_RA}, @code{cl_F}
2417 defines the following operation:
2418
2419 @table @code
2420 @item cl_RA rational (const @var{type}& x)
2421 @cindex @code{rational ()}
2422 Returns the value of @code{x} as an exact number. If @code{x} is already
2423 an exact number, this is @code{x}. If @code{x} is a floating-point number,
2424 the value is a rational number whose denominator is a power of 2.
2425 @end table
2426
2427 In order to convert back, say, @code{(cl_F)(cl_R)"1/3"} to @code{1/3}, there is
2428 the function
2429
2430 @table @code
2431 @item cl_RA rationalize (const cl_R& x)
2432 @cindex @code{rationalize ()}
2433 If @code{x} is a floating-point number, it actually represents an interval
2434 of real numbers, and this function returns the rational number with
2435 smallest denominator (and smallest numerator, in magnitude)
2436 which lies in this interval.
2437 If @code{x} is already an exact number, this function returns @code{x}.
2438 @end table
2439
2440 If @code{x} is any float, one has
2441
2442 @itemize @asis
2443 @item
2444 @code{cl_float(rational(x),x) = x}
2445 @item
2446 @code{cl_float(rationalize(x),x) = x}
2447 @end itemize
2448
2449
2450 @node Random number generators, Obfuscating operators, Conversion functions, Functions on numbers
2451 @section Random number generators
2452
2453
2454 A random generator is a machine which produces (pseudo-)random numbers.
2455 The include file @code{<cl_random.h>} defines a class @code{cl_random_state}
2456 which contains the state of a random generator. If you make a copy
2457 of the random number generator, the original one and the copy will produce
2458 the same sequence of random numbers.
2459
2460 The following functions return (pseudo-)random numbers in different formats.
2461 Calling one of these modifies the state of the random number generator in
2462 a complicated but deterministic way.
2463
2464 The global variable
2465 @cindex @code{cl_random_state}
2466 @cindex @code{cl_default_random_state}
2467 @example
2468 cl_random_state cl_default_random_state
2469 @end example
2470 contains a default random number generator. It is used when the functions
2471 below are called without @code{cl_random_state} argument.
2472
2473 @table @code
2474 @item uint32 random32 (cl_random_state& randomstate)
2475 @itemx uint32 random32 ()
2476 @cindex @code{random32 ()}
2477 Returns a random unsigned 32-bit number. All bits are equally random.
2478
2479 @item cl_I random_I (cl_random_state& randomstate, const cl_I& n)
2480 @itemx cl_I random_I (const cl_I& n)
2481 @cindex @code{random_I ()}
2482 @code{n} must be an integer > 0. This function returns a random integer @code{x}
2483 in the range @code{0 <= x < n}.
2484
2485 @item cl_F random_F (cl_random_state& randomstate, const cl_F& n)
2486 @itemx cl_F random_F (const cl_F& n)
2487 @cindex @code{random_F ()}
2488 @code{n} must be a float > 0. This function returns a random floating-point
2489 number of the same format as @code{n} in the range @code{0 <= x < n}.
2490
2491 @item cl_R random_R (cl_random_state& randomstate, const cl_R& n)
2492 @itemx cl_R random_R (const cl_R& n)
2493 @cindex @code{random_R ()}
2494 Behaves like @code{random_I} if @code{n} is an integer and like @code{random_F}
2495 if @code{n} is a float.
2496 @end table
2497
2498
2499 @node Obfuscating operators,  , Random number generators, Functions on numbers
2500 @section Obfuscating operators
2501 @cindex modifying operators
2502
2503 The modifying C/C++ operators @code{+=}, @code{-=}, @code{*=}, @code{/=},
2504 @code{&=}, @code{|=}, @code{^=}, @code{<<=}, @code{>>=}
2505 are not available by default because their
2506 use tends to make programs unreadable. It is trivial to get away without
2507 them. However, if you feel that you absolutely need these operators
2508 to get happy, then add
2509 @example
2510 #define WANT_OBFUSCATING_OPERATORS
2511 @end example
2512 @cindex @code{WANT_OBFUSCATING_OPERATORS}
2513 to the beginning of your source files, before the inclusion of any CLN
2514 include files. This flag will enable the following operators:
2515
2516 For the classes @code{cl_N}, @code{cl_R}, @code{cl_RA},
2517 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}:
2518
2519 @table @code
2520 @item @var{type}& operator += (@var{type}&, const @var{type}&)
2521 @cindex @code{operator += ()}
2522 @itemx @var{type}& operator -= (@var{type}&, const @var{type}&)
2523 @cindex @code{operator -= ()}
2524 @itemx @var{type}& operator *= (@var{type}&, const @var{type}&)
2525 @cindex @code{operator *= ()}
2526 @itemx @var{type}& operator /= (@var{type}&, const @var{type}&)
2527 @cindex @code{operator /= ()}
2528 @end table
2529
2530 For the class @code{cl_I}:
2531
2532 @table @code
2533 @item @var{type}& operator += (@var{type}&, const @var{type}&)
2534 @itemx @var{type}& operator -= (@var{type}&, const @var{type}&)
2535 @itemx @var{type}& operator *= (@var{type}&, const @var{type}&)
2536 @itemx @var{type}& operator &= (@var{type}&, const @var{type}&)
2537 @cindex @code{operator &= ()}
2538 @itemx @var{type}& operator |= (@var{type}&, const @var{type}&)
2539 @cindex @code{operator |= ()}
2540 @itemx @var{type}& operator ^= (@var{type}&, const @var{type}&)
2541 @cindex @code{operator ^= ()}
2542 @itemx @var{type}& operator <<= (@var{type}&, const @var{type}&)
2543 @cindex @code{operator <<= ()}
2544 @itemx @var{type}& operator >>= (@var{type}&, const @var{type}&)
2545 @cindex @code{operator >>= ()}
2546 @end table
2547
2548 For the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
2549 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}:
2550
2551 @table @code
2552 @item @var{type}& operator ++ (@var{type}& x)
2553 @cindex @code{operator ++ ()}
2554 The prefix operator @code{++x}.
2555
2556 @item void operator ++ (@var{type}& x, int)
2557 The postfix operator @code{x++}.
2558
2559 @item @var{type}& operator -- (@var{type}& x)
2560 @cindex @code{operator -- ()}
2561 The prefix operator @code{--x}.
2562
2563 @item void operator -- (@var{type}& x, int)
2564 The postfix operator @code{x--}.
2565 @end table
2566
2567 Note that by using these obfuscating operators, you wouldn't gain efficiency:
2568 In CLN @samp{x += y;} is exactly the same as  @samp{x = x+y;}, not more
2569 efficient.
2570
2571
2572 @node Input/Output, Rings, Functions on numbers, Top
2573 @chapter Input/Output
2574 @cindex Input/Output
2575
2576 @menu
2577 * Internal and printed representation::  
2578 * Input functions::             
2579 * Output functions::            
2580 @end menu
2581
2582 @node Internal and printed representation, Input functions, Input/Output, Input/Output
2583 @section Internal and printed representation
2584 @cindex representation
2585
2586 All computations deal with the internal representations of the numbers.
2587
2588 Every number has an external representation as a sequence of ASCII characters.
2589 Several external representations may denote the same number, for example,
2590 "20.0" and "20.000".
2591
2592 Converting an internal to an external representation is called ``printing'',
2593 @cindex printing
2594 converting an external to an internal representation is called ``reading''.
2595 @cindex reading
2596 In CLN, it is always true that conversion of an internal to an external
2597 representation and then back to an internal representation will yield the
2598 same internal representation. Symbolically: @code{read(print(x)) == x}.
2599 This is called ``print-read consistency''. 
2600
2601 Different types of numbers have different external representations (case
2602 is insignificant):
2603
2604 @table @asis
2605 @item Integers
2606 External representation: @var{sign}@{@var{digit}@}+. The reader also accepts the
2607 Common Lisp syntaxes @var{sign}@{@var{digit}@}+@code{.} with a trailing dot
2608 for decimal integers
2609 and the @code{#@var{n}R}, @code{#b}, @code{#o}, @code{#x} prefixes.
2610
2611 @item Rational numbers
2612 External representation: @var{sign}@{@var{digit}@}+@code{/}@{@var{digit}@}+.
2613 The @code{#@var{n}R}, @code{#b}, @code{#o}, @code{#x} prefixes are allowed
2614 here as well.
2615
2616 @item Floating-point numbers
2617 External representation: @var{sign}@{@var{digit}@}*@var{exponent} or
2618 @var{sign}@{@var{digit}@}*@code{.}@{@var{digit}@}*@var{exponent} or
2619 @var{sign}@{@var{digit}@}*@code{.}@{@var{digit}@}+. A precision specifier
2620 of the form _@var{prec} may be appended. There must be at least
2621 one digit in the non-exponent part. The exponent has the syntax
2622 @var{expmarker} @var{expsign} @{@var{digit}@}+.
2623 The exponent marker is
2624
2625 @itemize @asis
2626 @item
2627 @samp{s} for short-floats,
2628 @item
2629 @samp{f} for single-floats,
2630 @item
2631 @samp{d} for double-floats,
2632 @item
2633 @samp{L} for long-floats,
2634 @end itemize
2635
2636 or @samp{e}, which denotes a default float format. The precision specifying
2637 suffix has the syntax _@var{prec} where @var{prec} denotes the number of
2638 valid mantissa digits (in decimal, excluding leading zeroes), cf. also
2639 function @samp{cl_float_format}.
2640
2641 @item Complex numbers
2642 External representation:
2643 @itemize @asis
2644 @item
2645 In algebraic notation: @code{@var{realpart}+@var{imagpart}i}. Of course,
2646 if @var{imagpart} is negative, its printed representation begins with
2647 a @samp{-}, and the @samp{+} between @var{realpart} and @var{imagpart}
2648 may be omitted. Note that this notation cannot be used when the @var{imagpart}
2649 is rational and the rational number's base is >18, because the @samp{i}
2650 is then read as a digit.
2651 @item
2652 In Common Lisp notation: @code{#C(@var{realpart} @var{imagpart})}.
2653 @end itemize
2654 @end table
2655
2656
2657 @node Input functions, Output functions, Internal and printed representation, Input/Output
2658 @section Input functions
2659
2660 Including @code{<cl_io.h>} defines a type @code{cl_istream}, which is
2661 the type of the first argument to all input functions. Unless you build
2662 and use CLN with the macro CL_IO_STDIO being defined, @code{cl_istream}
2663 is the same as @code{istream&}.
2664
2665 The variable
2666 @itemize @asis
2667 @item
2668 @code{cl_istream cl_stdin}
2669 @end itemize
2670 contains the standard input stream.
2671
2672 These are the simple input functions:
2673
2674 @table @code
2675 @item int freadchar (cl_istream stream)
2676 Reads a character from @code{stream}. Returns @code{cl_EOF} (not a @samp{char}!)
2677 if the end of stream was encountered or an error occurred.
2678
2679 @item int funreadchar (cl_istream stream, int c)
2680 Puts back @code{c} onto @code{stream}. @code{c} must be the result of the
2681 last @code{freadchar} operation on @code{stream}.
2682 @end table
2683
2684 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
2685 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
2686 defines, in @code{<cl_@var{type}_io.h>}, the following input function:
2687
2688 @table @code
2689 @item cl_istream operator>> (cl_istream stream, @var{type}& result)
2690 Reads a number from @code{stream} and stores it in the @code{result}.
2691 @end table
2692
2693 The most flexible input functions, defined in @code{<cl_@var{type}_io.h>},
2694 are the following:
2695
2696 @table @code
2697 @item cl_N read_complex (cl_istream stream, const cl_read_flags& flags)
2698 @itemx cl_R read_real (cl_istream stream, const cl_read_flags& flags)
2699 @itemx cl_F read_float (cl_istream stream, const cl_read_flags& flags)
2700 @itemx cl_RA read_rational (cl_istream stream, const cl_read_flags& flags)
2701 @itemx cl_I read_integer (cl_istream stream, const cl_read_flags& flags)
2702 Reads a number from @code{stream}. The @code{flags} are parameters which
2703 affect the input syntax. Whitespace before the number is silently skipped.
2704
2705 @item cl_N read_complex (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse)
2706 @itemx cl_R read_real (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse)
2707 @itemx cl_F read_float (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse)
2708 @itemx cl_RA read_rational (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse)
2709 @itemx cl_I read_integer (const cl_read_flags& flags, const char * string, const char * string_limit, const char * * end_of_parse)
2710 Reads a number from a string in memory. The @code{flags} are parameters which
2711 affect the input syntax. The string starts at @code{string} and ends at
2712 @code{string_limit} (exclusive limit). @code{string_limit} may also be
2713 @code{NULL}, denoting the entire string, i.e. equivalent to
2714 @code{string_limit = string + strlen(string)}. If @code{end_of_parse} is
2715 @code{NULL}, the string in memory must contain exactly one number and nothing
2716 more, else a fatal error will be signalled. If @code{end_of_parse}
2717 is not @code{NULL}, @code{*end_of_parse} will be assigned a pointer past
2718 the last parsed character (i.e. @code{string_limit} if nothing came after
2719 the number). Whitespace is not allowed.
2720 @end table
2721
2722 The structure @code{cl_read_flags} contains the following fields:
2723
2724 @table @code
2725 @item cl_read_syntax_t syntax
2726 The possible results of the read operation. Possible values are
2727 @code{syntax_number}, @code{syntax_real}, @code{syntax_rational},
2728 @code{syntax_integer}, @code{syntax_float}, @code{syntax_sfloat},
2729 @code{syntax_ffloat}, @code{syntax_dfloat}, @code{syntax_lfloat}.
2730
2731 @item cl_read_lsyntax_t lsyntax
2732 Specifies the language-dependent syntax variant for the read operation.
2733 Possible values are
2734
2735 @table @code
2736 @item lsyntax_standard
2737 accept standard algebraic notation only, no complex numbers,
2738 @item lsyntax_algebraic
2739 accept the algebraic notation @code{@var{x}+@var{y}i} for complex numbers,
2740 @item lsyntax_commonlisp
2741 accept the @code{#b}, @code{#o}, @code{#x} syntaxes for binary, octal,
2742 hexadecimal numbers,
2743 @code{#@var{base}R} for rational numbers in a given base,
2744 @code{#c(@var{realpart} @var{imagpart})} for complex numbers,
2745 @item lsyntax_all
2746 accept all of these extensions.
2747 @end table
2748
2749 @item unsigned int rational_base
2750 The base in which rational numbers are read.
2751
2752 @item cl_float_format_t float_flags.default_float_format
2753 The float format used when reading floats with exponent marker @samp{e}.
2754
2755 @item cl_float_format_t float_flags.default_lfloat_format
2756 The float format used when reading floats with exponent marker @samp{l}.
2757
2758 @item cl_boolean float_flags.mantissa_dependent_float_format
2759 When this flag is true, floats specified with more digits than corresponding
2760 to the exponent marker they contain, but without @var{_nnn} suffix, will get a
2761 precision corresponding to their number of significant digits.
2762 @end table
2763
2764
2765 @node Output functions,  , Input functions, Input/Output
2766 @section Output functions
2767
2768 Including @code{<cl_io.h>} defines a type @code{cl_ostream}, which is
2769 the type of the first argument to all output functions. Unless you build
2770 and use CLN with the macro CL_IO_STDIO being defined, @code{cl_ostream}
2771 is the same as @code{ostream&}.
2772
2773 The variable
2774 @itemize @asis
2775 @item
2776 @code{cl_ostream cl_stdout}
2777 @end itemize
2778 contains the standard output stream.
2779
2780 The variable
2781 @itemize @asis
2782 @item
2783 @code{cl_ostream cl_stderr}
2784 @end itemize
2785 contains the standard error output stream.
2786
2787 These are the simple output functions:
2788
2789 @table @code
2790 @item void fprintchar (cl_ostream stream, char c)
2791 Prints the character @code{x} literally on the @code{stream}.
2792
2793 @item void fprint (cl_ostream stream, const char * string)
2794 Prints the @code{string} literally on the @code{stream}.
2795
2796 @item void fprintdecimal (cl_ostream stream, int x)
2797 @itemx void fprintdecimal (cl_ostream stream, const cl_I& x)
2798 Prints the integer @code{x} in decimal on the @code{stream}.
2799
2800 @item void fprintbinary (cl_ostream stream, const cl_I& x)
2801 Prints the integer @code{x} in binary (base 2, without prefix)
2802 on the @code{stream}.
2803
2804 @item void fprintoctal (cl_ostream stream, const cl_I& x)
2805 Prints the integer @code{x} in octal (base 8, without prefix)
2806 on the @code{stream}.
2807
2808 @item void fprinthexadecimal (cl_ostream stream, const cl_I& x)
2809 Prints the integer @code{x} in hexadecimal (base 16, without prefix)
2810 on the @code{stream}.
2811 @end table
2812
2813 Each of the classes @code{cl_N}, @code{cl_R}, @code{cl_RA}, @code{cl_I},
2814 @code{cl_F}, @code{cl_SF}, @code{cl_FF}, @code{cl_DF}, @code{cl_LF}
2815 defines, in @code{<cl_@var{type}_io.h>}, the following output functions:
2816
2817 @table @code
2818 @item void fprint (cl_ostream stream, const @var{type}& x)
2819 @itemx cl_ostream operator<< (cl_ostream stream, const @var{type}& x)
2820 Prints the number @code{x} on the @code{stream}. The output may depend
2821 on the global printer settings in the variable @code{cl_default_print_flags}.
2822 The @code{ostream} flags and settings (flags, width and locale) are
2823 ignored.
2824 @end table
2825
2826 The most flexible output function, defined in @code{<cl_@var{type}_io.h>},
2827 are the following:
2828 @example
2829 void print_complex  (cl_ostream stream, const cl_print_flags& flags,
2830                      const cl_N& z);
2831 void print_real     (cl_ostream stream, const cl_print_flags& flags,
2832                      const cl_R& z);
2833 void print_float    (cl_ostream stream, const cl_print_flags& flags,
2834                      const cl_F& z);
2835 void print_rational (cl_ostream stream, const cl_print_flags& flags,
2836                      const cl_RA& z);
2837 void print_integer  (cl_ostream stream, const cl_print_flags& flags,
2838                      const cl_I& z);
2839 @end example
2840 Prints the number @code{x} on the @code{stream}. The @code{flags} are
2841 parameters which affect the output.
2842
2843 The structure type @code{cl_print_flags} contains the following fields:
2844
2845 @table @code
2846 @item unsigned int rational_base
2847 The base in which rational numbers are printed. Default is @code{10}.
2848
2849 @item cl_boolean rational_readably
2850 If this flag is true, rational numbers are printed with radix specifiers in
2851 Common Lisp syntax (@code{#@var{n}R} or @code{#b} or @code{#o} or @code{#x}
2852 prefixes, trailing dot). Default is false.
2853
2854 @item cl_boolean float_readably
2855 If this flag is true, type specific exponent markers have precedence over 'E'.
2856 Default is false.
2857
2858 @item cl_float_format_t default_float_format
2859 Floating point numbers of this format will be printed using the 'E' exponent
2860 marker. Default is @code{cl_float_format_ffloat}.
2861
2862 @item cl_boolean complex_readably
2863 If this flag is true, complex numbers will be printed using the Common Lisp
2864 syntax @code{#C(@var{realpart} @var{imagpart})}. Default is false.
2865
2866 @item cl_string univpoly_varname
2867 Univariate polynomials with no explicit indeterminate name will be printed
2868 using this variable name. Default is @code{"x"}.
2869 @end table
2870
2871 The global variable @code{cl_default_print_flags} contains the default values,
2872 used by the function @code{fprint}.
2873
2874
2875 @node Rings, Modular integers, Input/Output, Top
2876 @chapter Rings
2877
2878 CLN has a class of abstract rings.
2879
2880 @example
2881                          Ring
2882                        cl_ring
2883                       <cl_ring.h>
2884 @end example
2885
2886 Rings can be compared for equality:
2887
2888 @table @code
2889 @item bool operator== (const cl_ring&, const cl_ring&)
2890 @itemx bool operator!= (const cl_ring&, const cl_ring&)
2891 These compare two rings for equality.
2892 @end table
2893
2894 Given a ring @code{R}, the following members can be used.
2895
2896 @table @code
2897 @item void R->fprint (cl_ostream stream, const cl_ring_element& x)
2898 @itemx cl_boolean R->equal (const cl_ring_element& x, const cl_ring_element& y)
2899 @itemx cl_ring_element R->zero ()
2900 @itemx cl_boolean R->zerop (const cl_ring_element& x)
2901 @itemx cl_ring_element R->plus (const cl_ring_element& x, const cl_ring_element& y)
2902 @itemx cl_ring_element R->minus (const cl_ring_element& x, const cl_ring_element& y)
2903 @itemx cl_ring_element R->uminus (const cl_ring_element& x)
2904 @itemx cl_ring_element R->one ()
2905 @itemx cl_ring_element R->canonhom (const cl_I& x)
2906 @itemx cl_ring_element R->mul (const cl_ring_element& x, const cl_ring_element& y)
2907 @itemx cl_ring_element R->square (const cl_ring_element& x)
2908 @itemx cl_ring_element R->expt_pos (const cl_ring_element& x, const cl_I& y)
2909 @end table
2910
2911 The following rings are built-in.
2912
2913 @table @code
2914 @item cl_null_ring cl_0_ring
2915 The null ring, containing only zero.
2916
2917 @item cl_complex_ring cl_C_ring
2918 The ring of complex numbers. This corresponds to the type @code{cl_N}.
2919
2920 @item cl_real_ring cl_R_ring
2921 The ring of real numbers. This corresponds to the type @code{cl_R}.
2922
2923 @item cl_rational_ring cl_RA_ring
2924 The ring of rational numbers. This corresponds to the type @code{cl_RA}.
2925
2926 @item cl_integer_ring cl_I_ring
2927 The ring of integers. This corresponds to the type @code{cl_I}.
2928 @end table
2929
2930 Type tests can be performed for any of @code{cl_C_ring}, @code{cl_R_ring},
2931 @code{cl_RA_ring}, @code{cl_I_ring}:
2932
2933 @table @code
2934 @item cl_boolean instanceof (const cl_number& x, const cl_number_ring& R)
2935 @cindex @code{instanceof ()}
2936 Tests whether the given number is an element of the number ring R.
2937 @end table
2938
2939
2940 @node Modular integers, Symbolic data types, Rings, Top
2941 @chapter Modular integers
2942 @cindex modular integer
2943
2944 @menu
2945 * Modular integer rings::       
2946 * Functions on modular integers::  
2947 @end menu
2948
2949 @node Modular integer rings, Functions on modular integers, Modular integers, Modular integers
2950 @section Modular integer rings
2951 @cindex ring
2952
2953 CLN implements modular integers, i.e. integers modulo a fixed integer N.
2954 The modulus is explicitly part of every modular integer. CLN doesn't
2955 allow you to (accidentally) mix elements of different modular rings,
2956 e.g. @code{(3 mod 4) + (2 mod 5)} will result in a runtime error.
2957 (Ideally one would imagine a generic data type @code{cl_MI(N)}, but C++
2958 doesn't have generic types. So one has to live with runtime checks.)
2959
2960 The class of modular integer rings is
2961
2962 @example
2963                          Ring
2964                        cl_ring
2965                       <cl_ring.h>
2966                           |
2967                           |
2968                  Modular integer ring
2969                     cl_modint_ring
2970                    <cl_modinteger.h>
2971 @end example
2972 @cindex @code{cl_modint_ring}
2973
2974 and the class of all modular integers (elements of modular integer rings) is
2975
2976 @example
2977                     Modular integer
2978                          cl_MI
2979                    <cl_modinteger.h>
2980 @end example
2981
2982 Modular integer rings are constructed using the function
2983
2984 @table @code
2985 @item cl_modint_ring cl_find_modint_ring (const cl_I& N)
2986 @cindex @code{cl_find_modint_ring ()}
2987 This function returns the modular ring @samp{Z/NZ}. It takes care
2988 of finding out about special cases of @code{N}, like powers of two
2989 and odd numbers for which Montgomery multiplication will be a win,
2990 @cindex Montgomery multiplication
2991 and precomputes any necessary auxiliary data for computing modulo @code{N}.
2992 There is a cache table of rings, indexed by @code{N} (or, more precisely,
2993 by @code{abs(N)}). This ensures that the precomputation costs are reduced
2994 to a minimum.
2995 @end table
2996
2997 Modular integer rings can be compared for equality:
2998
2999 @table @code
3000 @item bool operator== (const cl_modint_ring&, const cl_modint_ring&)
3001 @cindex @code{operator == ()}
3002 @itemx bool operator!= (const cl_modint_ring&, const cl_modint_ring&)
3003 @cindex @code{operator != ()}
3004 These compare two modular integer rings for equality. Two different calls
3005 to @code{cl_find_modint_ring} with the same argument necessarily return the
3006 same ring because it is memoized in the cache table.
3007 @end table
3008
3009 @node Functions on modular integers,  , Modular integer rings, Modular integers
3010 @section Functions on modular integers
3011
3012 Given a modular integer ring @code{R}, the following members can be used.
3013
3014 @table @code
3015 @item cl_I R->modulus
3016 @cindex @code{modulus}
3017 This is the ring's modulus, normalized to be nonnegative: @code{abs(N)}.
3018
3019 @item cl_MI R->zero()
3020 @cindex @code{zero ()}
3021 This returns @code{0 mod N}.
3022
3023 @item cl_MI R->one()
3024 @cindex @code{one ()}
3025 This returns @code{1 mod N}.
3026
3027 @item cl_MI R->canonhom (const cl_I& x)
3028 @cindex @code{canonhom ()}
3029 This returns @code{x mod N}.
3030
3031 @item cl_I R->retract (const cl_MI& x)
3032 @cindex @code{retract ()}
3033 This is a partial inverse function to @code{R->canonhom}. It returns the
3034 standard representative (@code{>=0}, @code{<N}) of @code{x}.
3035
3036 @item cl_MI R->random(cl_random_state& randomstate)
3037 @itemx cl_MI R->random()
3038 @cindex @code{random ()}
3039 This returns a random integer modulo @code{N}.
3040 @end table
3041
3042 The following operations are defined on modular integers.
3043
3044 @table @code
3045 @item cl_modint_ring x.ring ()
3046 @cindex @code{ring ()}
3047 Returns the ring to which the modular integer @code{x} belongs.
3048
3049 @item cl_MI operator+ (const cl_MI&, const cl_MI&)
3050 @cindex @code{operator + ()}
3051 Returns the sum of two modular integers. One of the arguments may also
3052 be a plain integer.
3053
3054 @item cl_MI operator- (const cl_MI&, const cl_MI&)
3055 @cindex @code{operator - ()}
3056 Returns the difference of two modular integers. One of the arguments may also
3057 be a plain integer.
3058
3059 @item cl_MI operator- (const cl_MI&)
3060 Returns the negative of a modular integer.
3061
3062 @item cl_MI operator* (const cl_MI&, const cl_MI&)
3063 @cindex @code{operator * ()}
3064 Returns the product of two modular integers. One of the arguments may also
3065 be a plain integer.
3066
3067 @item cl_MI square (const cl_MI&)
3068 @cindex @code{square ()}
3069 Returns the square of a modular integer.
3070
3071 @item cl_MI recip (const cl_MI& x)
3072 @cindex @code{recip ()}
3073 Returns the reciprocal @code{x^-1} of a modular integer @code{x}. @code{x}
3074 must be coprime to the modulus, otherwise an error message is issued.
3075
3076 @item cl_MI div (const cl_MI& x, const cl_MI& y)
3077 @cindex @code{div ()}
3078 Returns the quotient @code{x*y^-1} of two modular integers @code{x}, @code{y}.
3079 @code{y} must be coprime to the modulus, otherwise an error message is issued.
3080
3081 @item cl_MI expt_pos (const cl_MI& x, const cl_I& y)
3082 @cindex @code{expt_pos ()}
3083 @code{y} must be > 0. Returns @code{x^y}.
3084
3085 @item cl_MI expt (const cl_MI& x, const cl_I& y)
3086 @cindex @code{expt ()}
3087 Returns @code{x^y}. If @code{y} is negative, @code{x} must be coprime to the
3088 modulus, else an error message is issued.
3089
3090 @item cl_MI operator<< (const cl_MI& x, const cl_I& y)
3091 @cindex @code{operator << ()}
3092 Returns @code{x*2^y}.
3093
3094 @item cl_MI operator>> (const cl_MI& x, const cl_I& y)
3095 @cindex @code{operator >> ()}
3096 Returns @code{x*2^-y}. When @code{y} is positive, the modulus must be odd,
3097 or an error message is issued.
3098
3099 @item bool operator== (const cl_MI&, const cl_MI&)
3100 @cindex @code{operator == ()}
3101 @itemx bool operator!= (const cl_MI&, const cl_MI&)
3102 @cindex @code{operator != ()}
3103 Compares two modular integers, belonging to the same modular integer ring,
3104 for equality.
3105
3106 @item cl_boolean zerop (const cl_MI& x)
3107 @cindex @code{zerop ()}
3108 Returns true if @code{x} is @code{0 mod N}.
3109 @end table
3110
3111 The following output functions are defined (see also the chapter on
3112 input/output).
3113
3114 @table @code
3115 @item void fprint (cl_ostream stream, const cl_MI& x)
3116 @cindex @code{fprint ()}
3117 @itemx cl_ostream operator<< (cl_ostream stream, const cl_MI& x)
3118 @cindex @code{operator << ()}
3119 Prints the modular integer @code{x} on the @code{stream}. The output may depend
3120 on the global printer settings in the variable @code{cl_default_print_flags}.
3121 @end table
3122
3123
3124 @node Symbolic data types, Univariate polynomials, Modular integers, Top
3125 @chapter Symbolic data types
3126 @cindex symbolic type
3127
3128 CLN implements two symbolic (non-numeric) data types: strings and symbols.
3129
3130 @menu
3131 * Strings::                     
3132 * Symbols::                     
3133 @end menu
3134
3135 @node Strings, Symbols, Symbolic data types, Symbolic data types
3136 @section Strings
3137 @cindex string
3138
3139 The class
3140
3141 @example
3142                       String
3143                      cl_string
3144                     <cl_string.h>
3145 @end example
3146
3147 implements immutable strings.
3148
3149 Strings are constructed through the following constructors:
3150
3151 @table @code
3152 @item cl_string (const char * s)
3153 @cindex @code{cl_string ()}
3154 Returns an immutable copy of the (zero-terminated) C string @code{s}.
3155
3156 @item cl_string (const char * ptr, unsigned long len)
3157 Returns an immutable copy of the @code{len} characters at
3158 @code{ptr[0]}, @dots{}, @code{ptr[len-1]}. NUL characters are allowed.
3159 @end table
3160
3161 The following functions are available on strings:
3162
3163 @table @code
3164 @item operator =
3165 Assignment from @code{cl_string} and @code{const char *}.
3166
3167 @item s.length()
3168 @cindex @code{length ()}
3169 @itemx strlen(s)
3170 @cindex @code{strlen ()}
3171 Returns the length of the string @code{s}.
3172
3173 @item s[i]
3174 @cindex @code{operator [] ()}
3175 Returns the @code{i}th character of the string @code{s}.
3176 @code{i} must be in the range @code{0 <= i < s.length()}.
3177
3178 @item bool equal (const cl_string& s1, const cl_string& s2)
3179 @cindex @code{equal ()}
3180 Compares two strings for equality. One of the arguments may also be a
3181 plain @code{const char *}.
3182 @end table
3183
3184 @node Symbols,  , Strings, Symbolic data types
3185 @section Symbols
3186 @cindex symbol
3187
3188 Symbols are uniquified strings: all symbols with the same name are shared.
3189 This means that comparison of two symbols is fast (effectively just a pointer
3190 comparison), whereas comparison of two strings must in the worst case walk
3191 both strings until their end.
3192 Symbols are used, for example, as tags for properties, as names of variables
3193 in polynomial rings, etc.
3194
3195 Symbols are constructed through the following constructor:
3196
3197 @table @code
3198 @item cl_symbol (const cl_string& s)
3199 @cindex @code{cl_symbol ()}
3200 Looks up or creates a new symbol with a given name.
3201 @end table
3202
3203 The following operations are available on symbols:
3204
3205 @table @code
3206 @item cl_string (const cl_symbol& sym)
3207 Conversion to @code{cl_string}: Returns the string which names the symbol
3208 @code{sym}.
3209
3210 @item bool equal (const cl_symbol& sym1, const cl_symbol& sym2)
3211 @cindex @code{equal ()}
3212 Compares two symbols for equality. This is very fast.
3213 @end table
3214
3215
3216 @node Univariate polynomials, Internals, Symbolic data types, Top
3217 @chapter Univariate polynomials
3218 @cindex polynomial
3219 @cindex univariate polynomial
3220
3221 @menu
3222 * Univariate polynomial rings::  
3223 * Functions on univariate polynomials::  
3224 * Special polynomials::         
3225 @end menu
3226
3227 @node Univariate polynomial rings, Functions on univariate polynomials, Univariate polynomials, Univariate polynomials
3228 @section Univariate polynomial rings
3229
3230 CLN implements univariate polynomials (polynomials in one variable) over an
3231 arbitrary ring. The indeterminate variable may be either unnamed (and will be
3232 printed according to @code{cl_default_print_flags.univpoly_varname}, which
3233 defaults to @samp{x}) or carry a given name. The base ring and the
3234 indeterminate are explicitly part of every polynomial. CLN doesn't allow you to
3235 (accidentally) mix elements of different polynomial rings, e.g.
3236 @code{(a^2+1) * (b^3-1)} will result in a runtime error. (Ideally this should
3237 return a multivariate polynomial, but they are not yet implemented in CLN.)
3238
3239 The classes of univariate polynomial rings are
3240
3241 @example
3242                            Ring
3243                          cl_ring
3244                         <cl_ring.h>
3245                             |
3246                             |
3247                  Univariate polynomial ring
3248                       cl_univpoly_ring
3249                       <cl_univpoly.h>
3250                             |
3251            +----------------+-------------------+
3252            |                |                   |
3253  Complex polynomial ring    |    Modular integer polynomial ring
3254  cl_univpoly_complex_ring   |        cl_univpoly_modint_ring
3255   <cl_univpoly_complex.h>   |        <cl_univpoly_modint.h>
3256                             |
3257            +----------------+
3258            |                |
3259    Real polynomial ring     |
3260    cl_univpoly_real_ring    |
3261     <cl_univpoly_real.h>    |
3262                             |
3263            +----------------+
3264            |                |
3265  Rational polynomial ring   |
3266  cl_univpoly_rational_ring  |
3267   <cl_univpoly_rational.h>  |
3268                             |
3269            +----------------+
3270            |
3271  Integer polynomial ring
3272  cl_univpoly_integer_ring
3273   <cl_univpoly_integer.h>
3274 @end example
3275
3276 and the corresponding classes of univariate polynomials are
3277
3278 @example
3279                    Univariate polynomial
3280                           cl_UP
3281                       <cl_univpoly.h>
3282                             |
3283            +----------------+-------------------+
3284            |                |                   |
3285    Complex polynomial       |      Modular integer polynomial
3286         cl_UP_N             |                cl_UP_MI
3287   <cl_univpoly_complex.h>   |        <cl_univpoly_modint.h>
3288                             |
3289            +----------------+
3290            |                |
3291      Real polynomial        |
3292         cl_UP_R             |
3293     <cl_univpoly_real.h>    |
3294                             |
3295            +----------------+
3296            |                |
3297    Rational polynomial      |
3298         cl_UP_RA            |
3299   <cl_univpoly_rational.h>  |
3300                             |
3301            +----------------+
3302            |
3303    Integer polynomial
3304         cl_UP_I
3305   <cl_univpoly_integer.h>
3306 @end example
3307
3308 Univariate polynomial rings are constructed using the functions
3309
3310 @table @code
3311 @item cl_univpoly_ring cl_find_univpoly_ring (const cl_ring& R)
3312 @itemx cl_univpoly_ring cl_find_univpoly_ring (const cl_ring& R, const cl_symbol& varname)
3313 This function returns the polynomial ring @samp{R[X]}, unnamed or named.
3314 @code{R} may be an arbitrary ring. This function takes care of finding out
3315 about special cases of @code{R}, such as the rings of complex numbers,
3316 real numbers, rational numbers, integers, or modular integer rings.
3317 There is a cache table of rings, indexed by @code{R} and @code{varname}.
3318 This ensures that two calls of this function with the same arguments will
3319 return the same polynomial ring.
3320
3321 @itemx cl_univpoly_complex_ring cl_find_univpoly_ring (const cl_complex_ring& R)
3322 @cindex @code{cl_find_univpoly_ring ()}
3323 @itemx cl_univpoly_complex_ring cl_find_univpoly_ring (const cl_complex_ring& R, const cl_symbol& varname)
3324 @itemx cl_univpoly_real_ring cl_find_univpoly_ring (const cl_real_ring& R)
3325 @itemx cl_univpoly_real_ring cl_find_univpoly_ring (const cl_real_ring& R, const cl_symbol& varname)
3326 @itemx cl_univpoly_rational_ring cl_find_univpoly_ring (const cl_rational_ring& R)
3327 @itemx cl_univpoly_rational_ring cl_find_univpoly_ring (const cl_rational_ring& R, const cl_symbol& varname)
3328 @itemx cl_univpoly_integer_ring cl_find_univpoly_ring (const cl_integer_ring& R)
3329 @itemx cl_univpoly_integer_ring cl_find_univpoly_ring (const cl_integer_ring& R, const cl_symbol& varname)
3330 @itemx cl_univpoly_modint_ring cl_find_univpoly_ring (const cl_modint_ring& R)
3331 @itemx cl_univpoly_modint_ring cl_find_univpoly_ring (const cl_modint_ring& R, const cl_symbol& varname)
3332 These functions are equivalent to the general @code{cl_find_univpoly_ring},
3333 only the return type is more specific, according to the base ring's type.
3334 @end table
3335
3336 @node Functions on univariate polynomials, Special polynomials, Univariate polynomial rings, Univariate polynomials
3337 @section Functions on univariate polynomials
3338
3339 Given a univariate polynomial ring @code{R}, the following members can be used.
3340
3341 @table @code
3342 @item cl_ring R->basering()
3343 @cindex @code{basering ()}
3344 This returns the base ring, as passed to @samp{cl_find_univpoly_ring}.
3345
3346 @item cl_UP R->zero()
3347 @cindex @code{zero ()}
3348 This returns @code{0 in R}, a polynomial of degree -1.
3349
3350 @item cl_UP R->one()
3351 @cindex @code{one ()}
3352 This returns @code{1 in R}, a polynomial of degree <= 0.
3353
3354 @item cl_UP R->canonhom (const cl_I& x)
3355 @cindex @code{canonhom ()}
3356 This returns @code{x in R}, a polynomial of degree <= 0.
3357
3358 @item cl_UP R->monomial (const cl_ring_element& x, uintL e)
3359 @cindex @code{monomial ()}
3360 This returns a sparse polynomial: @code{x * X^e}, where @code{X} is the
3361 indeterminate.
3362
3363 @item cl_UP R->create (sintL degree)
3364 @cindex @code{create ()}
3365 Creates a new polynomial with a given degree. The zero polynomial has degree
3366 @code{-1}. After creating the polynomial, you should put in the coefficients,
3367 using the @code{set_coeff} member function, and then call the @code{finalize}
3368 member function.
3369 @end table
3370
3371 The following are the only destructive operations on univariate polynomials.
3372
3373 @table @code
3374 @item void set_coeff (cl_UP& x, uintL index, const cl_ring_element& y)
3375 @cindex @code{set_coeff ()}
3376 This changes the coefficient of @code{X^index} in @code{x} to be @code{y}.
3377 After changing a polynomial and before applying any "normal" operation on it,
3378 you should call its @code{finalize} member function.
3379
3380 @item void finalize (cl_UP& x)
3381 @cindex @code{finalize ()}
3382 This function marks the endpoint of destructive modifications of a polynomial.
3383 It normalizes the internal representation so that subsequent computations have
3384 less overhead. Doing normal computations on unnormalized polynomials may
3385 produce wrong results or crash the program.
3386 @end table
3387
3388 The following operations are defined on univariate polynomials.
3389
3390 @table @code
3391 @item cl_univpoly_ring x.ring ()
3392 @cindex @code{ring ()}
3393 Returns the ring to which the univariate polynomial @code{x} belongs.
3394
3395 @item cl_UP operator+ (const cl_UP&, const cl_UP&)
3396 @cindex @code{operator + ()}
3397 Returns the sum of two univariate polynomials.
3398
3399 @item cl_UP operator- (const cl_UP&, const cl_UP&)
3400 @cindex @code{operator - ()}
3401 Returns the difference of two univariate polynomials.
3402
3403 @item cl_UP operator- (const cl_UP&)
3404 Returns the negative of a univariate polynomial.
3405
3406 @item cl_UP operator* (const cl_UP&, const cl_UP&)
3407 @cindex @code{operator * ()}
3408 Returns the product of two univariate polynomials. One of the arguments may
3409 also be a plain integer or an element of the base ring.
3410
3411 @item cl_UP square (const cl_UP&)
3412 @cindex @code{square ()}
3413 Returns the square of a univariate polynomial.
3414
3415 @item cl_UP expt_pos (const cl_UP& x, const cl_I& y)
3416 @cindex @code{expt_pos ()}
3417 @code{y} must be > 0. Returns @code{x^y}.
3418
3419 @item bool operator== (const cl_UP&, const cl_UP&)
3420 @cindex @code{operator == ()}
3421 @itemx bool operator!= (const cl_UP&, const cl_UP&)
3422 @cindex @code{operator != ()}
3423 Compares two univariate polynomials, belonging to the same univariate
3424 polynomial ring, for equality.
3425
3426 @item cl_boolean zerop (const cl_UP& x)
3427 @cindex @code{zerop ()}
3428 Returns true if @code{x} is @code{0 in R}.
3429
3430 @item sintL degree (const cl_UP& x)
3431 @cindex @code{degree ()}
3432 Returns the degree of the polynomial. The zero polynomial has degree @code{-1}.
3433
3434 @item cl_ring_element coeff (const cl_UP& x, uintL index)
3435 @cindex @code{coeff ()}
3436 Returns the coefficient of @code{X^index} in the polynomial @code{x}.
3437
3438 @item cl_ring_element x (const cl_ring_element& y)
3439 @cindex @code{operator () ()}
3440 Evaluation: If @code{x} is a polynomial and @code{y} belongs to the base ring,
3441 then @samp{x(y)} returns the value of the substitution of @code{y} into
3442 @code{x}.
3443
3444 @item cl_UP deriv (const cl_UP& x)
3445 @cindex @code{deriv ()}
3446 Returns the derivative of the polynomial @code{x} with respect to the
3447 indeterminate @code{X}.
3448 @end table
3449
3450 The following output functions are defined (see also the chapter on
3451 input/output).
3452
3453 @table @code
3454 @item void fprint (cl_ostream stream, const cl_UP& x)
3455 @cindex @code{fprint ()}
3456 @itemx cl_ostream operator<< (cl_ostream stream, const cl_UP& x)
3457 @cindex @code{operator << ()}
3458 Prints the univariate polynomial @code{x} on the @code{stream}. The output may
3459 depend on the global printer settings in the variable
3460 @code{cl_default_print_flags}.
3461 @end table
3462
3463 @node Special polynomials,  , Functions on univariate polynomials, Univariate polynomials
3464 @section Special polynomials
3465
3466 The following functions return special polynomials.
3467
3468 @table @code
3469 @item cl_UP_I cl_tschebychev (sintL n)
3470 @cindex @code{cl_tschebychev ()}
3471 @cindex Tschebychev polynomial
3472 Returns the n-th Tchebychev polynomial (n >= 0).
3473
3474 @item cl_UP_I cl_hermite (sintL n)
3475 @cindex @code{cl_hermite ()}
3476 @cindex Hermite polynomial
3477 Returns the n-th Hermite polynomial (n >= 0).
3478
3479 @item cl_UP_RA cl_legendre (sintL n)
3480 @cindex @code{cl_legendre ()}
3481 @cindex Legende polynomial
3482 Returns the n-th Legendre polynomial (n >= 0).
3483
3484 @item cl_UP_I cl_laguerre (sintL n)
3485 @cindex @code{cl_laguerre ()}
3486 @cindex Laguerre polynomial
3487 Returns the n-th Laguerre polynomial (n >= 0).
3488 @end table
3489
3490 Information how to derive the differential equation satisfied by each
3491 of these polynomials from their definition can be found in the
3492 @code{doc/polynomial/} directory.
3493
3494
3495 @node Internals, Using the library, Univariate polynomials, Top
3496 @chapter Internals
3497
3498 @menu
3499 * Why C++ ?::                   
3500 * Memory efficiency::           
3501 * Speed efficiency::            
3502 * Garbage collection::          
3503 @end menu
3504
3505 @node Why C++ ?, Memory efficiency, Internals, Internals
3506 @section Why C++ ?
3507 @cindex advocacy
3508
3509 Using C++ as an implementation language provides
3510
3511 @itemize @bullet
3512 @item
3513 Efficiency: It compiles to machine code.
3514
3515 @item
3516 @cindex portability
3517 Portability: It runs on all platforms supporting a C++ compiler. Because
3518 of the availability of GNU C++, this includes all currently used 32-bit and
3519 64-bit platforms, independently of the quality of the vendor's C++ compiler.
3520
3521 @item
3522 Type safety: The C++ compilers knows about the number types and complains if,
3523 for example, you try to assign a float to an integer variable. However,
3524 a drawback is that C++ doesn't know about generic types, hence a restriction
3525 like that @code{operator+ (const cl_MI&, const cl_MI&)} requires that both
3526 arguments belong to the same modular ring cannot be expressed as a compile-time
3527 information.
3528
3529 @item
3530 Algebraic syntax: The elementary operations @code{+}, @code{-}, @code{*},
3531 @code{=}, @code{==}, ... can be used in infix notation, which is more
3532 convenient than Lisp notation @samp{(+ x y)} or C notation @samp{add(x,y,&z)}.
3533 @end itemize
3534
3535 With these language features, there is no need for two separate languages,
3536 one for the implementation of the library and one in which the library's users
3537 can program. This means that a prototype implementation of an algorithm
3538 can be integrated into the library immediately after it has been tested and
3539 debugged. No need to rewrite it in a low-level language after having prototyped
3540 in a high-level language.
3541
3542
3543 @node Memory efficiency, Speed efficiency, Why C++ ?, Internals
3544 @section Memory efficiency
3545
3546 In order to save memory allocations, CLN implements:
3547
3548 @itemize @bullet
3549 @item
3550 Object sharing: An operation like @code{x+0} returns @code{x} without copying
3551 it.
3552 @item
3553 @cindex garbage collection
3554 @cindex reference counting
3555 Garbage collection: A reference counting mechanism makes sure that any
3556 number object's storage is freed immediately when the last reference to the
3557 object is gone.
3558 @item
3559 Small integers are represented as immediate values instead of pointers
3560 to heap allocated storage. This means that integers @code{> -2^29},
3561 @code{< 2^29} don't consume heap memory, unless they were explicitly allocated
3562 on the heap.
3563 @end itemize
3564
3565
3566 @node Speed efficiency, Garbage collection, Memory efficiency, Internals
3567 @section Speed efficiency
3568
3569 Speed efficiency is obtained by the combination of the following tricks
3570 and algorithms:
3571
3572 @itemize @bullet
3573 @item
3574 Small integers, being represented as immediate values, don't require
3575 memory access, just a couple of instructions for each elementary operation.
3576 @item
3577 The kernel of CLN has been written in assembly language for some CPUs
3578 (@code{i386}, @code{m68k}, @code{sparc}, @code{mips}, @code{arm}).
3579 @item
3580 On all CPUs, CLN may be configured to use the superefficient low-level
3581 routines from GNU GMP version 3.
3582 @item
3583 For large numbers, CLN uses, instead of the standard @code{O(N^2)}
3584 algorithm, the Karatsuba multiplication, which is an
3585 @iftex
3586 @tex
3587 $O(N^{1.6})$
3588 @end tex
3589 @end iftex
3590 @ifinfo
3591 @code{O(N^1.6)}
3592 @end ifinfo
3593 algorithm.
3594 @item
3595 For very large numbers (more than 12000 decimal digits), CLN uses
3596 @iftex
3597 Sch{@"o}nhage-Strassen
3598 @cindex Sch{@"o}nhage-Strassen multiplication
3599 @end iftex
3600 @ifinfo
3601 Schönhage-Strassen
3602 @cindex Schönhage-Strassen multiplication
3603 @end ifinfo
3604 multiplication, which is an asymptotically optimal multiplication 
3605 algorithm.
3606 @item
3607 These fast multiplication algorithms also give improvements in the speed
3608 of division and radix conversion.
3609 @end itemize
3610
3611
3612 @node Garbage collection,  , Speed efficiency, Internals
3613 @section Garbage collection
3614 @cindex garbage collection
3615
3616 All the number classes are reference count classes: They only contain a pointer
3617 to an object in the heap. Upon construction, assignment and destruction of
3618 number objects, only the objects' reference count are manipulated.
3619
3620 Memory occupied by number objects are automatically reclaimed as soon as
3621 their reference count drops to zero.
3622
3623 For number rings, another strategy is implemented: There is a cache of,
3624 for example, the modular integer rings. A modular integer ring is destroyed
3625 only if its reference count dropped to zero and the cache is about to be
3626 resized. The effect of this strategy is that recently used rings remain
3627 cached, whereas undue memory consumption through cached rings is avoided.
3628
3629
3630 @node Using the library, Customizing, Internals, Top
3631 @chapter Using the library
3632
3633 For the following discussion, we will assume that you have installed
3634 the CLN source in @code{$CLN_DIR} and built it in @code{$CLN_TARGETDIR}.
3635 For example, for me it's @code{CLN_DIR="$HOME/cln"} and
3636 @code{CLN_TARGETDIR="$HOME/cln/linuxelf"}. You might define these as
3637 environment variables, or directly substitute the appropriate values.
3638
3639
3640 @menu
3641 * Compiler options::            
3642 * Include files::               
3643 * An Example::                  
3644 * Debugging support::           
3645 @end menu
3646
3647 @node Compiler options, Include files, Using the library, Using the library
3648 @section Compiler options
3649 @cindex compiler options
3650
3651 Until you have installed CLN in a public place, the following options are
3652 needed:
3653
3654 When you compile CLN application code, add the flags
3655 @example
3656    -I$CLN_DIR/include -I$CLN_TARGETDIR/include
3657 @end example
3658 to the C++ compiler's command line (@code{make} variable CFLAGS or CXXFLAGS).
3659 When you link CLN application code to form an executable, add the flags
3660 @example
3661    $CLN_TARGETDIR/src/libcln.a
3662 @end example
3663 to the C/C++ compiler's command line (@code{make} variable LIBS).
3664
3665 If you did a @code{make install}, the include files are installed in a
3666 public directory (normally @code{/usr/local/include}), hence you don't
3667 need special flags for compiling. The library has been installed to a
3668 public directory as well (normally @code{/usr/local/lib}), hence when
3669 linking a CLN application it is sufficient to give the flag @code{-lcln}.
3670
3671
3672 @node Include files, An Example, Compiler options, Using the library
3673 @section Include files
3674 @cindex include files
3675 @cindex header files
3676
3677 Here is a summary of the include files and their contents.
3678
3679 @table @code
3680 @item <cl_object.h>
3681 General definitions, reference counting, garbage collection.
3682 @item <cl_number.h>
3683 The class cl_number.
3684 @item <cl_complex.h>
3685 Functions for class cl_N, the complex numbers.
3686 @item <cl_real.h>
3687 Functions for class cl_R, the real numbers.
3688 @item <cl_float.h>
3689 Functions for class cl_F, the floats.
3690 @item <cl_sfloat.h>
3691 Functions for class cl_SF, the short-floats.
3692 @item <cl_ffloat.h>
3693 Functions for class cl_FF, the single-floats.
3694 @item <cl_dfloat.h>
3695 Functions for class cl_DF, the double-floats.
3696 @item <cl_lfloat.h>
3697 Functions for class cl_LF, the long-floats.
3698 @item <cl_rational.h>
3699 Functions for class cl_RA, the rational numbers.
3700 @item <cl_integer.h>
3701 Functions for class cl_I, the integers.
3702 @item <cl_io.h>
3703 Input/Output.
3704 @item <cl_complex_io.h>
3705 Input/Output for class cl_N, the complex numbers.
3706 @item <cl_real_io.h>
3707 Input/Output for class cl_R, the real numbers.
3708 @item <cl_float_io.h>
3709 Input/Output for class cl_F, the floats.
3710 @item <cl_sfloat_io.h>
3711 Input/Output for class cl_SF, the short-floats.
3712 @item <cl_ffloat_io.h>
3713 Input/Output for class cl_FF, the single-floats.
3714 @item <cl_dfloat_io.h>
3715 Input/Output for class cl_DF, the double-floats.
3716 @item <cl_lfloat_io.h>
3717 Input/Output for class cl_LF, the long-floats.
3718 @item <cl_rational_io.h>
3719 Input/Output for class cl_RA, the rational numbers.
3720 @item <cl_integer_io.h>
3721 Input/Output for class cl_I, the integers.
3722 @item <cl_input.h>
3723 Flags for customizing input operations.
3724 @item <cl_output.h>
3725 Flags for customizing output operations.
3726 @item <cl_malloc.h>
3727 @code{cl_malloc_hook}, @code{cl_free_hook}.
3728 @item <cl_abort.h>
3729 @code{cl_abort}.
3730 @item <cl_condition.h>
3731 Conditions/exceptions.
3732 @item <cl_string.h>
3733 Strings.
3734 @item <cl_symbol.h>
3735 Symbols.
3736 @item <cl_proplist.h>
3737 Property lists.
3738 @item <cl_ring.h>
3739 General rings.
3740 @item <cl_null_ring.h>
3741 The null ring.
3742 @item <cl_complex_ring.h>
3743 The ring of complex numbers.
3744 @item <cl_real_ring.h>
3745 The ring of real numbers.
3746 @item <cl_rational_ring.h>
3747 The ring of rational numbers.
3748 @item <cl_integer_ring.h>
3749 The ring of integers.
3750 @item <cl_numtheory.h>
3751 Number threory functions.
3752 @item <cl_modinteger.h>
3753 Modular integers.
3754 @item <cl_V.h>
3755 Vectors.
3756 @item <cl_GV.h>
3757 General vectors.
3758 @item <cl_GV_number.h>
3759 General vectors over cl_number.
3760 @item <cl_GV_complex.h>
3761 General vectors over cl_N.
3762 @item <cl_GV_real.h>
3763 General vectors over cl_R.
3764 @item <cl_GV_rational.h>
3765 General vectors over cl_RA.
3766 @item <cl_GV_integer.h>
3767 General vectors over cl_I.
3768 @item <cl_GV_modinteger.h>
3769 General vectors of modular integers.
3770 @item <cl_SV.h>
3771 Simple vectors.
3772 @item <cl_SV_number.h>
3773 Simple vectors over cl_number.
3774 @item <cl_SV_complex.h>
3775 Simple vectors over cl_N.
3776 @item <cl_SV_real.h>
3777 Simple vectors over cl_R.
3778 @item <cl_SV_rational.h>
3779 Simple vectors over cl_RA.
3780 @item <cl_SV_integer.h>
3781 Simple vectors over cl_I.
3782 @item <cl_SV_ringelt.h>
3783 Simple vectors of general ring elements.
3784 @item <cl_univpoly.h>
3785 Univariate polynomials.
3786 @item <cl_univpoly_integer.h>
3787 Univariate polynomials over the integers.
3788 @item <cl_univpoly_rational.h>
3789 Univariate polynomials over the rational numbers.
3790 @item <cl_univpoly_real.h>
3791 Univariate polynomials over the real numbers.
3792 @item <cl_univpoly_complex.h>
3793 Univariate polynomials over the complex numbers.
3794 @item <cl_univpoly_modint.h>
3795 Univariate polynomials over modular integer rings.
3796 @item <cl_timing.h>
3797 Timing facilities.
3798 @item <cln.h>
3799 Includes all of the above.
3800 @end table
3801
3802
3803 @node An Example, Debugging support, Include files, Using the library
3804 @section An Example
3805
3806 A function which computes the nth Fibonacci number can be written as follows.
3807 @cindex Fibonacci number
3808
3809 @example
3810 #include <cl_integer.h>
3811 #include <cl_real.h>
3812
3813 // Returns F_n, computed as the nearest integer to
3814 // ((1+sqrt(5))/2)^n/sqrt(5). Assume n>=0.
3815 const cl_I fibonacci (int n)
3816 @{
3817         // Need a precision of ((1+sqrt(5))/2)^-n.
3818         cl_float_format_t prec = cl_float_format((int)(0.208987641*n+5));
3819         cl_R sqrt5 = sqrt(cl_float(5,prec));
3820         cl_R phi = (1+sqrt5)/2;
3821         return round1( expt(phi,n)/sqrt5 );
3822 @}
3823 @end example
3824
3825 Let's explain what is going on in detail.
3826
3827 The include file @code{<cl_integer.h>} is necessary because the type
3828 @code{cl_I} is used in the function, and the include file @code{<cl_real.h>}
3829 is needed for the type @code{cl_R} and the floating point number functions.
3830 The order of the include files does not matter.
3831
3832 Then comes the function declaration. The argument is an @code{int}, the
3833 result an integer. The return type is defined as @samp{const cl_I}, not
3834 simply @samp{cl_I}, because that allows the compiler to detect typos like
3835 @samp{fibonacci(n) = 100}. It would be possible to declare the return
3836 type as @code{const cl_R} (real number) or even @code{const cl_N} (complex
3837 number). We use the most specialized possible return type because functions
3838 which call @samp{fibonacci} will be able to profit from the compiler's type
3839 analysis: Adding two integers is slightly more efficient than adding the
3840 same objects declared as complex numbers, because it needs less type
3841 dispatch. Also, when linking to CLN as a non-shared library, this minimizes
3842 the size of the resulting executable program.
3843
3844 The result will be computed as expt(phi,n)/sqrt(5), rounded to the nearest
3845 integer. In order to get a correct result, the absolute error should be less
3846 than 1/2, i.e. the relative error should be less than sqrt(5)/(2*expt(phi,n)).
3847 To this end, the first line computes a floating point precision for sqrt(5)
3848 and phi.
3849
3850 Then sqrt(5) is computed by first converting the integer 5 to a floating point
3851 number and than taking the square root. The converse, first taking the square
3852 root of 5, and then converting to the desired precision, would not work in
3853 CLN: The square root would be computed to a default precision (normally
3854 single-float precision), and the following conversion could not help about
3855 the lacking accuracy. This is because CLN is not a symbolic computer algebra
3856 system and does not represent sqrt(5) in a non-numeric way.
3857
3858 The type @code{cl_R} for sqrt5 and, in the following line, phi is the only
3859 possible choice. You cannot write @code{cl_F} because the C++ compiler can
3860 only infer that @code{cl_float(5,prec)} is a real number. You cannot write
3861 @code{cl_N} because a @samp{round1} does not exist for general complex
3862 numbers.
3863
3864 When the function returns, all the local variables in the function are
3865 automatically reclaimed (garbage collected). Only the result survives and
3866 gets passed to the caller.
3867
3868 The file @code{fibonacci.cc} in the subdirectory @code{examples}
3869 contains this implementation together with an even faster algorithm.
3870
3871 @node Debugging support,  , An Example, Using the library
3872 @section Debugging support
3873 @cindex debugging
3874
3875 When debugging a CLN application with GNU @code{gdb}, two facilities are
3876 available from the library:
3877
3878 @itemize @bullet
3879 @item The library does type checks, range checks, consistency checks at
3880 many places. When one of these fails, the function @code{cl_abort()} is
3881 called. Its default implementation is to perform an @code{exit(1)}, so
3882 you won't have a core dump. But for debugging, it is best to set a
3883 breakpoint at this function:
3884 @example
3885 (gdb) break cl_abort
3886 @end example
3887 When this breakpoint is hit, look at the stack's backtrace:
3888 @example
3889 (gdb) where
3890 @end example
3891
3892 @item The debugger's normal @code{print} command doesn't know about
3893 CLN's types and therefore prints mostly useless hexadecimal addresses.
3894 CLN offers a function @code{cl_print}, callable from the debugger,
3895 for printing number objects. In order to get this function, you have
3896 to define the macro @samp{CL_DEBUG} and then include all the header files
3897 for which you want @code{cl_print} debugging support. For example:
3898 @cindex @code{CL_DEBUG}
3899 @example
3900 #define CL_DEBUG
3901 #include <cl_string.h>
3902 @end example
3903 Now, if you have in your program a variable @code{cl_string s}, and
3904 inspect it under @code{gdb}, the output may look like this:
3905 @example
3906 (gdb) print s
3907 $7 = @{<cl_gcpointer> = @{ = @{pointer = 0x8055b60, heappointer = 0x8055b60,
3908   word = 134568800@}@}, @}
3909 (gdb) call cl_print(s)
3910 (cl_string) ""
3911 $8 = 134568800
3912 @end example
3913 Note that the output of @code{cl_print} goes to the program's error output,
3914 not to gdb's standard output.
3915
3916 Note, however, that the above facility does not work with all CLN types,
3917 only with number objects and similar. Therefore CLN offers a member function
3918 @code{debug_print()} on all CLN types. The same macro @samp{CL_DEBUG}
3919 is needed for this member function to be implemented. Under @code{gdb},
3920 you call it like this:
3921 @cindex @code{debug_print ()}
3922 @example
3923 (gdb) print s
3924 $7 = @{<cl_gcpointer> = @{ = @{pointer = 0x8055b60, heappointer = 0x8055b60,
3925   word = 134568800@}@}, @}
3926 (gdb) call s.debug_print()
3927 (cl_string) ""
3928 (gdb) define cprint
3929 >call ($1).debug_print()
3930 >end
3931 (gdb) cprint s
3932 (cl_string) ""
3933 @end example
3934 Unfortunately, this feature does not seem to work under all circumstances.
3935 @end itemize
3936
3937
3938 @node Customizing, Index, Using the library, Top
3939 @chapter Customizing
3940 @cindex customizing
3941
3942 @menu
3943 * Error handling::              
3944 * Floating-point underflow::    
3945 * Customizing I/O::             
3946 * Customizing the memory allocator::  
3947 @end menu
3948
3949 @node Error handling, Floating-point underflow, Customizing, Customizing
3950 @section Error handling
3951
3952 When a fatal error occurs, an error message is output to the standard error
3953 output stream, and the function @code{cl_abort} is called. The default
3954 version of this function (provided in the library) terminates the application.
3955 To catch such a fatal error, you need to define the function @code{cl_abort}
3956 yourself, with the prototype
3957 @example
3958 #include <cl_abort.h>
3959 void cl_abort (void);
3960 @end example
3961 @cindex @code{cl_abort ()}
3962 This function must not return control to its caller.
3963
3964
3965 @node Floating-point underflow, Customizing I/O, Error handling, Customizing
3966 @section Floating-point underflow
3967 @cindex underflow
3968
3969 Floating point underflow denotes the situation when a floating-point number
3970 is to be created which is so close to @code{0} that its exponent is too
3971 low to be represented internally. By default, this causes a fatal error.
3972 If you set the global variable
3973 @example
3974 cl_boolean cl_inhibit_floating_point_underflow
3975 @end example
3976 to @code{cl_true}, the error will be inhibited, and a floating-point zero
3977 will be generated instead.  The default value of 
3978 @code{cl_inhibit_floating_point_underflow} is @code{cl_false}.
3979
3980
3981 @node Customizing I/O, Customizing the memory allocator, Floating-point underflow, Customizing
3982 @section Customizing I/O
3983
3984 The output of the function @code{fprint} may be customized by changing the
3985 value of the global variable @code{cl_default_print_flags}.
3986 @cindex @code{cl_default_print_flags}
3987
3988
3989 @node Customizing the memory allocator,  , Customizing I/O, Customizing
3990 @section Customizing the memory allocator
3991
3992 Every memory allocation of CLN is done through the function pointer
3993 @code{cl_malloc_hook}. Freeing of this memory is done through the function
3994 pointer @code{cl_free_hook}. The default versions of these functions,
3995 provided in the library, call @code{malloc} and @code{free} and check
3996 the @code{malloc} result against @code{NULL}.
3997 If you want to provide another memory allocator, you need to define
3998 the variables @code{cl_malloc_hook} and @code{cl_free_hook} yourself,
3999 like this:
4000 @example
4001 #include <cl_malloc.h>
4002 void* (*cl_malloc_hook) (size_t size) = @dots{};
4003 void (*cl_free_hook) (void* ptr)      = @dots{};
4004 @end example
4005 @cindex @code{cl_malloc_hook ()}
4006 @cindex @code{cl_free_hook ()}
4007 The @code{cl_malloc_hook} function must not return a @code{NULL} pointer.
4008
4009 It is not possible to change the memory allocator at runtime, because
4010 it is already called at program startup by the constructors of some
4011 global variables.
4012
4013
4014
4015
4016 @c Indices
4017
4018 @node Index,  , Customizing, Top
4019 @unnumbered Index
4020
4021 @printindex my
4022
4023
4024 @c Table of contents
4025 @contents
4026
4027
4028 @bye