powered by
Summarizes the results of a tabu search optimization run.
# S3 method for tabu summary(object, verbose = FALSE, ...)
a matrix of configurations from iterations with maximum value of objective function (i.e. Optimum configuration).
a tabu object.
if true, the optimal configuration(s) will be printed.
other options (ignored).
# A simple example evaluateSimple <- function(th)return(1) result <- tabuSearch(size = 20, iters = 100, objFunc = evaluateSimple) summary(result) summary(result, verbose = TRUE)
Run the code above in your browser using DataLab