• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisionb5f752b3eb9c6485e542dbdea6d385f55f3ff588 (tree)
Zeit2013-03-09 07:16:58
AutorMikiya Fujii <mikiya.fujii@gmai...>
CommiterMikiya Fujii

Log Message

refactoring Cndo2::GetGaussianOverlapAOsSaSb #30829

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/trunk@1311 1136aad2-a195-0410-b898-f5ea1d11b9d8

Ändern Zusammenfassung

Diff

--- a/src/cndo/Cndo2.cpp
+++ b/src/cndo/Cndo2.cpp
@@ -4192,7 +4192,7 @@ double Cndo2::GetGaussianOverlapAOsSaSb(double gaussianExponentA,
41924192 /(gaussianExponentA+gaussianExponentB);
41934193 temp2 = -1.0* gaussianExponentA*gaussianExponentB
41944194 /(gaussianExponentA+gaussianExponentB);
4195- value = pow(temp1, 1.5)*exp(temp2*pow(rAB, 2.0));
4195+ value = pow(temp1, 1.5)*exp(temp2*rAB*rAB);
41964196 return value;
41974197 }
41984198