Class Library for Numbers

CLN, a Class Library for Numbers
Developer(s) Bruno Haible and Richard B. Kreckel
Stable release
1.3.4 / October 16, 2014 (2014-10-16)
Written in C++
Operating system Cross-platform
Type Mathematical software
License GPL
Website http://www.ginac.de/CLN/

CLN is a free library for arbitrary precision arithmetic. It operates on signed integers, rational numbers, floating point numbers, complex numbers, modular numbers, and univariate polynomials. Its implementation programming language is C++.

CLN uses object oriented techniques and operator overloading to achieve a natural algebraic syntax: The sum x of two variables a and b is written as x = a + b, as opposed to the function sum(&x, a, b).

CLN uses class inheritance to model the natural subsets of the available number types: E.g. the integer class is a subtype of the rational class, just as the integer numbers are a subset of the rational numbers. The complex numbers and all its subtypes behave exactly like the types of numbers known to the Common Lisp language, giving CLN another meaning: it becomes an abbreviation of Common Lisp Numbers. Due to this, CLN can be and is used for implementations of Common Lisp, other interpreted languages, or computer algebra systems.

The implementation is efficient. It can be configured to use the GNU Multi-Precision Library as kernel for speed-critical inner loops and implements advanced algorithms like Schönhage–Strassen multiplication, binary splitting and others. All CLN objects are either immediate or reference counted, providing for non-interruptive garbage collection with no burden on the main application.

External links

This article is issued from Wikipedia - version of the 10/16/2014. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.