summary.tabu {tabuSearch} | R Documentation |
R Based Tabu Search Summary Function
Description
Summarizes the results of a tabu search optimization run.
Usage
## S3 method for class 'tabu'
summary(object, verbose = FALSE, ...)
Arguments
object |
a tabu object. |
verbose |
if true, the optimal configuration(s) will be printed. |
... |
other options (ignored). |
Examples
# A simple example
evaluateSimple <- function(th)return(1)
result <- tabuSearch(size = 20, iters = 100, objFunc = evaluateSimple)
summary(result)
summary(result, verbose = TRUE)
[Package tabuSearch version 1.1.1 Index]