QSopt QSfree_prob QSopt > Callable Library > Function List
  QSopt
  Downloads
  LP Info
  Software
  Problem Formats
  Callable Library
  Overview
Function List
  Rational Solver
  Beta
  Contact Info
Purpose
Free the data structure for a problem.
Synopsis
void QSfree_prob (QSprob p)
Arguments
p a handle to a problem.
Returns
No return value.
Description

When work is complete on a given problem p, QSfree_prob(p) should be called to free the memory associated with the QSprob data structure. This operation is important in applications where LP problems are repeatedly created and solved, permitting the application to reuse the available memory. Note that after a call to QSfree_prob(p), the specified QSprob p will no longer contain any information related to the original LP problem.

Example
/* p is an initialized QSprob */

QSfree_prob (p);
 
QSopt | Problem Formats | Downloads Back
Last Updated: November 2003