``bayex.acq`` module
--------------------

This module contains the implementation of various acquisition functions used in Bayesian optimization.
These functions help in selecting the next point to sample based on the current model of the objective function.

.. currentmodule:: bayex.acq

.. autosummary::
   :toctree: generated/
   :nosignatures:

   expected_improvement
   probability_improvement
   upper_confidence_bounds
   lower_confidence_bounds

.. automodule:: bayex.acq
   :members:
   :undoc-members:
   :show-inheritance:
   :no-index:

