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.
 
 
 
 
 
Alexei Sheplyakov 8291a5fb2a Remove libtool bits from the repository. 16 years ago
CVSROOT initial checkin 25 years ago
autoconf Remove libtool bits from the repository. 16 years ago
benchmarks build: compile benchmark programs too. 16 years ago
doc Remove libtool bits from the repository. 16 years ago
examples build: switch to ordinary auto* tools system. 16 years ago
include/cln don't expose configure generated headers to users. 16 years ago
m4 Remove libtool bits from the repository. 16 years ago
src don't expose configure generated headers to users. 16 years ago
tests tests: test_I_io: ignore read_integer() failures on woe32. 16 years ago
COPYING * Update new FSF address _everywhere_. 20 years ago
ChangeLog Remove support for K&R C compilers. 17 years ago
FILES Rework of autoconfiscation infrastructure 21 years ago
INSTALL Add OS X Leopard (as reported by Ron Garret). 17 years ago
INSTALL.generic - INSTALL.generic: Clarified behaviour of --with-gmp. 25 years ago
Makefile.am build: compile benchmark programs too. 16 years ago
Makefile.devel New file, for recreating the build prerequisites after a CVS checkout. 17 years ago
NEWS Finalize release 1.2.2. 17 years ago
README * Prepare for release in a couple of days. 17 years ago
TODO Re-esatblish 1.2.0 ABI, broken 2008-02-22 [Alexei Sheplyakov]. 17 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 don't expose configure generated headers to users. 16 years ago

README

Class Library for Numbers

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

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>