Sha256: 9955df00563d3a4f62cc2397e48f017e592e281efbc4082598454f8340943744

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

= ruby-mpfi

* https://github.com/ytaka/ruby-mpfi/
* http://rubygems.org/gems/ruby-mpfi/

== Description:

ruby-mpfi is an extended C library to use MPFI[http://gforge.inria.fr/projects/mpfi/]
which is the library of the interval arithmetic with multiprecision.

== Notice:

* Many methods have not been tested sufficiently.
* Documentation is not complete.

== Example:
You must require 'mpfr' to use 'mpfi'.

 require "mpfr"
 require "mpfi"
 MPFR.set_default_prec(100)
 a = MPFI(-5)
 b = MPFI(3.4)
 c = a - b


== Requirements:

* Ruby[http://www.ruby-lang.org/] 1.9.1 or later
* MPFR[http://www.mpfr.org/] 3.0.0 or later
* MPFI[http://gforge.inria.fr/projects/mpfi/] 1.3.4 or later
* ruby-mpfr

== Install:
The package of rubygems of ruby-mpfr is provided.
You can install ruby-mpfr with the following command
in the system satisfying the above requirements.
 
 $ gem install ruby-mpfi

== License:

ruby-mpfi
Copyright (C) 2009 Takayuki YAMAGUCHI

This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free 
Software Foundation; either version 3 of the License, or (at your option) any
later version. 

This program is distributed in the hope that it will be useful, but WITHOUT 
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details. 

You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-mpfi-0.0.10 README.rdoc
ruby-mpfi-0.0.9 README.rdoc
ruby-mpfi-0.0.8 README.rdoc
ruby-mpfi-0.0.7 README.rdoc