Instance: Scheduling instance constructor

Description Usage Arguments Value Examples

View source: R/Instance.R

Description

Scheduling instance constructor

Usage

 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_
)

Arguments

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

Value

a instance with given processing times

Examples

1
Instance(1:10, 5, 2, distribution_type = "uniform")

lucasmpavelski/schedulingInstancesGeneratoR documentation built on Jan. 1, 2021, 8:25 a.m.