Research Article

A Chaotic Hybrid Immune Genetic Algorithm for Spectrum Allocation Optimization in ICRSN

Algorithm 1

Algorithm flow (https://www.researchgate.net/publication/344213166_GA-_optimization_-_reward).
    The chaos hybrid immune genetic algorithm based on spectrum allocation
Begin
  Generate the initial population
  Evaluate the reward according (1)
  Evaluate the throughput according (4)
  Set gen=0.
  While gen has not reached designed global MAXGEN
   Population selection
   Population crossover
   Population mutation
   Update the population
   Evaluate the reward
   Evaluate the throughput
   gen=gen+1.
  end while
  Evaluate the optimal reward
  Output the best solution with maximum reward
End