| Algorithm 2 The whole algorithm for optimal LBTC. |
|
Input: A movement bound , a set of sensors with positions , the sensing radii r, a set of POIs with positions , where is the position for ; |
| Output: The minimized maximum movement of the sensors together with new positions |
| 1: Set and , where is the maximum distance between the sensors and the POIs; |
| 2: If there exists no coverage returned from calling Algorithm 1 wrt then |
| 3: Return “infeasible”; |
| 4: EndIf |
| 5: Set ; |
| 6: While do |
| 7: If there exists no coverage returned from calling Algorithm 1 wrt then |
| 8: Set and ; |
| 9: Else |
| 10: Set and then ; |
| 11: EndIf |
| 12: End While |
| 13: Return the result of call Algorithm 1 wrt . |