Interval package: Difference between revisions

162 bytes removed ,  17 March 2018
Updated links and developer information, added reference to other IEEE 1788 software and new IEEE Std 1788.1
(Updated links and developer information, added reference to other IEEE 1788 software and new IEEE Std 1788.1)
Line 1: Line 1:
<div style="float: right; margin: 0 3em">[[File:Octave-interval.png|center]]</div>The GNU Octave interval package for real-valued interval arithmetic.
The GNU Octave interval package for real-valued [https://en.wikipedia.org/wiki/Interval_arithmetic interval arithmetic].


[[File:Interval-sombrero.png|280px|thumb|right|Plotting the interval enclosure of a function]]  
[[File:Interval-sombrero.png|280px|thumb|right|Plotting the interval enclosure of a function]]  


== Distribution ==
== Distribution ==
* [http://octave.sourceforge.net/interval/index.html Latest version at Octave Forge]
* [https://octave.sourceforge.io/interval/ Latest version at Octave Forge]
** <code>pkg install -forge interval</code>
** <code>pkg install -forge interval</code>
** [http://octave.sourceforge.net/interval/overview.html function reference]
** [https://octave.sourceforge.io/interval/overview.html function reference]
** [http://octave.sourceforge.net/interval/package_doc/index.html package documentation] (user manual)
** [https://octave.sourceforge.io/interval/package_doc/index.html package documentation] (user manual)
'''Third-party'''
'''Third-party'''
* [https://tracker.debian.org/pkg/octave-interval Debian GNU/Linux], [https://launchpad.net/ubuntu/+source/octave-interval Launchpad Ubuntu]
* [https://tracker.debian.org/pkg/octave-interval Debian GNU/Linux], [https://launchpad.net/ubuntu/+source/octave-interval Launchpad Ubuntu]
* [https://aur.archlinux.org/packages/octave-interval/ archlinux user repository]
* [https://aur.archlinux.org/packages/octave-interval/ archlinux user repository]
* Included in [https://ftp.gnu.org/gnu/octave/windows/ official Windows installer] and installed automatically with Octave (since version 4.0.1)
* Included in [https://ftp.gnu.org/gnu/octave/windows/ official Windows installer] and installed automatically with Octave (since version 4.0.1)
* [https://trac.macports.org/browser/trunk/dports/math/octave-interval MacPorts] for Mac OS X
* [https://github.com/macports/macports-ports/tree/master/math/octave-interval/ MacPorts] for Mac OS X
* [http://www.freshports.org/math/octave-forge-interval/ FreshPorts] for FreeBSD
* [https://www.freshports.org/math/octave-forge-interval/ FreshPorts] for FreeBSD
* [https://cygwin.com/cgi-bin2/package-grep.cgi?grep=octave-interval Cygwin] for Windows
* [https://cygwin.com/cgi-bin2/package-grep.cgi?grep=octave-interval Cygwin] for Windows
* [https://build.opensuse.org/package/show/science/octave-forge-interval openSUSE build service]
* [https://build.opensuse.org/package/show/science/octave-forge-interval openSUSE build service]
Line 19: Line 19:
== Development status ==
== Development status ==
* Completeness
* Completeness
** All required functions from IEEE Std 1788-2015, IEEE standard for interval arithmetic, are implemented. The standard was approved on June 11, 2015. It will remain active for ten years.
** All required functions from [https://standards.ieee.org/findstds/standard/1788-2015.html IEEE Std 1788-2015], IEEE standard for interval arithmetic, are implemented. The standard was approved by IEEE-SA on June 11, 2015. It will remain active for ten years. The standard was approved by ANSI in 2016.
** In addition there are functions for interval matrix arithmetic, plotting and solvers.
** Also, the minimalistic standard [https://standards.ieee.org/findstds/standard/1788.1-2017.html IEEE Std 1788.1-2017], IEEE standard for interval arithmetic (simplified) is fully implemented. The standard was approved by IEEE-SA on December 6, 2017 (and published in January 2018).
** In addition there are functions for interval matrix arithmetic, N-dimensional interval arrays, plotting, and solvers.
* Quality
* Quality
** Includes tests for all functions, many tests for basic functions
** Most arithmetic operations produce tight, correctly-rounded results. That is, the smallest possible interval with double-precision (binary64) endpoints, which encloses the exact result.
** No known bugs. The package is quite new and still has a small user base, so there might be hidden bugs. Also some advanced functions will always need more testing.
** Includes [https://github.com/oheim/ITF1788 large test suite] for arithmetic functions
** For open bugs please refer to the [https://savannah.gnu.org/search/?words=forge+interval&type_of_search=bugs&only_group_id=1925&exact=1 bug tracker].
* Performance
** All elementary functions have been [https://octave.org/doc/interpreter/Vectorization-and-Faster-Code-Execution.html vectorized] and run fast on large input data.
** Arithmetic is performed with the [http://www.mpfr.org/ GNU MPFR] library internally. Where possible, the optimized [http://web.archive.org/web/20170128033523/http://lipforge.ens-lyon.fr/www/crlibm/ CRlibm] library is used.
* Portability
* Portability
** Runs in GNU Octave ≥ 3.8.2
** Runs in GNU Octave ≥ 3.8.2
** Known to run under GNU/Linux, Microsoft Windows, macOS, and FreeBSD
** Known to run under GNU/Linux, Microsoft Windows, macOS, and FreeBSD
* Possible TODOs
 
** To be considered in the future: Algorithms can be migrated from the C-XSC Toolbox (C++ code) from [http://www2.math.uni-wuppertal.de/wrswt/xsc/cxsc_new.html] (nlinsys.cpp and cpzero.cpp), however these would need gradient arithmetic and complex arithmetic.
== Project ideas (TODOs) ==
** Interval version of <code>interp1</code>
* To be considered in the future: Algorithms can be migrated from the C-XSC Toolbox (C++ code) from [http://www2.math.uni-wuppertal.de/wrswt/xsc/cxsc_new.html] (nlinsys.cpp and cpzero.cpp), however these would need gradient arithmetic and complex arithmetic.
** Extend <code>subsasgn</code> to allow direct manipulation of inf and sup (and dec) properties.
* Interval version of <code>interp1</code>
* Extend <code>subsasgn</code> to allow direct manipulation of inf and sup (and dec) properties.
  >> A = infsup ("[2, 4]");
  >> A = infsup ("[2, 4]");
  >> A.inf = infsup ("[1, 3]")
  >> A.inf = infsup ("[1, 3]")
Line 41: Line 47:
  >> A.inf.inf = 42 # should produce error?
  >> A.inf.inf = 42 # should produce error?
  >> A.inf.sup = 42 # should produce error?
  >> A.inf.sup = 42 # should produce error?
:* Tight Enclosure of Matrix Multiplication with Level 3 BLAS [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ozaki.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ozaki.pdf]
* Tight Enclosure of Matrix Multiplication with Level 3 BLAS [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ozaki.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ozaki.pdf]
:* Verified Convex Hull for Inexact Data [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ohta.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ohta.pdf]
* Verified Convex Hull for Inexact Data [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ohta.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ohta.pdf]
:* Implement user-controllable output from the interval standard (e. g. via printf functions):
* Implement user-controllable output from the interval standard (e. g. via printf functions):
  a) It should be possible to specify the preferred overall field width (the length of s).
  a) It should be possible to specify the preferred overall field width (the length of s).
  b) It should be possible to specify how Empty, Entire and NaI are output,
  b) It should be possible to specify how Empty, Entire and NaI are output,
Line 55: Line 61:


== Compatibility ==
== Compatibility ==
The interval package's main goal is to be compliant with IEEE Std 1788-2015, so it is compatible with other standard-conforming implementations (on the set of operations described by the standard document).
The interval package's main goal is to be compliant with IEEE Std 1788-2015, so it is compatible with other standard-conforming implementations (on the set of operations described by the standard document). Other implementations, which are known to aim for standard conformance are:
 
* [https://github.com/JuliaIntervals/IntervalArithmetic.jl IntervalArithmetic.jl package] (Julia)
* [https://github.com/jinterval/jinterval JInterval library] (Java)
* [https://github.com/nadezhin/libieeep1788 ieeep1788 library] (C++) created by Marco Nehmeier, later forked by Dmitry Nadezhin


=== Octave Forge simp package ===
=== Octave Forge simp package ===
Line 72: Line 82:
* Basic operations can be found in both packages, but the availability of special functions depends
* Basic operations can be found in both packages, but the availability of special functions depends


{{Code|In GNU Octave the interval package can also be run alongside INTLAB.|<syntaxhighlight lang="octave">
 
# INTLAB intervals
<div style="display:flex; align-items: flex-start">
A1 = infsup (2, 3);
<div style="margin-right: 2em">
B1 = hull (-4, A1);
{{Code|Computation with this interval package|<syntaxhighlight lang="octave">
C1 = midrad (0, 2);
pkg load interval
# Interval package intervals
A1 = infsup (2, 3);
pkg load interval
B1 = hull (-4, A2);
A2 = infsup (2, 3);
C1 = midrad (0, 2);
B2 = hull (-4, A2);
 
C2 = midrad (0, 2);
A1 + B1 * C1
pkg unload interval
</syntaxhighlight>
}}
# Computation with INTLAB
</div><div>
A1 + B1 * C1
{{Code|Computation with INTLAB|<syntaxhighlight lang="octave">
# Computation without INTLAB
startintlab
A2 + B2 * C2
A2 = infsup (2, 3);
B2 = hull (-4, A2);
C2 = midrad (0, 2);
 
A2 + B2 * C2
</syntaxhighlight>
</syntaxhighlight>
}}
}}
</div>
</div>


==== Known differences ====
==== Known differences ====
Line 127: Line 143:
| isintval (x)
| isintval (x)
|}
|}
== Similar software ==
For C++ there is an interval library [https://github.com/nehmeier/libieeep1788/ libieeep1788] by Marco Nehmeier (member of IEEE P1788). It aims to be standard compliant with IEEE Std 1788-2015 and is designed in a modular way, supporting several interval data types and different flavors of interval arithmetic [http://www.youtube.com/watch?v=GOa9aWAZO_Q]. The GNU Octave interval package shares several unit tests with libieeep1788.
For Julia there is an evolving interval library [https://github.com/dpsanders/ValidatedNumerics.jl ValidatedNumerics.jl] by Luis Benet and David P. Sanders. It is planned to become conforming to IEEE Std 1788-2015 (or to the basic standard 1788.1) in the future.


== Developer Information ==
== Developer Information ==
Line 148: Line 158:


'''Build dependencies'''
'''Build dependencies'''
<code>apt-get install libmpfr-dev autoconf automake git python3-ply python3-yaml inkscape zopfli</code>
<code>apt-get install libmpfr-dev autoconf automake inkscape zopfli</code>
 
* Octave
* Mercurial
* Texinfo
* MPFR
* Octave package: doctest
** Purpose: Verification of the examples in the manual and in the function documentation
** Installation: Use <code>pkg install -forge doctest</code> inside Octave
* Octave package: generate_html
** Purpose: Generate HTML documenation for publication on Octave Forge (only needed for release)
** Installation: Use <code>pkg install -forge generate_html</code> inside Octave
* Autoconf & Automake
** Purpose: Preparation of bundled crlibm library for a release
* ITF1788
** Purpose: Compilation of unit-test
** Installation: The git repository is automatically cloned by the Makefile
* Inkscape
** Purpose: Generate / convert images for the manual
* Zopfli
** Purpose: Optimize the size of the compressed release tarball


=== Architecture ===
=== Architecture ===
Line 189: Line 179:
  |  |  `- ...                – further functions on decorated intervals
  |  |  `- ...                – further functions on decorated intervals
  |  `- ...                    – a few global functions that don't operate on intervals
  |  `- ...                    – a few global functions that don't operate on intervals
  +- src/
  `- src/
|  |  +- mpfr_function_d.cc – computes various arithmetic functions correctly rounded (using MPFR)
    +- mpfr_function_d.cc     – computes various arithmetic functions correctly rounded (using MPFR)
|  |  `- ...                 – other oct-file sources
    `- ...                     – other oct-file sources
`- test/                      – interval arithmetic unit tests


=== Best practices ===
=== Best practices ===
Line 215: Line 204:
Octave functions may be used as long as they don't introduce arithmetic errors. For example, the ceil function can be used safely since it is exact on binary64 numbers.
Octave functions may be used as long as they don't introduce arithmetic errors. For example, the ceil function can be used safely since it is exact on binary64 numbers.
  function x = ceil (x)
  function x = ceil (x)
... parameter checking ...
  ... parameter checking ...
x.inf = ceil (x.inf);
  x.inf = ceil (x.inf);
x.sup = ceil (x.sup);
  x.sup = ceil (x.sup);
  endfunction
  endfunction


Line 226: Line 215:
All functions should be implemented using vectorization and indexing. This is very important for performance on large data. For example, consider the plus function. It computes lower and upper boundaries of the result (x.inf, y.inf, x.sup, y.sup may be vectors or matrices) and then uses an indexing expression to adjust values where empty intervals would have produces problematic values.
All functions should be implemented using vectorization and indexing. This is very important for performance on large data. For example, consider the plus function. It computes lower and upper boundaries of the result (x.inf, y.inf, x.sup, y.sup may be vectors or matrices) and then uses an indexing expression to adjust values where empty intervals would have produces problematic values.
  function x = plus (x, y)
  function x = plus (x, y)
... parameter checking ...
  ... parameter checking ...
l = mpfr_function_d ('plus', -inf, x.inf, y.inf);
  l = mpfr_function_d ('plus', -inf, x.inf, y.inf);
u = mpfr_function_d ('plus', +inf, x.sup, y.sup);
  u = mpfr_function_d ('plus', +inf, x.sup, y.sup);
   
   
emptyresult = isempty (x) | isempty (y);
  emptyresult = isempty (x) | isempty (y);
l(emptyresult) = inf;
  l(emptyresult) = inf;
u(emptyresult) = -inf;
  u(emptyresult) = -inf;
 
  endfunction
  endfunction


240

edits