Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXembwrite
is used to write out the network
embedded in the selected problem object. MPS format is used. The specific
network extracted depends on the current setting of the
CPX_PARAM_NETFIND
parameter.
Example
status = CPXembwrite (env, lp, "myfile.emb");
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
filename_str | A character string containing the name of the file to which the embedded network should be written. Example status = CPXembwrite (env, lp, "myfile.emb"); |