Learn R Programming

nlmixr2auto (version 1.0.0)

tabuControl: Control Parameters for Tabu Search

Description

Creates a list of control settings for the tabu.operator function.

Usage

tabuControl(
  tenure = 3,
  niter = 20,
  aspiration = TRUE,
  nsize = NULL,
  policy = "attribute"
)

Value

A named list containing all tabu control parameters.

Arguments

tenure

Integer. Number of iterations a move remains tabu.

niter

Integer. Maximum number of search iterations.

aspiration

Logical. Whether to apply the aspiration criterion. If TRUE, tabu moves are allowed if they yield a solution strictly better than the global best found so far.

nsize

Optional integer. If not NULL, restricts neighborhood sear to a random subset of this size (candidate list strategy).

policy

Character. Type of tabu restriction:

  • "attribute" — forbid revisiting a variable value (default).

  • "move" — forbid only specific from–to transitions.

Author

Zhonghui Huang

Examples

Run this code
tabuControl()

Run the code above in your browser using DataLab