![]() |
ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This module contains procedures, generic interfaces, and types for numerical optimizations of mathematical functions. More...
Data Types | |
interface | getMinBrent |
Generate and return the minimum value and the corresponding abscissa xmin of the input 1-dimensional function isolated to a fractional precision of about tol using the Brent method.More... | |
interface | isBracketMax |
Generate and return .true. if and only if a concave quadratic curve can fit the specified input triple [xmin, xlow, xupp] and the function value at the middle point xmin` is larger than both boundary point function values.More... | |
interface | isBracketMin |
Generate and return .true. if and only if a convex quadratic curve can fit the specified input triple [xmin, xlow, xupp] and the function value at the middle point xmin is smaller than both boundary point function values.More... | |
interface | isFailedMinPowell |
Generate and return .true. if and only if the algorithm fails to find the minimum value and the corresponding abscissa xmin(1:ndim) of the input arbitrary (ndim ) dimensional-support function isolated to a fractional precision of about tol using the Powell unconstrained derivative-free minimization method.More... | |
interface | setBracketMax |
Refine an initial input interval such that the final returned interval is guaranteed to contain the maximum of the user-specified input function. More... | |
interface | setBracketMin |
Refine an initial input interval such that the final returned interval is guaranteed to contain the minimum of the user-specified input function. More... | |
interface | setMinBrent |
Compute and return the minimum value and the corresponding abscissa xmin of the input 1-dimensional function isolated to a fractional precision of about tol using the Brent method.More... | |
interface | setMinPowell |
Compute and return the minimum value and the corresponding abscissa xmin(1:ndim) of the input arbitrary (ndim ) dimensional-support function isolated to a fractional precision of about tol using the Powell unconstrained derivative-free minimization method.More... | |
Variables | |
character(*, SK), parameter | MODULE_NAME = "@pm_optimization" |
This module contains procedures, generic interfaces, and types for numerical optimizations of mathematical functions.
The following methods are currently included in this module:
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
character(*, SK), parameter pm_optimization::MODULE_NAME = "@pm_optimization" |
Definition at line 87 of file pm_optimization.F90.