TreeDriftingOptions | R Documentation |
TreeDriftingOptions
is an R6 class that defines the set of parameters
required for performing tree drift operations in nitro
.
iterations
An integer value indicating the number of tree-drifting cycles to perform.
substitutions
An integer value indicating the number of replacements (i.e., accepted tree rearrangements) to perform in the perturbation phase.
max_abs_fit_diff
A numeric value indicating the maximum absolute fit difference.
max_rel_fit_diff
A numeric value indicating the maximum relative fit difference.
reject_factor
A numeric value indicating the rejection factor for suboptimal trees.
autoconstrain_cycles
An integer value indicating the number of autoconstrained cycles to perform.
new()
TreeDriftingOptions$new( iterations = 30, substitutions = 60, max_abs_fit_diff = 1, max_rel_fit_diff = 0.2, reject_factor = 3, autoconstrain_cycles = 0 )
iterations
An integer value indicating the number of tree-drifting cycles to perform.
substitutions
An integer value indicating the number of replacements (i.e., accepted tree rearrangements) to perform in the perturbation phase.
max_abs_fit_diff
A numeric value indicating the maximum absolute fit difference.
max_rel_fit_diff
A numeric value indicating the maximum relative fit difference.
reject_factor
A numeric value indicating the rejection factor for suboptimal trees.
autoconstrain_cycles
An integer value indicating the number of autoconstrained cycles to perform.
print()
TreeDriftingOptions$print(...)
...
Ignored.
queue()
TreeDriftingOptions$queue(set_only = FALSE)
set_only
A logical indicating whether to instruct the command to
execute immediately (TRUE
) or set the variables for future
execution FALSE
.
clone()
The objects of this class are cloneable with this method.
TreeDriftingOptions$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.