NO FRAMES

CPXgetsolnpoolsolnindex

public int CPXgetsolnpoolsolnindex(CPXCENVptr env, CPXCLPptr lp, const char * lname_str, int * index_p)
Definition file: cplex.h

The routine CPXgetsolnpoolsolnindex searches for the index number of the specified solution in the solution pool of a CPLEX problem object.

Example

 status = CPXgetsolnpoolsolnindex (env, lp, "p4", &setindex);
 

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

lp

A pointer to a CPLEX problem object as returned by CPXcreateprob.

lname_str

A solution name to search for.

index_p

A pointer to an integer to hold the index number of the solution with name lname_str. If the routine is successful, *index_p contains the index number; otherwise, *index_p is undefined.

Returns:

The routine returns zero on success and nonzero if an error occurs.