Research Article

Application of Data-Driven Building Information Modeling in the Visual Simulation of Disease Transmission and Route with Pipeline System

Pseudocode 1

Pseudocode of research method.
BEGIN
  Randomize the start population (INITIALISE)
  Evaluate each candidate (EVALUATE)
  Repeat until the end condition is satisfied (REPEAT)
    1. Choose parents (PARENT SELECT)
    2. Crossing parents (RECOMBINE)
    3. Applying mutate to the children (MUTATE)
    4. Evaluate new candidates (EVALUATE)
    5. Choose children to survive in the next generation (SURVIVOR SELECT)
END