Research Article

Identification of Fuzzy Inference Systems by Means of a Multiobjective Opposition-Based Space Search Algorithm

Pseudocode 2

Pseudocode of multiobjective opposition-based space search algorithm (MOSSA).
   Initialize a solution set (population);
   Evaluate each solution in the solution set P;
   While (not satisfy terminate condition)
     Space search (case I);
     Sort all solutions in S based on non-domination;
     Remove the worst solution from the current solution set P;
     Space search (case II);
     Sort all solutions in S based on non-domination;
     Remove the worst solution from the current solution set P;
   Complete Opposition-Based Operation, and generate solution set OP;
   Sort all solutions in based on non-domination
   Select h fittest solutions from ;
 End While
 Output the optimal solution.