Initializing help system before first use

XPRBdelbasis

XPRBdelbasis


Purpose
Delete a previously saved basis.
Synopsis
void XPRBdelbasis(XPRBbasis basis);
Argument
basis 
Reference to a previously saved basis.
Example
The following code demonstrates saving a basis prior to some matrix changes. Subsequently the old basis is reloaded and the redundant saved basis deleted.
XPRBprob expl2;
XPRBbasis basis;
expl2 = XPRBnewprob("example2");
   ...
XPRBlpoptimize(expl2, "");
basis = XPRBsavebasis(expl2);
   ...
XPRBloadmat(expl2);
XPRBloadbasis(basis);
XPRBdelbasis(basis);
XPRBlpoptimize(expl2,"");
Further information
This function deletes a basis that has been saved using function XPRBsavebasis. Typically, the reference to a basis should be deleted if it is not used any more.
Related topics

© 2001-2019 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.