]> www.ginac.de Git - cln.git/blob - README
f8b520bf3b356be1f887cf8724989a4b1b6e673f
[cln.git] / README
1 Class Library for Numbers
2
3 Copyright (c) Bruno Haible 1988-2001
4
5 GPL
6
7 Features:
8 - Rich set of number classes:
9   Integer (unlimited precision), rational, short float, 
10   single float, double float, long float (unlimited 
11   precision), complex, modular integer, univariate polynomial.
12 - Elementary, logical, transcendental functions.
13 - C++ as implementation language brings
14     - efficiency,
15     - type safety,
16     - algebraic syntax.
17 - Memory efficiency:
18     - Small integers and short floats are immediate,
19       not heap allocated.
20     - Automatic, non-interruptive garbage collection.
21 - Speed efficiency:
22     - Assembly language kernel for some CPUs,
23     - Karatsuba and Schönhage-Strassen multiplication.
24 - Interoperability:
25     - Garbage collection with no burden on
26       the main application,
27     - hooks for memory allocation and exceptions.
28
29 Requires: C++ compiler g++.
30 The following C++ features are used:
31 classes, member functions, overloading of functions and operators,
32 constructors and destructors, inline, const, multiple inheritance,
33 templates and namespaces.
34 The following C++ features are not used:
35 new, delete, virtual inheritance, exceptions.
36
37 Homepage: http://clisp.cons.org/~haible/packages-cln.html