Revisão | 9af84c15e2fec8e6cb0fcf8ea0b1df908e078c39 (tree) |
---|---|
Hora | 2010-12-11 17:42:07 |
Autor | Mikiya Fujii <mikiya.fujii@gmai...> |
Commiter | Mikiya Fujii |
NULL is set to member-pointers.
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/MolDS/trunk@22 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -107,6 +107,13 @@ Cndo2::Cndo2(){ | ||
107 | 107 | this->theory = CNDO2; |
108 | 108 | this->SetMessages(); |
109 | 109 | this->SetEnableAtomTypes(); |
110 | + this->gammaAB = NULL; | |
111 | + this->overlap = NULL; | |
112 | + this->orbitalElectronPopulation = NULL; | |
113 | + this->atomicElectronPopulation = NULL; | |
114 | + this->fockMatrix = NULL; | |
115 | + this->energiesMO = NULL; | |
116 | + this->molecule = NULL; | |
110 | 117 | //cout << "Cndo created\n"; |
111 | 118 | } |
112 | 119 |