Research Article

Study on Cargo Products’ Layout Optimization of Truck Railway Line

Algorithm 1

The pseudo-code of ICA-VNS.
Begin
 Set MaxNum, M, ;
 Set Num = 0
   Randomly generated initial population of N antibodies;
  While (Num < MaxNum)
   Distribute the OD flow based on software CPLEX, calculate objective value;
   Cloning operation, clone the antibody population according to certain rules based on objective value;
   Mutation operation, using variable neighborhood search algorithm in this step, use Update operator and Single-point mutation operator method for generating neighborhood
   Get New N antibodies
   Num = Num + 1
  Get optimal antibody from
End