copy_lpCopy an existing lprec structure to a new lprec structure. lprec *copy_lp(lprec *lp); Return Value
Returns a pointer to a new lprec structure. This must be provided to almost all
lp_solve functions. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI Remarks The copy_lp function constructs a new LP from an existing lp structure. The new structure is independent from the original one. Example
See Also make_lp, delete_lp, free_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI |