Adds lhs <= sum(coefs * x[vars]) <= rhs.
scip_add_linear_cons(model, vars, coefs, lhs = -Inf, rhs = Inf, name = NULL)Integer; 1-based constraint index.
A SCIP model.
Integer vector; 1-based variable indices.
Numeric vector; coefficients (same length as vars).
Numeric; left-hand side. Default -Inf.
Numeric; right-hand side. Default Inf.
Character; constraint name. Default auto-generated.