Revision | e1c98c3c214717d50677ff4a1230475b6c0586e0 (tree) |
---|---|
Time | 2013-01-21 15:36:27 |
Author | Katsuhiko Nishimra <ktns.87@gmai...> |
Commiter | Katsuhiko Nishimra |
tmp output diis/damp
@@ -885,6 +885,7 @@ void Cndo2::DoDIIS(double** orbitalElectronPopulation, | ||
885 | 885 | } |
886 | 886 | |
887 | 887 | if(diisNumErrorVect <= step && diisEndError<eMax && eMax<diisStartError){ |
888 | + cout << "Using DIIS" << endl; | |
888 | 889 | MolDS_wrappers::Lapack::GetInstance()->Dsysv(diisErrorProducts, |
889 | 890 | diisErrorCoefficients, |
890 | 891 | diisNumErrorVect+1); |
@@ -907,6 +908,7 @@ void Cndo2::DoDamp(double rmsDensity, | ||
907 | 908 | double dampingThresh = Parameters::GetInstance()->GetDampingThreshSCF(); |
908 | 909 | double dampingWeight = Parameters::GetInstance()->GetDampingWeightSCF(); |
909 | 910 | if(0.0 < dampingWeight && dampingThresh < rmsDensity){ |
911 | + cout << "Using Damp" << endl; | |
910 | 912 | stringstream ompErrors; |
911 | 913 | #pragma omp parallel for schedule(auto) |
912 | 914 | for(int j=0; j<molecule.GetTotalNumberAOs(); j++){ |