Initializing help system before first use

problem.addSets

Purpose
Allows sets to be added to the problem after passing it to the Optimizer using the input routines.
Topic areas
Problem Creation, MIP Entities, Optimizer
Synopsis
problem.addSets(settype, start, colind, refval)
Arguments
settype: list[str] 
Character array containing the set types:
indicates a SOS1;
indicates a SOS2;
start: list[int] 
Integer array containing the offsets in the colind and refval arrays of the start of the elements for each set.
colind: list[var] 
Integer array containing the (contiguous) column indices for the elements in each set.
refval: list[float] 
Double array containing the (contiguous) reference values. These define the order for SOS2 constraints and may be used in branching for both types. Within a set, no two elements can have the same reference values and reference values must differ by at least SOSREFTOL (relative difference).
Further information
1. Reference values must be sufficiently distinct (see SOSREFTOL).
2. This function cannot be called while the current problem is being solved or when it is in an interrupted state. Use problem.postSolve to restore the problem to a non-solving state.
3. Argument colind may contain either xpress.var objects or integer indices.
Related topics

© 2001-2026 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.