Skip to content

Commit 28ca742

Browse files
authored
Update algorithm.md
1 parent 5bb9e7c commit 28ca742

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/algorithm.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Additionally, by not requiring the Lipschitz constant, the DIRECT algorithm is a
88

99
---
1010

11-
- The figure below shows the DIRECT method after 16 iterations on the Branin function. The cells are much denser around the minima of the Branin function because the DIRECT method is designed to increase its resolution in promising regions..
11+
- The figure below shows the DIRECT method after 16 iterations on the Branin function. The cells are much denser around the minima of the Branin function because the DIRECT method is designed to increase its resolution in promising regions.
1212

1313
![page_11](https://github.com/user-attachments/assets/b833bedd-41aa-40c5-a27f-26188a171797)
1414
---
@@ -23,7 +23,7 @@ Additionally, by not requiring the Lipschitz constant, the DIRECT algorithm is a
2323
g(\mathbf{x}) = f(\mathbf{x} \odot (\mathbf{b} - \mathbf{a}) + \mathbf{a})
2424
```
2525

26-
After finding the minimum $x^*$ of $g$, The minimizer of $f$ is
26+
After finding the minimum $x^*$ of $g$, The minimizer of $f$ is:
2727

2828
```math
2929
\mathbf{x}^* \odot (\mathbf{b} - \mathbf{a}) + \mathbf{a}
@@ -33,7 +33,7 @@ After finding the minimum $x^*$ of $g$, The minimizer of $f$ is
3333
2. **Function Evaluation**:
3434
- DIRECT partitions its search space into hyperrectangular intervals.
3535
- The objective function is evaluated at the center of each hyper-rectangle.
36-
- Each interval has a center $c^{(i)}$, an associated objective function value $f(c^{(i)})$, and a radius $r^{(i)}$. The radius is the distance from the center to a vertex."
36+
- Each interval has a center $c^{(i)}$, an associated objective function value $f(c^{(i)})$, and a radius $r^{(i)}$. The radius is the distance from the center to a vertex.
3737

3838
4. **Selection of Potentially Optimal Rectangles**:
3939
- In each iteration, the algorithm identifies potentially optimal rectangles. A rectangle is considered potentially optimal if it could contain the global minimum based on the evaluations performed so far.

0 commit comments

Comments
 (0)