Research Article

A Hybrid Metaheuristic DE/CS Algorithm for UCAV Three-Dimension Path Planning

Algorithm 1

Algorithm of DE with DE/rand/1/bin scheme.
Begin
Step : Initialization. Set the generation counter ; randomly generate a population of NP
    individuals ; set the weighting factor and a crossover constant CR
Step : Evaluate the fitness for each individual in
Step : while the halting criteria is not satisfied do
       for   to NP do
        Select uniform randomly
        rand
         for   to   do
           if rand CR or == rand then
             
           else
             
           end if
         end for
       end for
        for to NP do
        Evaluate the offspring
        if is better than   then
          
        end if
      end for
        Memorize the best solution achieved so far
       
Step : end while
End.