Description Usage Arguments Examples
Plots features of an optimization run of the tabu search algorithm for binary strings. The default plots show: (a) the number of times each element of the string was set to one over the search, (b) frequency of moves for each element of the string over the serach, (c) the number of ones in the chosen configuration at each iteration, (d) the objective function value of the current configuration at each iteration of the algorithm. The "tracePlot" shows the current configurations for all interations.
1 2 |
x |
a tabu object. |
type |
"tracePlot" or default. |
... |
options directly passed to the plot function. |
1 2 3 4 5 6 7 | # A simple example
evaluateSimple <- function(th)return(1)
result <- tabuSearch(size = 20, iters = 100, objFunc = evaluateSimple)
plot(result)
plot(result, "tracePlot")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.