7 buildOctavePackage rec {
12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13 sha256 = "sha256-OOUmQnN1cTIpqz2Gpf4/WghVB0fYQgVBcG/eqQk/3Og=";
16 propagatedBuildInputs = [
21 homepage = "https://octave.sourceforge.io/interval/index.html";
22 license = licenses.gpl3Plus;
23 maintainers = with maintainers; [ KarlJoad ];
24 description = "Interval arithmetic to evaluate functions over subsets of their domain";
26 The interval package for real-valued interval arithmetic allows one to
27 evaluate functions over subsets of their domain. All results are verified,
28 because interval computations automatically keep track of any errors.
30 These concepts can be used to handle uncertainties, estimate arithmetic
31 errors and produce reliable results. Also it can be applied to
32 computer-assisted proofs, constraint programming, and verified computing.
34 The implementation is based on interval boundaries represented by
35 binary64 numbers and is conforming to IEEE Std 1788-2015, IEEE standard
36 for interval arithmetic.