Learn R Programming

tabuSearch (version 1.2.0)

summary.tabu: R Based Tabu Search Summary Function

Description

Summarizes the results of a tabu search optimization run.

Usage

# S3 method for tabu
summary(object, verbose = FALSE, ...)

Value

a matrix of configurations from iterations with maximum value of objective function (i.e. Optimum configuration).

Arguments

object

a tabu object.

verbose

if true, the optimal configuration(s) will be printed.

...

other options (ignored).

Examples

Run this code
# 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