-$\alpha^j_i$ and $\beta^j_i$ are nonnegative weights selected according to the
-relative importance of satisfying the associated level of coverage. For example,
-weights associated with coverage intervals of a specified part of a region may
-be given by a relatively larger magnitude than weights associated with another
-region. This kind of integer program is inspired from the model developed for
-brachytherapy treatment planning for optimizing dose distribution
-\cite{0031-9155-44-1-012}. The integer program must be solved by the leader in
-each subregion at the beginning of each sensing phase, whenever the environment
-has changed (new leader, death of some sensors). Note that the number of
-constraints in the model is constant (constraints of coverage expressed for all
-sensors), whereas the number of variables $X_k$ decreases over periods, since we
-consider only alive sensors (sensors with enough energy to be alive during one
-sensing phase) in the model.
-
-\section{Performance Evaluation and Analysis}
+More precisely, $\Theta_{t,p}$ represents the number of active sensor nodes
+minus one that cover the primary point $p$ during round $t$. The
+Undercoverage variable $U_{t,p}$ of the primary point $p$ during round $t$ is
+defined by
+\begin{equation}
+U_{t,p} = \left \{
+\begin{array}{l l}
+ 1 &\mbox{if the primary point $p$ is not covered during round $t$,} \\
+ 0 & \mbox{otherwise.}\\
+\end{array} \right.
+\label{eq14}
+\end{equation}
+
+Our coverage optimization problem can then be formulated as follows
+\begin{equation}
+ \min \sum_{t=1}^{T} \sum_{p=1}^{P} \left(W_{\theta}* \Theta_{t,p} + W_{U} * U_{t,p} \right) \label{eq15}
+\end{equation}
+
+Subject to
+\begin{equation}
+ \sum_{j=1}^{|J|} \alpha_{j,p} * X_{t,j} = \Theta_{t,p} - U_{t,p} + 1 \label{eq16} \hspace{6 mm} \forall p \in P, t = 1,\dots,T
+\end{equation}
+
+\begin{equation}
+ \sum_{t=1}^{T} X_{t,j} \leq \lfloor {RE_{j}/E_{R}} \rfloor \hspace{6 mm} \forall j \in J, t = 1,\dots,T
+ \label{eq144}
+\end{equation}
+
+\begin{equation}
+X_{t,j} \in \lbrace0,1\rbrace, \hspace{10 mm} \forall j \in J, t = 1,\dots,T \label{eq17}
+\end{equation}
+
+\begin{equation}
+U_{t,p} \in \lbrace0,1\rbrace, \hspace{10 mm}\forall p \in P, t = 1,\dots,T \label{eq18}
+\end{equation}
+
+\begin{equation}
+ \Theta_{t,p} \geq 0 \hspace{10 mm}\forall p \in P, t = 1,\dots,T \label{eq178}
+\end{equation}
+
+
+
+\begin{itemize}
+\item $X_{t,j}$: indicates whether or not the sensor $j$ is actively sensing
+ during round $t$ (1 if yes and 0 if not);
+\item $\Theta_{t,p}$ - {\it overcoverage}: the number of sensors minus one that
+ are covering the primary point $p$ during round $t$;
+\item $U_{t,p}$ - {\it undercoverage}: indicates whether or not the primary
+ point $p$ is being covered during round $t$ (1 if not covered and 0 if
+ covered).
+\end{itemize}
+
+The first group of constraints indicates that some primary point $p$ should be
+covered by at least one sensor and, if it is not always the case, overcoverage
+and undercoverage variables help balancing the restriction equations by taking
+positive values. The constraint given by equation~(\ref{eq144}) guarantees that
+the sensor has enough energy ($RE_j$ corresponds to its remaining energy) to be
+alive during the selected rounds knowing that $E_{R}$ is the amount of energy
+required to be alive during one round.
+
+There are two main objectives. First, we limit the overcoverage of primary
+points in order to activate a minimum number of sensors. Second we prevent the
+absence of monitoring on some parts of the subregion by minimizing the
+undercoverage. The weights $W_\theta$ and $W_U$ must be properly chosen so as
+to guarantee that the maximum number of points are covered during each round.
+%% MS W_theta is smaller than W_u => problem with the following sentence
+In our simulations, priority is given to the coverage by choosing $W_{U}$ very
+large compared to $W_{\theta}$.
+
+
+
+
+
+\section{Experimental Study and Analysis}