| Overview | Group | Tree | Graph | Deprecated | Index | Concepts |

This abstract class represents a data collection. Different types of domain exist:
Basic type: IloInteger interval or enumeration (any enumeration of
objects, such as string or Boolean).
Multi-valued types: set (list of basic type values with no redundancy).
| Method Summary | |
|---|---|
public void | display(ostream & os) const |
public void | end() |
public IloEnv | getEnv() |
public const char * | getName() const |
public IloBool | isIntRange() const |
public IloBool | isIntSet() const |
public IloBool | isNumRange() const |
public IloBool | isNumSet() const |
public IloBool | isSymbolSet() const |
public IloBool | isTupleSet() const |
public static void | sort(IloNumArray & array) |
public static void | sort(IloNumArray & array, IloInt min, IloInt max) |
public static void | sort(IloIntArray & array) |
public static void | sort(IloIntArray & array, IloInt min, IloInt max) |
| Method Detail |
|---|
Outputs the domain.
This member function deletes the invoking data domain. That is, it frees all the resources used by the invoking object. After a call to this member function, you cannot use the invoking extractable object again.
This member function returns the current environment.
This member function returns the name of the collection.
This member function checks whether the domain is a range of integer values.
See Also:
IloTrue if the given domain is a range of integer values.
This member function checks whether the domain is a set of integer values.
See Also:
IloTrue if the given domain is a set of integer values.
This member function checks whether the domain is a range of numeric values.
IloTrue if the given domain is a range of numeric values. This member function checks whether the domain is a set of numeric values.
See Also:
IloTrue if the given domain is a set of numeric values.
This member function checks whether the domain is a set of string values.
See Also:
IloTrue if the given domain is a set of string values.
This member function checks whether the domain
is a set of IloTuple.
See Also:
IloTrue if the given domain is a set of IloTuple values.
This member function allows you to sort an
IloNumArray.
| array |
The IloNumArray to be sorted.
|
This member function allows you to sort an
IloNumArray and set the minimum index and maximum index in the array for the sort.
| array |
The IloNumArray to be sorted.
|
| min |
The minimum index in the array for the sort.
|
| max |
The maximum index in the array for the sort.
|
This member function allows you to sort an
IloIntArray.
| array |
The IloIntArray to be sorted.
|
This member function allows you to sort an
IloIntArray and set min and max values for the sort.
| array |
The IloIntArray to be sorted.
|
| min |
The minimum index in the array for the sort.
|
| max |
The maximum index in the array for the sort.
|