Description Usage Arguments Details Value References See Also Examples
This is the internal function that implements Improved Harmony Search
Algorithm. It is used to solve continuous optimization tasks.
Users do not need to call it directly,
but just use metaOpt
.
1 2 | HS(FUN, optimType = "MIN", numVar, numPopulation = 40, maxIter = 500,
rangeVar, PAR = 0.3, HMCR = 0.95, bandwith = 0.05)
|
FUN |
an objective function or cost function, |
optimType |
a string value that represent the type of optimization.
There are two option for this arguments: |
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 |
PAR |
a positive integer to determine the value of Pinch Adjusting Ratio. The default value is 0.3. |
HMCR |
a positive integer to determine the Harmony Memory Consideration Rate. The default value is 0.95. |
bandwith |
a positive integer to determine the bandwith. The default value is 0.05. |
Harmony Search (HS) was proposed by (Geem et al., 2001) mimicking the improvisation of music players. Furthermore, Improved Harmny Search (HS), proposed by Mahdavi, employs a method for generating new solution vectors that enhances accuracy and convergence rate of harmony search algorithm.
In order to find the optimal solution, the algorithm follow the following steps.
Step 1. Initialized the problem and algorithm parameters
Step 2. Initialize the Harmony Memory, creating the Harmony memory and give random rumber for each memory.
Step 3. Improvise new Harmony, Generating new Harmony based on parameter defined by user
Step 4. Update the Harmony Memory, If new harmony have better fitness than the worst harmony in Harmony Memory, then replace the worst harmony with new Harmony.
Step 5. Check termination criteria, if termination criterion is satisfied, return the best Harmony as the optimal solution for given problem. Otherwise, back to Step 3.
Vector [v1, v2, ..., vn]
where n
is number variable
and vn
is value of n-th
variable.
Geem, Zong Woo, Joong Hoon Kim, and G. V. Loganathan (2001). "A new heuristic optimization algorithm: harmony search." Simulation 76.2: pp. 60-68.
M. Mahdavi, M. Fesanghary, E. Damangir, An improved harmony search algorithm for solving optimization problems, Applied Mathematics and Computation, Volume 188, Issue 2, 2007, Pages 1567-1579, ISSN 0096-3003, https://doi.org/10.1016/j.amc.2006.11.033
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ##################################
## Optimizing the quartic with noise function
# define Quartic with noise function as objective function
quartic <- function(x){
dim <- length(x)
result <- sum(c(1:dim)*(x^4))+runif(1)
return(result)
}
## Define parameter
numVar <- 5
rangeVar <- matrix(c(-10,10), nrow=2)
PAR <- 0.3
HMCR <- 0.95
bandwith <- 0.05
## calculate the optimum solution using Harmony Search algorithm
resultHS <- HS(quartic, optimType="MIN", numVar, numPopulation=20,
maxIter=100, rangeVar, PAR, HMCR, bandwith)
## calculate the optimum value using quartic with noise function
optimum.value <- quartic(resultHS)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.