cln  1.3.6
About: CLN is a C++ library for efficient computations with all kinds of numbers in arbitrary precision.
  Fossies Dox: cln-1.3.6.tar.bz2  ("unofficial" and yet experimental doxygen-generated source code documentation)  

Loading...
Searching...
No Matches
cln Documentation

Some Fossies usage hints in advance:

  1. To see the Doxygen generated documentation please click on one of the items in the steelblue colored "quick index" bar above or use the side panel at the left which displays a hierarchical tree-like index structure and is adjustable in width.
  2. If you want to search for something by keyword rather than browse for it you can use the client side search facility (using Javascript and DHTML) that provides live searching, i.e. the search results are presented and adapted as you type in the Search input field at the top right.
  3. Doxygen doesn't incorporate all member files but just a definable subset (basically the main project source code files that are written in a supported language). So to search and browse all member files you may visit the Fossies cln-1.3.6.tar.bz2 contents page and use the Fossies standard member browsing features (also with source code highlighting and additionally with optional code folding).
README
Class Library for Numbers

Copyright (c)      Bruno Haible 1988-2019
Copyright (c)   Richard Kreckel 2000-2019
Copyright (c) Alexei Sheplyakov 2008-2010

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>