Previous Page: CPXreadcopymipstartFirst PageNext Page: CPXreadcopyprob

CPXreadcopyorder


Usage

Mixed Integer Users Only

Description

This routine reads in a priority order and MIP start values from an ORD file, and copies the data into a CPLEX LP problem object.

Return Value

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

Synopsis

int CPXreadcopyorder (CPXENVptr env,
                      CPXLPptr lp,
                      char *filename);

Arguments


CPXENVptr env
The pointer to the CPLEX environment as returned by one of the CPXopenCPLEX routines.

CPXLPptr lp
A pointer to a CPLEX LP problem object as returned by CPXcreateprob().

char *filename
The name of the file from which the priority order and start values should be read.

Example

status = CPXreadcopyorder (env, lp, "myprob.ord");

Previous Page: CPXreadcopymipstartFirst PageNext Page: CPXreadcopyprob