|
ColPack
|
#include "MatrixDeallocation.h"Go to the source code of this file.
Functions | |
| int | MatrixDeallocation_SparseSolversFormat (unsigned int **ip2_RowIndex, unsigned int **ip2_ColumnIndex, double **dp2_JacobianValue) |
| Deallocate all the memory reserved for a matrix presented in Sparse Solvers Format. | |
| int | MatrixDeallocation_RowCompressedFormat (double ***dp3_HessianValue, unsigned int i_numOfRows) |
| Deallocate all the memory reserved for a matrix presented in ADOLC Format. | |
| int | MatrixDeallocation_CoordinateFormat (unsigned int **ip2_RowIndex, unsigned int **ip2_ColumnIndex, double **dp2_HessianValue) |
| int MatrixDeallocation_CoordinateFormat | ( | unsigned int ** | ip2_RowIndex, |
| unsigned int ** | ip2_ColumnIndex, | ||
| double ** | dp2_HessianValue | ||
| ) |
Deallocate all the memory reserved for a matrix presented in Coordinate Format Postcondition:
Definition at line 44 of file MatrixDeallocation.cpp.
References _TRUE.
| int MatrixDeallocation_RowCompressedFormat | ( | double *** | dp3_HessianValue, |
| unsigned int | i_numOfRows | ||
| ) |
Deallocate all the memory reserved for a matrix presented in ADOLC Format.
Postcondition:
Definition at line 37 of file MatrixDeallocation.cpp.
References _TRUE, and free_2DMatrix().

| int MatrixDeallocation_SparseSolversFormat | ( | unsigned int ** | ip2_RowIndex, |
| unsigned int ** | ip2_ColumnIndex, | ||
| double ** | dp2_JacobianValue | ||
| ) |
Deallocate all the memory reserved for a matrix presented in Sparse Solvers Format.
Postcondition:
Definition at line 23 of file MatrixDeallocation.cpp.
References _TRUE.