Description Usage Arguments Value Examples
Scheduling instance constructor
1 2 3 4 5 6 7 8 9 10 11 | Instance(
data = NA,
nrow = 1,
ncol = 1,
byrow = FALSE,
dimnames = NULL,
distribution_type = NA_character_,
correlation_type = NA_character_,
correlation = 0,
seed = NA_integer_
)
|
data |
processing time data |
nrow |
number of jobs |
ncol |
number of machines |
byrow |
processing times order by machine (default) or by job |
dimnames |
name of the processing times matrix dimentions |
distribution_type |
processing times distribution type (uniform, exponential, binomial or erlang) |
correlation_type |
processing times correlation type (random, machine-correlated, job-correlated) |
correlation |
correlation value (between 0 and 1) |
seed |
RNG seed used to generate the processing times |
a instance with given processing times
1 | Instance(1:10, 5, 2, distribution_type = "uniform")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.