Ignore:
Timestamp:
Nov 29, 2017, 11:06:25 PM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
ForceAnnealing_with_BondGraph_continued_betteresults
Children:
2a0a651
Parents:
9f1fee5
git-author:
Frederik Heber <frederik.heber@…> (08/10/17 15:35:45)
git-committer:
Frederik Heber <frederik.heber@…> (11/29/17 23:06:25)
Message:

Rewrote annealWithBondGraph_BarzilaiBorwein() to simply distinguish expansion and contraction in bonds.

  • we shift the neighboring set away in case of expansion and towards in case of contraction.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Graph/BoostGraphCreator.hpp

    r9f1fee5 r0dd99b  
    165165  bool removeEdge(const atomId_t &_firstid, const atomId_t &_secondid);
    166166
     167  /** Allows to remove a present edge in the graph.
     168   *
     169   * \param _bondids pair of bond ids
     170   * \return true - edge found and removed, false - else
     171   */
     172  bool removeEdge(const std::pair<atomId_t, atomId_t> &_bondids)
     173  { return removeEdge(_bondids.first, _bondids.second); }
     174
    167175  /** Adds an edge to the graph if not already present.
    168176   *
Note: See TracChangeset for help on using the changeset viewer.