• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Révision837c7022c047f24124e687a8ee7471059d63a863 (tree)
l'heure2013-12-25 20:51:01
AuteurMikiya Fujii <mikiya.fujii@gmai...>
CommiterMikiya Fujii

Message de Log

A small bug in zindos is fixed. This commit does not change results because the wrong argument (bug) was not used. #32679

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

Change Summary

Modification

--- a/src/zindo/ZindoS.cpp
+++ b/src/zindo/ZindoS.cpp
@@ -2003,7 +2003,7 @@ void ZindoS::SortCISEigenVectorCoefficients(vector<CISEigenVectorCoefficient>* c
20032003 // single excitation from I-th (occupied)MO to A-th (virtual)MO
20042004 int moI = this->GetActiveOccIndex(*this->molecule, l);
20052005 int moA = this->GetActiveVirIndex(*this->molecule, l);
2006- CISEigenVectorCoefficient cisEigenVectorCoefficient = {cisEigenVector[l], moI, moA, k};
2006+ CISEigenVectorCoefficient cisEigenVectorCoefficient = {cisEigenVector[l], moI, moA, l};
20072007 cisEigenVectorCoefficients->push_back(cisEigenVectorCoefficient);
20082008 }
20092009 sort(cisEigenVectorCoefficients->begin(),