Changeset 883d98


Ignore:
Timestamp:
Jun 20, 2018, 8:21:13 AM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
Candidate_v1.6.1, ChemicalSpaceEvaluator, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph_contraction-expansion
Children:
b3aaf4
Parents:
70caa3
git-author:
Frederik Heber <frederik.heber@…> (09/19/17 21:59:32)
git-committer:
Frederik Heber <frederik.heber@…> (06/20/18 08:21:13)
Message:

FIX: Removed deltat reduction from anneal_BarzilaiBorwein() as it stops convergence at some point.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Dynamics/ForceAnnealing.hpp

    r70caa3 r883d98  
    295295      for(size_t i=0;i<NDIM;++i)
    296296        maxComponents[i] = std::max(maxComponents[i], fabs(currentGradient[i]));
    297 
    298 //      // steps may go back and forth again (updates are of same magnitude but
    299 //      // have different sign: Check whether this is the case and one step with
    300 //      // deltat to interrupt this sequence
    301 //      if (!PositionDifference.IsZero())
    302 //        if ((PositionUpdate.ScalarProduct(PositionDifference) < 0)
    303 //            && (fabs(PositionUpdate.NormSquared()-PositionDifference.NormSquared()) < 1e-3)) {
    304 //          // for convergence we want a null sequence here, too
    305 //          if (!deltat_decreased) {
    306 //            deltat_decreased = true;
    307 //            currentDeltat = .5*currentDeltat;
    308 //          }
    309 //          LOG(2, "DEBUG: Upgrade in other direction: " << PositionUpdate
    310 //              << " > " << PositionDifference
    311 //              << ", using deltat: " << currentDeltat);
    312 //          PositionUpdate = currentDeltat * currentGradient;
    313 //      }
    314297
    315298      // finally set new values
Note: See TracChangeset for help on using the changeset viewer.