Metadata-Version: 2.1
Name: intvalpy
Version: 1.6.0
Summary: IntvalPy - a Python interval computation library
Home-page: https://github.com/AndrosovAS/intvalpy
Author: Андросов Артем Станиславович, Шарый Сергей Петрович
Author-email: artem.androsov@gmail.com, shary@ict.nsc.ru
License: MIT License
Description: # Interval library in Python
        
        The Python module implements an algebraically closed interval arithmetic for interval computations, solving interval systems of both
        linear and nonlinear equations, and visualizing solution sets for interval systems of equations.
        
        For details, see the complete documentation on [API](https://intvalpy.readthedocs.io/ru/latest/index.html).
        
        ## Installation
        
        Make sure you have all the system-wide dependencies, then install the module itself:
        ```
        pip install intvalpy
        ```
        
        ## Examples
        
        ### Visualizing solution sets
        
        For a system of linear inequalities of the form ``A * x >= b`` or for an interval system of linear algebraic equations ``A * x = b``,
        the solution sets are known to be polyhedral sets, convex or non-convex. We can visualize them and display all their vertices:
        
        ```python
        import intvalpy as ip
        ip.precision.extendedPrecisionQ = False
        import numpy as np
        
        
        iplt = ip.IPlot(figsize=(15, 15))
        fig, ax = iplt.subplots(nrows=2, ncols=2)
        
        
        #########################################################################
        A, b = ip.Shary(2)
        shary_uni = ip.IntLinIncR2(A, b, show=False)
        shary_tol = ip.IntLinIncR2(A, b, consistency='tol', show=False)
        
        axindex = (0, 0)
        ax[axindex].set_title('United and tolerable solution sets for the Shary interval system')
        ax[axindex].title.set_size(15)
        iplt.IntLinIncR2(shary_uni, color='gray', alpha=0.5, s=0, axindex=axindex)
        iplt.IntLinIncR2(shary_tol, color='blue', alpha=0.3, s=10, axindex=axindex)
        
        #########################################################################
        A = ip.Interval([
            [[-1, 1], [-1, 1]],
            [[-1, -1], [-1, 1]]
        ])
        b = ip.Interval([[1, 1], [-2, 2]])
        unconstrained_set = ip.IntLinIncR2(A, b, show=False)
        
        axindex = (0, 1)
        ax[axindex].set_title('Unbounded set')
        ax[axindex].title.set_size(15)
        iplt.IntLinIncR2(unconstrained_set, color='darkolivegreen', alpha=0.3, s=10, axindex=axindex)
        
        #########################################################################
        A = -np.array([[-3, -1],
                      [-2, -2],
                      [-1, -3],
                      [1, -3],
                      [2, -2],
                      [3, -1],
                      [3, 1],
                      [2, 2],
                      [1, 3],
                      [-1, 3],
                      [-2, 2],
                      [-3, 1]])
        b = -np.array([18,16,18,18,16,18,18,16,18,18,16,18])
        duodecagon = ip.lineqs(A, b, show=False)
        
        axindex = (1, 0)
        ax[axindex].set_title('Duodecagon')
        ax[axindex].title.set_size(15)
        iplt.lineqs(duodecagon, color='peru', alpha=0.3, s=10, axindex=axindex)
        
        #########################################################################
        x = ip.Interval([[1, 1.2], [1.9, 2.7], [1.7, 1.95], [3.5, 3.5],
                         [4.5, 5.5], [6, 6], [6.5, 7.5], [7, 7.8]])
        y = ip.Interval([[4, 4.3], [4.5, 5.3], [4.6, 4.8], [5.1, 6],
                         [6, 6.5], [7, 7], [6.7, 7.4], [6.8, 8]])
        
        axindex = (1, 1)
        ax[axindex].set_title('Interval scatterplot')
        ax[axindex].title.set_size(15)
        iplt.scatter(x, y, color='gray', alpha=0.7, s=10, axindex=axindex)
        ```
        ![SolSet](https://raw.githubusercontent.com/AndrosovAS/intvalpy/master/examples/SolSet.png)
        
        It is also possible to make a three-dimensional (two-dimensional) slice of an N-dimensional figure and see what the set of solutions looks like
        with fixed N-3 (N-2) parameters. A specific implementation of the algorithm can be found in the examples.
        As a result, a gif image of the united set of solutions of the system proposed by S.P. Sharym is shown below, during the evolution of the 4th unknown.
        
        ![Shary4Uni](https://raw.githubusercontent.com/AndrosovAS/intvalpy/master/examples/Shary4Uni.gif)
        
        ### Recognizing functionals:
        
        Before we start solving a system of equations with interval data it is necessary to understand whether it is solvable or not.
        To do this we consider the problem of decidability recognition, i.e. non-emptiness of the set of solutions.
        In the case of an interval linear (m x n)-system of equations, we will need to solve no more than 2\ :sup:`n`
        linear inequalities of size 2m+n. This follows from the fact of convexity and polyhedra of the intersection of the sets of solutions
        interval system of linear algebraic equations (ISLAE) with each of the orthants of **R**\ :sup:`n` space.
        Reducing the number of inequalities is fundamentally impossible, which follows from the fact that the problem is intractable,
        i.e. its NP-hardness. It is clear that the above described method is applicable only for small dimensionality of the problem,
        that is why the *recognizing functional method* was proposed.
        
        After global optimization, if the value of the functional is non-negative, then the system is solvable. If the value is negative,
        then the set of parameters consistent with the data is empty, but the argument delivering the maximum of the functional minimizes this inconsistency.
        
        As an example, it is proposed to investigate the Bart-Nuding system for the emptiness/non-emptiness of the tolerance set of solutions:
        
        ```python
        import intvalpy as ip
        
        A = ip.Interval([
          [[2, 4], [-2, 1]],
          [[-1, 2], [2, 4]]
        ])
        b = ip.Interval([[-2, 2], [-2, 2]])
        
        tol = ip.linear.Tol(A, b, maxQ=True)
        print(tol)
        ```
        
        ### External decision evaluation:
        
        To obtain an optimal external estimate of the united set of solutions of an interval system linear of algebraic equations (ISLAE),
        a hybrid method of splitting PSS solutions is implemented. Since the task is NP-hard, the process can be stopped by the number of iterations completed.
        PSS methods are consistently guaranteeing, i.e. when the process is interrupted at any number of iterations, an approximate estimate of the solution satisfies the required estimation method.
        
        ```python
        import intvalpy as ip
        
        A, b = ip.Shary(12, N=12, alpha=0.23, beta=0.35)
        pss = ip.linear.PSS(A, b)
        print('pss: ', pss)
        ```
        
        ### Interval system of nonlinear equations:
        
        For nonlinear systems, the simplest multidimensional interval methods of Krawczyk and Hansen-Sengupta are implemented for solving nonlinear systems:
        
        ```python
        import intvalpy as ip
        
        epsilon = 0.1
        def f(x):
            return ip.asinterval([x[0]**2 + x[1]**2 - 1 - ip.Interval(-epsilon, epsilon),
                                  x[0] - x[1]**2])
        
        def J(x):    
            result = [[2*x[0], 2*x[1]],
                      [1, -2*x[1]]]
            return ip.asinterval(result)
        
        ip.nonlinear.HansenSengupta(f, J, ip.Interval([0.5,0.5],[1,1]))
        ```
        
        The library also provides the simplest interval global optimization:
        
        ```python
        import intvalpy as ip
        
        def levy(x):
            z = 1 + (x - 1) / 4
            t1 = np.sin( np.pi * z[0] )**2
            t2 = sum(((x - 1) ** 2 * (1 + 10 * np.sin(np.pi * x + 1) ** 2))[:-1])
            t3 = (z[-1] - 1) ** 2 * (1 + np.sin(2*np.pi * z[-1]) ** 2)
            return t1 + t2 + t3
        
        N = 2
        x = ip.Interval([-5]*N, [5]*N)
        ip.nonlinear.globopt(levy, x, tol=1e-14)
        ```
        
        Links
        -----
        
        * [Article](<https://www.researchgate.net/publication/361560329_IntvalPy_-_biblioteka_intervalnyh_vycislenij_na_azyke_Python>)
        
        * [Homepage](<https://github.com/AndrosovAS/intvalpy>)
        
        * [Online documentation](<https://intvalpy.readthedocs.io/ru/latest/#>)
        
        * [PyPI package](<https://pypi.org/project/intvalpy/>)
        
        * A detailed [monograph](<http://www.nsc.ru/interval/Library/InteBooks/SharyBook.pdf>) on interval theory
        
Keywords: Interval,inequality visualization,optimal solutions,math,range
Platform: UNKNOWN
Description-Content-Type: text/markdown
