problem.addsetnames
problem.addsetnames |
Purpose
When a model with global entities is loaded, any special ordered sets may not have names associated with them. If you wish names to appear in the ASCII solutions files, the names for a range of sets can be added with this function.
Synopsis
problem.addsetnames(names, first=0, last=problem.attributes.sets - 1);
Arguments
names
|
A list of strings contatining all names to be assigned.
|
first
|
(Optional) start of the set range.
|
last
|
(Optional) end of the set range.
|
Example
Add set names (
set1 and
set2) to a problem:
snames = ["set1", "set2"] ... p.addsetnames(snames, 0, 1);
Further information
If
start is not provided, it is considered equal to 0; if
end is omitted, a value of
problem.attributes.sets - 1 is used.
Related topics