Skip to content

Commit 3fa4731

Browse files
committed
Elaborate parameters
1 parent 39087d4 commit 3fa4731

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/usage/params.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ The details of the parameters are as below:
2121
|-----------|-------------|---------|
2222
| `maxIteration` | The maximum number of iterations. | `100` |
2323
| `epsilonStar` | The accuracy of an approximate optimal solution for primal and dual SDP. **If using the multiprecision backend, this parameter may be reduced by orders of magnitude to achieve extended precision.** | `1.0E-7` |
24-
| `lambdaStar` | An initial point. | `1.0E2` |
25-
| `omegaStar` | The search region for an optimal solution. | `2.0` |
26-
| `lowerBound` | Lower bound of the minimum objective value of the primal SDP. | `-1.0E5` |
27-
| `upperBound` | Upper bound of the maximum objective value of the dual SDP. | `1.0E5` |
24+
| `lambdaStar` | Sets $\lambda$ for the initial point, which is then determined as: $x^0 = 0, X^0 = \lambda I, Y^0 = \lambda I$. A large $\lambda$ is recommended. | `1.0E2` |
25+
| `omegaStar` | The search region for an optimal solution. Precisely, the algorithm will terminate if the primal problem has no minimum solution in the region $\mathcal{O} \preceq X \preceq \omega X^0$ or if the dual problem has no maximum solution in the region $\mathcal{O} \preceq Y \preceq \omega Y^0$. A small $\omega > 1$ is recommended. | `2.0` |
26+
| `lowerBound` | Lower bound of the minimum objective value of the primal SDP. **The solver will terminate with unbounded status once the objective crosses this value. This bound should be relaxed if the objective is known to be below this value.** | `-1.0E5` |
27+
| `upperBound` | Upper bound of the maximum objective value of the dual SDP. **The solver will terminate with unbounded status once the objective crosses this value. This bound should be relaxed if the objective is known to be above this value.** | `1.0E5` |
2828
| `betaStar` | The parameter for controlling the search direction if the current point is feasible. | `0.1` |
2929
| `betaBar` | The parameter for controlling the search direction if the current point is infeasible. | `0.2` |
3030
| `gammaStar` | A reduction factor for the primal and dual step lengths. | `0.9` |

0 commit comments

Comments
 (0)