You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Richard Kreckel 3c77def744 * src/float/transcendental/cl_F_lnx.cc: Make actuallen of type uintC. 17 years ago
CVSROOT initial checkin 25 years ago
autoconf * autoconf/config.guess, autoconf/config.sub: updated from automake-1.9. 17 years ago
benchmarks * Another $EXEECT missing, reported by Fabian Seoane. 18 years ago
doc * doc/cln.tex: Put entire document in @dircategory Mathematics. 17 years ago
examples On popular demand (Debian bug #286266, Ubuntu bug #128851): 17 years ago
include/cln * include/cln/types.h ([su]intE): 64-bit exponents for MIPS and RS6000. 17 years ago
m4 Silly workaround for silly bug in gmp.h: 17 years ago
src * src/float/transcendental/cl_F_lnx.cc: Make actuallen of type uintC. 17 years ago
tests * */*: Remove cl_boolean, cl_true, and cl_false in favor of built-in 18 years ago
COPYING * Update new FSF address _everywhere_. 20 years ago
ChangeLog * src/float/transcendental/cl_F_lnx.cc: Make actuallen of type uintC. 17 years ago
FILES Rework of autoconfiscation infrastructure 21 years ago
INSTALL Remove exception hooks in favor of real C++ exceptions: 18 years ago
INSTALL.generic - INSTALL.generic: Clarified behaviour of --with-gmp. 25 years ago
Makefile.devel * Exclude CVSROOT from the package. 19 years ago
Makefile.in * doc/cln.tex: Put entire document in @dircategory Mathematics. 17 years ago
NEWS * */*: Convert encoding from ISO 8859-1 to UTF-8. 17 years ago
README * Belated happy new year! 17 years ago
TODO Initial revision 25 years ago
TODO-subclass Initial revision 25 years ago
TODO-verylong Initial revision 25 years ago
cln.pc.in Debian Bug#412103: 18 years ago
cln.spec.in * cln.spec.in (Source0): Package is bzip2-compressed. 18 years ago
configure.ac Beautify GMP test macro. 17 years ago

README

Class Library for Numbers

Copyright (c) Bruno Haible 1988-2007
Copyright (c) Richard Kreckel 2000-2007

GPL

Features:
- Rich set of number classes:
Integer (unlimited precision), rational, short float,
single float, double float, long float (unlimited
precision), complex, modular integer, univariate polynomial.
- Elementary, logical, transcendental functions.
- C++ as implementation language brings
- efficiency,
- type safety,
- algebraic syntax.
- Memory efficiency:
- Small integers and short floats are immediate,
not heap allocated.
- Automatic, non-interruptive garbage collection.
- Speed efficiency:
- Assembly language kernel for some CPUs,
- Karatsuba and Schönhage-Strassen multiplication.
- Interoperability:
- Garbage collection with no burden on
the main application,
- hooks for memory allocation.

Requires: C++ compiler g++.
The following C++ features are used:
classes, member functions, overloading of functions and operators,
constructors and destructors, inline, const, multiple inheritance,
templates, namespaces, and exceptions.
The following C++ features are not used:
new, delete, virtual inheritance.

Homepage: <http://www.ginac.de/CLN>