Research Article

A Comparison of Local Search Methods for the Multicriteria Police Districting Problem on Graph

Algorithm 1

Local search algorithm pseudocode.
procedure  
*; Initialize the best solution found to the initial solution.
;
while    do
; Select a neighboring solution.
if   better than *  then
  *; Save the best solution found so far.
end if
; Increase the iteration counter.
end while
return  *;
end procedure