.. Peerless documentation master file, created by sphinx-quickstart on Fri Jun 19 11:17:10 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Peerless Optimizer ================== *Peerless* is a software to model and solve mathematical optimization problems of the form: .. math:: \begin{eqnarray} \min\; & f(x, y) & \\ s.t.\; & g(x, y) & \ge 0 \\ & h(x, y) & = 0 \\ & x \in \mathbb{R}^{n_1} &\\ & y \in \mathbb{Z}^{n_2} & \end{eqnarray} where :math:`f(x):\mathbb{R}^n\rightarrow\mathbb{R}`, :math:`g(x):\mathbb{R}^n\rightarrow\mathbb{R}^p`, :math:`h(x):\mathbb{R}^n\rightarrow\mathbb{R}^q`, with :math:`n=n_1+n_2`, are functions without any requirement on continuity, differentiability or convexity. Notice that :math:`\mathbb{R}` and :math:`\mathbb{Z}` are the set of real and integer numbers, respectively. The algorithms are designed to find the global optimimum of the problem, making *Peerless* a **Global Mixed-Integer General Nonlinear Programming**. General means that the functions in the problem can be of any type, nothing is required of them, as previously mentioned. Any type of problem ------------------- When dealing with optimization problems, one is faced with the decision of knowing in advance the type of problem that will be solved. This decision will generally bind your software to the choosen solver and will limit the ability to modify and extend the model because of the limitations impossed by it. Since *Peerless* **can handle any type of problem** (linear, nonlinear, discrete, discontinuous, non-convex, etc.), you have the freedom to create the model as you please and as close as you want to the process or situation at hand. Pure Python ----------- *Peerless* is a pure Python library that is installed in a minute by issuing [*]_: .. code-block:: bash $ pip install peerless The problems are solved in EuT's servers, or in you company's servers, meaning that you can integrate your optimization models everywhere because you don't need processing power or memory requirements to solve challenging problems. .. [*] The client side is a pure Python library. The server side is written in Python and Fortran 2018 for performance. Contents -------- .. toctree:: :maxdepth: 2 registration reference examples services license Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search`