SASMAsims / GSA_orig.m
GSA_orig.m
Raw
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% GSA code v1.1.
% Generated by Esmat Rashedi, 2010. 
% "	E. Rashedi, H. Nezamabadi-pour and S. Saryazdi,
% �GSA: A Gravitational Search Algorithm�, Information sciences, vol. 179,
% no. 13, pp. 2232-2248, 2009."
% Gravitational Search Algorithm.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%-Adapted by Pedro Bento November 2023
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [Fbest,Lbest,convergence,time_GSA]=GSA_orig(N,max_it,lb,ub,dim,fobj,Pos)
tic
%V:   Velocity.
%a:   Acceleration.
%M:   Mass.  Ma=Mp=Mi=M;
%dim: Dimension of the test function.
%N:   Number of agents.
%X:   Position of agents. dim-by-N matrix.
%R:   Distance between agents in search space.
%[low-up]: Allowable range for search space.
%Rnorm:  Norm in eq.8.
%Rpower: Power of R in eq.7.

min_flag=1; % 1: minimization, 0: maximization
ElitistCheck=1; 
Rpower=1;
Rnorm=2;
fitness=zeros(1,N)+inf;

%random initializated agents.
X=Pos;
%create the best so far chart and average fitnesses chart.
BestChart=[];MeanChart=[];
V=zeros(N,dim);
for iteration=1:max_it
    %Checking allowable range.
    X=space_bound(X,ub,lb);
    %Evaluation of agents.
    for ij=1:N
        fitness(ij)=fobj(X(ij,:));
    end
    
    if min_flag==1
        [best best_X]=min(fitness); %minimization.
    else
        [best best_X]=max(fitness); %maximization.
    end
    
    if iteration==1
        Fbest=best;Lbest=X(best_X,:);
    end
    if min_flag==1
        if best<Fbest  %minimization.
            Fbest=best;Lbest=X(best_X,:);
        end
    else
        if best>Fbest  %maximization
            Fbest=best;Lbest=X(best_X,:);
        end
    end
    
    BestChart=[BestChart Fbest];
    MeanChart=[MeanChart mean(fitness)];
    %Calculation of M. eq.14-20
    [M]=massCalculation(fitness,min_flag);
    %Calculation of Gravitational constant. eq.13.
    G=Gconstant(iteration,max_it);
    %Calculation of accelaration in gravitational field. eq.7-10,21.
    a=Gfield(M,X,G,Rnorm,Rpower,ElitistCheck,iteration,max_it);
    %Agent movement. eq.11-12
    [X,V]=move(X,a,V);
end %iterations
convergence=BestChart;
time_GSA=toc;
%________________________________________________________________%
%% Auxiliary nested functions
%________________________________________________________________%
%This function calculates the mass of each agent. eq.14-20
    function [M]=massCalculation(fit,min_flag)
        %%%%here, make your own function of 'mass calculation'
        Fmax=max(fit); Fmin=min(fit); 
%         Fmean=mean(fit); [i N]=size(fit);
        if Fmax==Fmin
            M=ones(N,1);
        else
            
            if min_flag==1 %for minimization
                besti=Fmin;worst=Fmax; %eq.17-18.
            else %for maximization
                besti=Fmax;worst=Fmin; %eq.19-20.
            end
            
            M=(fit-worst)./(besti-worst); %eq.15,
        end
        M=M./sum(M); %eq. 16.
    end
%________________________________________________________________%
%This function updates the velocity and position of agents.
    function [X,V]=move(X,a,V)
        %movement.
%         [N,dim]=size(X);
        V=rand(N,dim).*V+a; %eq. 11.
        X=X+V; %eq. 12.
    end
%________________________________________________________________%
%This function checks the search space boundaries for agents.
    function  X=space_bound(X,up,low)
%         [N,dim]=size(X);
        for i=1:N
            %     %%Agents that go out of the search space, are reinitialized randomly .
            % Tp=X(i,:)>up;Tm=X(i,:)<low;X(i,:)=(X(i,:).*(~(Tp+Tm)))+((rand(1,dim).*(up-low)+low).*(Tp+Tm));
            %     %%Agents that go out of the search space, are returned to the boundaries.
            Tp=X(i,:)>up;Tm=X(i,:)<low;X(i,:)=(X(i,:).*(~(Tp+Tm)))+up.*Tp+low.*Tm;
        end
    end
%________________________________________________________________%
% This function calculates Gravitational constant. eq.13.
    function G=Gconstant(iteration,max_it)
        %%%here, make your own function of 'G'
        alfa=20;G0=100;
        G=G0*exp(-alfa*iteration/max_it); %eq. 28.
    end
%________________________________________________________________%
%This function calculates the accelaration of each agent in gravitational field. eq.7-10,21.
    function a=Gfield(M,X,G,Rnorm,Rpower,ElitistCheck,iteration,max_it)
%         [N,dim]=size(X);
        final_per=2; %In the last iteration, only 2 percent of agents apply force to the others.
        %%%%total force calculation
        if ElitistCheck==1
            kbest=final_per+(1-iteration/max_it)*(100-final_per); %kbest in eq. 21.
            kbest=round(N*kbest/100);
        else
            kbest=N; %eq.9.
        end
        [Ms ds]=sort(M,'descend');
        for i=1:N
            E(i,:)=zeros(1,dim);
            for ii=1:kbest
                j=ds(ii);
                if j~=i
                    R=norm(X(i,:)-X(j,:),Rnorm); %Euclidian distanse.
                    for k=1:dim
                        E(i,k)=E(i,k)+rand*(M(j))*((X(j,k)-X(i,k))/(R^Rpower+eps));
                        %note that Mp(i)/Mi(i)=1
                    end
                end
            end
        end
        %%acceleration
        a=E.*G; %note that Mp(i)/Mi(i)=1
    end
%________________________________________________________________%
%________________________________________________________________%
end %function