types: Types - Accessor and Mutator Functions

Description Usage Arguments Value Author(s) Examples

View source: R/types.R

Description

The types of a given optimization problem (OP) can be accessed or mutated via the method 'types'.

Usage

1
2
3
types(x)

types(x) <- value

Arguments

x

an object used to select the method.

value

an R object.

Value

a character vector.

Author(s)

Stefan Theussl

Examples

1
2
3
4
5
6
## minimize: x + 2 y
## subject to: x + y >= 1
## x, y >= 0    x, y are integer
x <- OP(objective = 1:2, constraints = L_constraint(c(1, 1), ">=", 1))
types(x) <- c("I", "I")
types(x)

ROI documentation built on Aug. 29, 2020, 3:01 p.m.

Related to types in ROI...