metaheuristicOpt (version 2.0.0)

CSO: Optimization using Cat Swarm Optimization Algorithm

Description

This is the internal function that implements Cat Swarm Optimization Algorithm. It is used to solve continuous optimization tasks. Users do not need to call it directly, but just use metaOpt.

Usage

CSO(FUN, optimType = "MIN", numVar, numPopulation = 40,
  maxIter = 500, rangeVar, mixtureRatio = 0.5, tracingConstant = 0.1,
  maximumVelocity = 1, smp = as.integer(20), srd = 20,
  cdc = as.integer(numVar), spc = TRUE)

Arguments

FUN

an objective function or cost function,

optimType

a string value that represent the type of optimization. There are two option for this arguments: "MIN" and "MAX". The default value is "MIN", which the function will do minimization. Otherwise, you can use "MAX" for maximization problem. The default value is "MIN".

numVar

a positive integer to determine the number variables.

numPopulation

a positive integer to determine the number populations. The default value is 40.

maxIter

a positive integer to determine the maximum number of iterations. The default value is 500.

rangeVar

a matrix (\(2 \times n\)) containing the range of variables, where \(n\) is the number of variables, and first and second rows are the lower bound (minimum) and upper bound (maximum) values, respectively. If all variable have equal upper bound, you can define rangeVar as matrix (\(2 \times 1\)).

mixtureRatio

a positive numeric between 0 and 1 to determine flaging proportion. higher mixtureRatio increase number of candidate solutions in seeking mode and vice versa. The default value is 0.5.

tracingConstant

a positive numeric between 0 and 1 to determine tracingConstant. The default value is 0.1.

maximumVelocity

a positive numeric to determine maximumVelocity while candidate solutions in tracing mode performing local search. The default value is 1.

smp

a positive integer to determine number of duplication in genetic operator. The default value is as.integer(20).

srd

a positive numeric between 0 and 100 to determine mutation length in genetic operator. The default value is 20.

cdc

a positive integer between 0 and numVar to determine number of variabel in candidate solutions in seeking mode to be mutated during mutation step in genetic operator. The default value is as.integer(numVar).

spc

a logical. if spc is TRUE smp = smp else smp = smp - 1. The default value is TRUE.

Value

Vector [v1, v2, ..., vn] where n is number variable and vn is value of n-th variable.

Details

This algorithm was proposed by (Chu, Tsai & Pan, 2006). This algorithm was inspired by behaviours of felyne. Behaviours of felyne can be devided into two seeking mode (when flyne rest) and tracing mode (when felyne chase its prey). candidate solutions divided into seeking and tracing mode. candidate solution in seeking mode move using local search while candidate solution in tracing mode move using genetic operator.

In order to find the optimal solution, the algorithm follow the following steps.

  • initialize population randomly.

  • flaging (tracing or seeking) every candidate solution in population based on mixtureRatio randomly.

  • candidate solutions in seeking mode move using local search

  • candidate solutions in tracing mode move using genetic operator

  • If a termination criterion (a maximum number of iterations or a sufficiently good fitness) is met, exit the loop, else back to flaging candidate solutions.

References

Chu, S. C., Tsai, P. W., & Pan, J. S. (2006, August). Cat swarm optimization. In Pacific Rim international conference on artificial intelligence (pp. 854-858). Springer, Berlin, Heidelberg.

See Also

metaOpt

Examples

Run this code
# NOT RUN {
##################################
## Optimizing the schewefel's problem 2.22 function

# define schewefel's problem 2.22 function as objective function
schewefels2.22 <- function(x){
   return(sum(abs(x)+prod(abs(x))))
}

## Define parameter
numVar <- 5
rangeVar <- matrix(c(-10,10), nrow=2)

## calculate the optimum solution using Ant Lion Optimizer
resultCSO <- CSO(schewefels2.22, optimType="MIN", numVar, numPopulation=20,
                 maxIter=100, rangeVar)

## calculate the optimum value using schewefel's problem 2.22 function
optimum.value <- schewefels2.22(resultCSO)

# }

Run the code above in your browser using DataLab