Changeset b1c5f46
- Timestamp:
- Oct 13, 2015, 8:14:32 PM (9 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- cee9e8
- Parents:
- 0d9053
- git-author:
- Frederik Heber <heber@…> (09/01/15 13:46:05)
- git-committer:
- Frederik Heber <heber@…> (10/13/15 20:14:32)
- Location:
- src/Fragmentation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Interfragmenter.cpp
r0d9053 rb1c5f46 154 154 155 155 void Interfragmenter::combineFragments( 156 const size_t _MaxOrder, 156 157 const candidates_t &_candidates, 157 158 atomkeyset_t &_fragmentmap, … … 169 170 +toString(_atom->getId())+" in fragment specific lookup."); 170 171 keysets_t &othersets = finditer->second; 172 ASSERT( !othersets.empty(), 173 "Interfragmenter::combineFragments() - keysets to "+toString(_atom->getId())+ 174 "is empty."); 171 175 keysets_t::iterator otheriter = othersets.begin(); 172 176 while (otheriter != othersets.end()) { … … 175 179 // only add them one way round and not the other 176 180 if (otherset < _keyset) { 181 ++otheriter; 182 continue; 183 } 184 // only add if combined they don't exceed the desired maxorder 185 if (otherset.size() + _keyset.size() > _MaxOrder) { 186 LOG(3, "INFO: Rejecting " << otherset << " as in sum their orders exceed " << _MaxOrder); 177 187 ++otheriter; 178 188 continue; … … 217 227 /// combine each remaining fragment with current fragment to a new fragment 218 228 /// if keyset is less (to prevent addding same inter-fragment twice) 219 combineFragments( candidates, fragmentmap, keyset, InterFragments, counter);229 combineFragments(MaxOrder, candidates, fragmentmap, keyset, InterFragments, counter); 220 230 } 221 231 -
src/Fragmentation/Interfragmenter.hpp
r0d9053 rb1c5f46 111 111 */ 112 112 void combineFragments( 113 const size_t _MaxOrder, 113 114 const candidates_t &_candidates, 114 115 atomkeyset_t &_fragmentmap,
Note:
See TracChangeset
for help on using the changeset viewer.