ruby-mpfr 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/README.rdoc +6 -3
- data/lib/mpfr/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -21,11 +21,14 @@ MPFR::ColumnVector, and MPFR::RowVector.
|
|
|
21
21
|
== Requirements:
|
|
22
22
|
|
|
23
23
|
* Ruby[http://www.ruby-lang.org/] 1.9.1 or later
|
|
24
|
-
* MPFR[http://www.mpfr.org/]
|
|
24
|
+
* MPFR[http://www.mpfr.org/] 3.0.0 or later
|
|
25
25
|
|
|
26
|
-
For Ubuntu
|
|
26
|
+
For Ubuntu 10.10, we can install MPFR with the following command.
|
|
27
27
|
$ sudo apt-get install libmpfr-dev
|
|
28
28
|
|
|
29
|
+
Note that ruby-mpfr does not work on MPFR 2.
|
|
30
|
+
So, we need to upgrade MPFR to version 3.
|
|
31
|
+
|
|
29
32
|
== Install:
|
|
30
33
|
The package of rubygems of ruby-mpfr is provided.
|
|
31
34
|
You can install ruby-mpfr with the following command
|
|
@@ -45,7 +48,7 @@ The following is an another multiple precision library which uses GMP.
|
|
|
45
48
|
== License:
|
|
46
49
|
|
|
47
50
|
ruby-mpfr
|
|
48
|
-
Copyright (C) 2009 Takayuki YAMAGUCHI
|
|
51
|
+
Copyright (C) 2009 - 2010 Takayuki YAMAGUCHI
|
|
49
52
|
|
|
50
53
|
This program is free software; you can redistribute it and/or modify it under
|
|
51
54
|
the terms of the GNU Lesser General Public License as published by the Free
|
data/lib/mpfr/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
RUBY_MPFR_VERSION = '0.0.
|
|
1
|
+
RUBY_MPFR_VERSION = '0.0.9'
|