Increase the number of lists for element selections.

If 10 selected lists for selecting elements are not enough to implement the algorithm, then you can increase their number to the required one.

Call:

ac_request_special("set_TSMAX_ELEMLIST_NUMBER", int ineeded_count);


Here:

ideeded_count - the desired number of internal element lists.


Example.

Set the number of lists to select = 100, if not already done.


int iicount;
ac_request_special("get_TSMAX_ELEMLIST_NUMBER", iicount);
if (iicount < 100)
{
ac_request_special("set_TSMAX_ELEMLIST_NUMBER", 100);
}
coutvar << iicount;