]> AND Private Git Repository - desynchronisation-controle.git/blob - IWCMC14/argmin.tex
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
correction HLG
[desynchronisation-controle.git] / IWCMC14 / argmin.tex
1 The approach detailed previously requires to compute 
2 the variable that minimizes four convex functions
3 on constraint domains, one  
4 for each primal variable $q_i$, $P_{sh}$, $R_h$, and $x_{hl}$,
5 Among state of the art for this optimization step, there is
6 the  L-BFGS-B algorithm~\cite{byrd1995limited}, 
7 the truncated Newton algorithm, 
8 the Constrained Optimization BY Linear Approximation (COBYLA) method~\cite{ANU:1770520}.
9 However, all these methods suffer from being iterative approaches 
10 and need many steps of computation to obtain an approximation 
11 of the minimal value. This approach is dramatic whilst the objective is to 
12 reduce all the computation steps. 
13   
14 A closer look to each function that has to be minimized shows that it is
15 differentiable and the minimal value can be computed in only one step. 
16 The table~\ref{table:min} presents these minimal value for each primal
17 variable.
18
19 \begin{table*}[t]
20 $$
21 \begin{array}{|l|l|l|}
22 \hline
23 q_i^{(k)} &
24  \arg\min_{q_i>0}
25 \left(
26 q^2 + q. 
27 \left(
28 \sum_{l \in L } a_{il}w_l^{(k)}-
29 \lambda_i^{(k)}B_i
30 \right)
31 \right)
32  & 
33 \max \left(\epsilon,\dfrac{\sum_{l \in L } a_{il}w_l^{(k)}-
34 \lambda_i^{(k)}B_i}{2}\right) \\
35 \hline
36 P_{sh}^{(k)}& 
37 \arg \min_{p > 0} 
38 \left(
39 v_h^{(k)}.\dfrac{\ln(\sigma^2/D_h)}{\gamma p^{2/3}} + \lambda_h^{(k)}p
40 + \delta_p p^{8/3}
41 \right)
42 &
43 \max \left(\epsilon,
44 \left(
45 \dfrac{
46 -\lambda_h^{(k)} + \sqrt{(\lambda_h^{(k)})^2 + \dfrac{64}{9}\alpha}
47 }{\frac{16}{3}\delta_p}
48 \right)^{\frac{3}{5}}
49 \right) \\
50 \hline
51 R_h^{(k)}
52 &
53 \arg \min_{r \geq 0 }
54 \left(
55 \delta_r r^2 
56 -v_h^{(k)}.r - \sum_{i \in N} u_{hi}^{(k)} \eta_{hi}
57 \right) &
58 \max\left(0,\dfrac{v_h^{(k)}}{2\delta_r}\right)
59 \\
60 \hline
61 x_{hl}^{(k)} &
62 \begin{array}{l}
63 \arg \min_{x \geq 0}
64 \left(
65 \delta_x.x^2  \right.\\
66 \qquad \qquad + x.
67 \sum_{i \in N} \left( 
68 \lambda_{i}^{(k)}.(c^s_l.a_{il}^{+} +
69 c^r. a_{il}^{-} ) \right.\\
70 \qquad \qquad\qquad \qquad +
71 \left.\left. u_{hi}^{(k)} a_{il}
72 \right)
73 \right)
74 \end{array}
75 &
76 \max\left(0,\dfrac{-\sum_{i \in N} \left( 
77 \lambda_{i}^{(k)}.(c^s_l.a_{il}^{+} +
78 c^r. a_{il}^{-} ) + u_{hi}^{(k)} a_{il}
79 \right)}{2\delta_x}\right)
80 \\
81 \hline
82 \end{array}
83 $$
84 \caption{Expression of each optimized primal variable}
85 \end{table*}
86
87