Algorithm 1.
Input: c0, λ | ||
Output:
| ||
1: | k ← 0 {k is the algorithm iteration number.} | |
2: | while stopping criterion is not satisfied do | |
3: | Draw wk according to chosen distribution. | |
4: | Calculate | |
5: | Choose step size αk | |
6: | ck+1 ← ck−αkGk | |
7: | k ← k+1 | |
8: | end while | |
9: |
|