ColPack
|
#include "Definitions.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) |
template<typename T > | |
int | free_2DMatrix (T **dp2_2DMatrix, unsigned int i_numOfRows) |
template<typename T > | |
int | free_2DMatrix (T ***dp3_2DMatrix, unsigned int i_numOfRows) |
int free_2DMatrix | ( | T ** | dp2_2DMatrix, |
unsigned int | i_numOfRows | ||
) |
Definition at line 48 of file MatrixDeallocation.h.
References _TRUE.
Referenced by ColPack::JacobianRecovery2D::DirectRecover_CoordinateFormat_usermem(), ColPack::HessianRecovery::DirectRecover_CoordinateFormat_vectors(), ColPack::HessianRecovery::DirectRecover_CoordinateFormat_vectors_OMP(), ColPack::JacobianRecovery2D::DirectRecover_RowCompressedFormat_usermem(), ColPack::HessianRecovery::DirectRecover_RowCompressedFormat_usermem(), ColPack::JacobianRecovery2D::DirectRecover_SparseSolversFormat_usermem(), ColPack::HessianRecovery::DirectRecover_SparseSolversFormat_usermem(), free_2DMatrix(), main(), MatrixDeallocation_RowCompressedFormat(), ColPack::BipartiteGraphPartialColoring::Seed_reset(), ColPack::GraphColoring::Seed_reset(), and ColPack::BipartiteGraphBicoloring::Seed_reset().
int free_2DMatrix | ( | T *** | dp3_2DMatrix, |
unsigned int | i_numOfRows | ||
) |
Definition at line 58 of file MatrixDeallocation.h.
References _TRUE, and free_2DMatrix().
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.