I am solving a quantum-mech problem which requires me to find some eigenvalues by manipulating some matrices. The specifics of this problem is not relevant, I just need help with the c++ problem, I am new to this language and after a couple of hours I figured any more attempts at solving it myself would be futile and so I turn to you for help.

I have this problem where glibc detects an error at the end of my program and I cannot deallocate properly, it is far too big to copypaste here so I will just replicate the part that actually gives the error.

void hamiltonian(int, double **&);

int i,j;

int main()
{
int N = 1000; double **A;

hamiltonian(N, A);

//Physics here
.
.
.
.
.
//Delete
for(i=0; i<N; i++){delete []A[i];}
delete []A;

return 0;
}

void hamiltonian(int N, double **&A)
{
A = new double *[N];
for(i=0; i<N; i++)
{
A[i] = new double[N];
for(j=0; j<N; j++)
{
if(i==j)A[i][j] = 2;
if(i==j+1 || i==j-1){A[i][j] = 1;}
}
}
}

According to my professor I have to deallocate in the same function as I allocate but I didn't even think about deallocation after being nearly done with my project and so I have to rewrite a lot of code, the problem is that I cannot deallocate A inside the hamiltonian function as I need it in other functions (inside //Physics).

Surely there must be a way around this? Might sound a bit ignorant of me but this sounds like a less efficient design if I have to deallocate in the same function as I allocate.

link|improve this question

Edited to add delete[A] and A[i] = new double[N]; – user948652 Sep 24 '11 at 13:16
Implementing own matrix functionality is probably OK for studying C++, but if your main goal is quantum-mech problem, isn't it better to find an existing library able to operate on matrices and work with eigenvalues? – maxim1000 Sep 24 '11 at 15:20
@maxim1000 Yes but it is not as much fun :p – user948652 Sep 24 '11 at 16:23
in that case I would advice to develop a class Matrix which is convenient to use (hides memory management and internal details) – maxim1000 Sep 24 '11 at 20:20
feedback

4 Answers

up vote 2 down vote accepted

According to my professor I have to deallocate in the same function as I allocate

That is pure silliness. Sometimes (almost always) you need to use the allocated struct outside the function. Definitely false for objects, since constructors and destructors are different functions.

Any way, you can get away without using classes, if you make a Matrix struct and associated newMatrix and deleteMatrix functions :)

#include <cstddef>
#include <iostream>

using namespace std;

struct Matrix
{
    int n;
    int m;
    double** v;
};

Matrix newMatrix (int n, int m)
{
    Matrix A;
    A.n = n;
    A.m = m;
    A.v = new double*[n];
    for( int i = 0; i < n; i++ ){
        A.v[i] = new double[m];
    }
    return A;
}

Matrix newHamiltonianMatrix (int n, int m)
{
    Matrix A = newMatrix(n, m);
    for( int i = 0; i < A.n; i++ ){
        for( int j = 0; j < A.m; j++ ){
            A.v[i][j] = 0.0;
            if( i == j ){
                A.v[i][j] = 2.0;
            }
            if( i == j + 1 or i == j - 1 ){
                A.v[i][j] = 1.0;
            }
        }
    }
    return A;
}

void deleteMatrix (Matrix A)
{
    for( int i = 0; i < A.n; i++ ){
        delete [] A.v[i];
    }
    delete [] A.v;
    A.v = NULL;
}

int main ()
{
    Matrix A = newHamiltonianMatrix(10, 20);
    for( int i = 0; i < A.n; i++ ){
        for( int j = 0; j < A.m; j++ ){
            cout << A.v[i][j] << " ";
        }
        cout << endl;
    }
    deleteMatrix(A);
}
link|improve this answer
Would setting A = null in my original code work as a crude delete? Will A instead of occuping NxN doubles just become a 0 pointer? – user948652 Sep 24 '11 at 13:44
1  
No, that doesn't delete the allocated double[] and double[][] arrays. C++ does not use garbage collection (well, there are third party GC libraries but that's another topic) – Frigo Sep 24 '11 at 13:46
Thank you, your suggestion will save me the trouble of rewriting my whole code and I will gladly accept this as an answer to my problem but hoping someone will expand on why glibc doesn't like me deleting my matrix. I think my professor meant that I have to delete it in hamiltonian since glibc gave me an error, he meant this specifically and not in general about deleting pointers. I don't understand the logic of delete not working outside the hamiltonian function. – user948652 Sep 24 '11 at 13:58
+1, "That is pure silliness." This sounds very much like a prof who takes too much guidance from Numerical Recipes in C, where this silliness is extremely pervasive. – David Hammen Sep 24 '11 at 14:04
@user948652 No idea, it works perfectly here, and I do not see any problem with it either. Perhaps you are running an old version of your code? – Frigo Sep 24 '11 at 14:05
show 3 more comments
feedback
delete A;

