Add multiple variables to a SCIP model
scip_add_vars(model, obj, lb = 0, ub = Inf, vtype = "C", names = NULL)Integer; 1-based index of first variable added.
A SCIP model.
Numeric vector; objective coefficients.
Numeric; lower bounds (scalar or vector). Default 0.
Numeric; upper bounds (scalar or vector). Default Inf.
Character; variable types (scalar or vector). Default "C".
Character vector; variable names. Default auto-generated.