
Last chance! 50% off unlimited learning
Sale ends in
delete.constraint(lprec, constraints)
{1, ..., m}
(where m
is the number of constraints in lprec
) specifying which constraints should be deleted.TRUE
indicates that the operation was successful and FALSE
indicates that an error occurred.lps.model <- make.lp(0, 4)
set.objfn(lps.model, rep(1, 4))
xt <- c(6,2,4,9)
add.constraint(lps.model, xt, "<=", 50)
yt <- c(3,1,5)
ind <- c(1,2,4)
add.constraint(lps.model, yt, 2, 75, ind)
delete.constraint(lps.model, 1)
Run the code above in your browser using DataLab