Needs to be

delete[] A;

If you new[] it, you MUST delete[] it. Also, use a vector- they take care of themselves.

vector<vector<double>> matrix;
link|improve this answer
Yes of course, I forgot the [] in the above code, it is in my original. We are not supposed to use/construct classes yet, this is a class in computational physics (mostly about algorithms to different problems and their implementation, in which c++ was decided upon a vote). – user948652 Sep 24 '11 at 12:56
@user948652: If you want to write C++, you must use classes. It is not an option. Whoever decided to try to teach you allocation without using classes is a moron, and you should shoot them, and then use classes anyway. – DeadMG Sep 24 '11 at 14:50
@DeadMG: Unless I missed some rule in the standard that disallows the use of primitive types, arrays of primitive types, your statement that "If you want to write C++, you must use classes. It is not an option." is nonsense. – David Hammen Sep 24 '11 at 14:53
@DavidHammen: Sure, if you want your code to be hideously buggy and unreliable, no exception safety, etc etc. Technically, you could write C++ without them, but in reality, it's not an option. – DeadMG Sep 24 '11 at 15:47
We are learning classes, next week. Semester started 4 weeks ago. – user948652 Sep 24 '11 at 16:24
show 8 more comments
feedback

There are couple of problems with your code.

(1) You are not allocating memory to the pointer members of A. i.e. A[i] are not allocated with new[]. So accessing them is an undefined behavior.

(2) You must do delete[] for a pointer if it was allocated with new[]. In your other function delete A; is wrong. Use delete[] A;

(3) Using new/new[] is not the only way of allocation. In fact you should use such dynamic allocation when there is no choice left. From your code it seems that you are hard coding N=1000. So it's better to use an 2D array.

const int N = 1000;  // globally visible
int main ()
{
  double A[N][N];
  ...
}
void hamiltonian (double (&A)[N][N])
{
  ...
}
link|improve this answer
Lastly, the idea that, "you have to deallocate in the same function as you allocated" is utter nonsense. – Andres Jaan Tack Sep 24 '11 at 13:04
In retrospect it might be wiser to just copypaste the whole 600 lines, I made another mistake (the file is in my linux, I am on windows). I do of course allocate A[i] = new double[N]; inside the loop. As to point 2, also another mistake, if you check my comment to the previous poster. N is also an input variable but for the sake of simplifying my problem here I just set it as a constant. – user948652 Sep 24 '11 at 13:04
-1 for a local variable double A[N][N]; with N=1000? Seriously? The result is the name of this website. – David Hammen Sep 24 '11 at 13:58
@DavidHammen, I don't know why down voted. Why do you see stackoverflow happening here ? double[1000 * 1000] can be allocated on stack. That is a different situation that OP may not want to do it as the requirements are dynamic. But one can not down vote for that !!! – iammilind Sep 24 '11 at 14:25
Yes, I can, and I did. The default stack size on many machines is about 8 meg, barely enough to hold that array. He may want to compute the inverse of that matrix, or perform an eigen decomposition, and with an 8 meg limit, there isn't room for two or three such arrays. Oftentimes sys admins will limit non-superusers to a considerably smaller stack size limit. It is not a good idea to allocate that big of an array on the stack. – David Hammen Sep 24 '11 at 14:42
show 1 more comment
feedback

According to my professor I have to deallocate in the same function as I allocate but I didn't even think about deallocation after being nearly done with my project and so I have to rewrite a lot of code, the problem is that I cannot deallocate A inside the hamiltonian function as I need it in other functions (inside //Physics).

That is utter nonsense. The array is declared in main. If you allocate and deallocate in hamiltonian, you should keep that array local to that function; main should know nothing about it. If you allocate it in main, you can pass it around to lots of other functions. One function to populate the Hamiltonian, another to do an eigen decomposition, etc.

If you allocate the array in main, it is nice if you eventually deallocate it in main. It isn't truly necessary, however. The operating system will clean up after any mess your program has left behind. The primary concern in releasing allocated memory is to prevent leaks. A big array that is allocated at the start of main and never is released does not constitute a serious leak. Serious leaks are those that keep recurring, making it so your program eventually gobbles up all of memory. That said, it is good practice to delete all allocated memory.

If you know that the array will be 1000x1000, you might want to think of putting into a structure:

struct Hamiltonian {
   static const int N = 1000;
   double array[N][N];
};

Now you just have to use A = new Hamiltonian; and later, delete A;. One big advantage of this approach is that it makes indexing a particular element of the array considerably faster. A ragged array requires two memory lookups. A contiguous array requires only one.

link|improve this answer
And why the downvote? Retribution? It is bad manners to downvote and not leave a comment. – David Hammen Sep 24 '11 at 18:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.