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.

38 lines
1.2 KiB

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