File: MatrixDeallocation.h

package info (click to toggle)
colpack 1.0.10-9
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 10,708 kB
  • sloc: cpp: 49,807; ansic: 1,231; makefile: 419; sh: 13
file content (63 lines) | stat: -rw-r--r-- 2,658 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/************************************************************************************
    Copyright (C) 2005-2008 Assefaw H. Gebremedhin, Arijit Tarafdar, Duc Nguyen,
    Alex Pothen

    This file is part of ColPack.

    ColPack is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published
    by the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    ColPack is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with ColPack.  If not, see <http://www.gnu.org/licenses/>.
************************************************************************************/

#include "Definitions.h"

#ifndef MATRIXDEALLOCATION_H
#define MATRIXDEALLOCATION_H

/// Deallocate all the memory reserved for a matrix presented in Sparse Solvers Format
/**  Postcondition:
    - ip2_RowIndex, ip2_ColumnIndex, dp2_JacobianValue become dangling pointers. So for safety reasons, please set ip2_RowIndex, ip2_ColumnIndex, dp2_JacobianValue to NULL after calling this function.
*/
int MatrixDeallocation_SparseSolversFormat(unsigned int **ip2_RowIndex, unsigned int **ip2_ColumnIndex, double **dp2_JacobianValue);

/// Deallocate all the memory reserved for a matrix presented in ADOLC Format
/** Postcondition:
    - dp3_HessianValue become dangling pointers. So for safety reasons, please set dp3_HessianValue to NULL after calling this function.
*/
int MatrixDeallocation_RowCompressedFormat(double ***dp3_HessianValue, unsigned int i_numOfRows);

/** Deallocate all the memory reserved for a matrix presented in Coordinate Format
    Postcondition:
    - ip2_RowIndex, ip2_ColumnIndex, dp2_HessianValue become dangling pointers. So for safety reasons, please set ip2_RowIndex, ip2_ColumnIndex, dp2_HessianValue to NULL after calling this function.
*/
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) {
  for(unsigned int i=0; i< i_numOfRows; i++) {
    delete[] (dp2_2DMatrix)[i];
  }
  delete[] (dp2_2DMatrix);

  return _TRUE;
}

template<typename T>
int free_2DMatrix(T ***dp3_2DMatrix, unsigned int i_numOfRows) {
	free_2DMatrix(*dp3_2DMatrix,i_numOfRows);
	delete dp3_2DMatrix;

  return _TRUE;
}

#endif