The Multiple Precision Floating-Point Reliable Library C++ Interface
====================================================================

  Version 1.4.2, 2007-10-25
  (c) 2006-2007 Alexey Beshenov <al@beshenov.ru>


OVERVIEW
--------

  MPFRCPP is object oriented interface to the MPFR library. MPFR provides
  arbitrary precision arithmetic on floating-point numbers. MPFRCPP
  overloads operators, functions and represents floating point numbers as
  class objects to make using of MPFR in OO-programs easier.

  MPFRCPP was not supported by any organization. Author looks for official
  support from laboratories and universities.


INSTALLATION
------------

  To use MPFRCPP you should download and install GMP [http://gmplib.org/]
  and MPFR [http://www.mpfr.org/].

  GMP should be built with C++ features support.

  GMP and MPFR come with GNU Automake files and documentation on installation
  on GNU system. If you are using Microsoft Windows, you could try GMP and
  MPFR port for Microsoft Visual Studio 2005 by Brian Gladman
  [http://fp.gladman.plus.com/computing/gmp4win.htm].

  To use MPFRCPP you need to place sources in the mpfrcpp and nacre
  subdirectories of some root directory of compiler include path
  (/usr/include/ or /usr/local/include/).

  The only one file you need to embed in static library is
  mpfrcpp/initialization.cpp. However it is optional and you could drop it if
  you want to drop pre-defined MPFRCPP global objects.


DOCUMENTATION
-------------

  Start from the the doc/index.html.
