Revision | 013e4d0ea5439f61aae85458e668115a465a7f9f (tree) |
---|---|
Time | 2013-03-10 22:25:40 |
Author | Mikiya Fujii <mikiya.fujii@gmai...> |
Commiter | Mikiya Fujii |
refactoring Blas::Dgemmm #30829
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/trunk@1317 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -174,15 +174,6 @@ void Atom::SetPxyz(double px, double py, double pz) const{ | ||
174 | 174 | #endif |
175 | 175 | pxyz[0]= px; pxyz[1]= py; pxyz[2]= pz; |
176 | 176 | } |
177 | -/* | |
178 | -int Atom::GetValenceSize() const{ | |
179 | - return this->valence.size(); | |
180 | -} | |
181 | -*/ | |
182 | - | |
183 | -OrbitalType Atom::GetValence(int index) const{ | |
184 | - return this->valence[index]; | |
185 | -} | |
186 | 177 | |
187 | 178 | double Atom::GetVdWCoefficient() const{ |
188 | 179 | return this->vdWCoefficient; |
@@ -32,7 +32,7 @@ public: | ||
32 | 32 | double* GetPxyz() const; |
33 | 33 | void SetPxyz(double px, double py, double pz) const; |
34 | 34 | inline int GetValenceSize() const{return this->valence.size();} |
35 | - MolDS_base::OrbitalType GetValence(int index) const; | |
35 | + inline MolDS_base::OrbitalType GetValence(int index) const{return his->valence[index];} | |
36 | 36 | double GetVdWCoefficient() const; |
37 | 37 | double GetVdWRadii() const; |
38 | 38 | double GetAtomicBasisValue(double x, |