Changeset dc11c9
- Timestamp:
- Jul 22, 2010, 2:08:22 PM (15 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:
- 7067bd6
- Parents:
- ee86a0
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.cpp
ree86a0 rdc11c9 234 234 atomIdPool_t::iterator iter=atomIdPool.begin(); 235 235 atomId_t id = iter->first; 236 pair<atomId_t,atomId_t> newRange = make_pair(id+1,iter->second);236 range<atomId_t> newRange = makeRange(id+1,iter->last); 237 237 // we wont use this iterator anymore, so we don't care about invalidating 238 238 atomIdPool.erase(iter); 239 if(newRange.first<newRange. second){239 if(newRange.first<newRange.last){ 240 240 atomIdPool.insert(newRange); 241 241 } … … 247 247 248 248 void World::releaseAtomId(atomId_t id){ 249 atomIdPool.insert(make _pair(id,id+1));249 atomIdPool.insert(makeRange(id,id+1)); 250 250 defragAtomIdPool(); 251 251 } … … 253 253 bool World::reserveAtomId(atomId_t id){ 254 254 if(id>=currAtomId ){ 255 pair<atomId_t,atomId_t> newRange = make_pair(currAtomId,id);256 if(newRange.first<newRange. second){255 range<atomId_t> newRange = makeRange(currAtomId,id); 256 if(newRange.first<newRange.last){ 257 257 atomIdPool.insert(newRange); 258 258 } … … 263 263 // look for a range that matches the request 264 264 for(atomIdPool_t::iterator iter=atomIdPool.begin();iter!=atomIdPool.end();++iter){ 265 if(iter-> first>id){266 // we have cover d all available ranges... nothing to be found here265 if(iter->isBefore(id)){ 266 // we have covered all available ranges... nothing to be found here 267 267 break; 268 268 } 269 269 // no need to check first, since it has to be <=id, since otherwise we would have broken out 270 if( iter->second > id){270 if(!iter->isBeyond(id)){ 271 271 // we found a matching range... get the id from this range 272 272 273 273 // split up this range at the point of id 274 pair<atomId_t,atomId_t> bottomRange = make_pair(iter->first,id);275 pair<atomId_t,atomId_t> topRange = make_pair(id+1,iter->second);274 range<atomId_t> bottomRange = makeRange(iter->first,id); 275 range<atomId_t> topRange = makeRange(id+1,iter->last); 276 276 // remove this range 277 277 atomIdPool.erase(iter); 278 if(bottomRange.first<bottomRange. second){278 if(bottomRange.first<bottomRange.last){ 279 279 atomIdPool.insert(bottomRange); 280 280 } 281 if(topRange.first<topRange. second){281 if(topRange.first<topRange.last){ 282 282 atomIdPool.insert(topRange); 283 283 } … … 301 301 atomIdPool_t::iterator next = iter; 302 302 next++; 303 if(next!=atomIdPool.end() && (next->first==iter-> second)){303 if(next!=atomIdPool.end() && (next->first==iter->last)){ 304 304 // merge the two ranges 305 pair<atomId_t,atomId_t> newRange = make_pair(iter->first,next->second);305 range<atomId_t> newRange = makeRange(iter->first,next->last); 306 306 atomIdPool.erase(iter); 307 307 atomIdPool.erase(next); … … 317 317 atomIdPool_t::iterator iter = atomIdPool.end(); 318 318 iter--; 319 if(iter-> second==currAtomId){319 if(iter->last==currAtomId){ 320 320 currAtomId=iter->first; 321 321 atomIdPool.erase(iter); … … 333 333 moleculeIdPool_t::iterator iter=moleculeIdPool.begin(); 334 334 moleculeId_t id = iter->first; 335 pair<moleculeId_t,moleculeId_t> newRange = make_pair(id+1,iter->second);335 range<moleculeId_t> newRange = makeRange(id+1,iter->last); 336 336 // we wont use this iterator anymore, so we don't care about invalidating 337 337 moleculeIdPool.erase(iter); 338 if(newRange.first<newRange. second){338 if(newRange.first<newRange.last){ 339 339 moleculeIdPool.insert(newRange); 340 340 } … … 346 346 347 347 void World::releaseMoleculeId(moleculeId_t id){ 348 moleculeIdPool.insert(make _pair(id,id+1));348 moleculeIdPool.insert(makeRange(id,id+1)); 349 349 defragMoleculeIdPool(); 350 350 } … … 352 352 bool World::reserveMoleculeId(moleculeId_t id){ 353 353 if(id>=currMoleculeId ){ 354 pair<moleculeId_t,moleculeId_t> newRange = make_pair(currMoleculeId,id);355 if(newRange.first<newRange. second){354 range<moleculeId_t> newRange = makeRange(currMoleculeId,id); 355 if(newRange.first<newRange.last){ 356 356 moleculeIdPool.insert(newRange); 357 357 } … … 362 362 // look for a range that matches the request 363 363 for(moleculeIdPool_t::iterator iter=moleculeIdPool.begin();iter!=moleculeIdPool.end();++iter){ 364 if(iter-> first>id){364 if(iter->isBefore(id)){ 365 365 // we have coverd all available ranges... nothing to be found here 366 366 break; 367 367 } 368 368 // no need to check first, since it has to be <=id, since otherwise we would have broken out 369 if( iter->second > id){369 if(!iter->isBeyond(id)){ 370 370 // we found a matching range... get the id from this range 371 371 372 372 // split up this range at the point of id 373 pair<moleculeId_t,moleculeId_t> bottomRange = make_pair(iter->first,id);374 pair<moleculeId_t,moleculeId_t> topRange = make_pair(id+1,iter->second);373 range<moleculeId_t> bottomRange = makeRange(iter->first,id); 374 range<moleculeId_t> topRange = makeRange(id+1,iter->last); 375 375 // remove this range 376 376 moleculeIdPool.erase(iter); 377 if(bottomRange.first<bottomRange. second){377 if(bottomRange.first<bottomRange.last){ 378 378 moleculeIdPool.insert(bottomRange); 379 379 } 380 if(topRange.first<topRange. second){380 if(topRange.first<topRange.last){ 381 381 moleculeIdPool.insert(topRange); 382 382 } … … 400 400 moleculeIdPool_t::iterator next = iter; 401 401 next++; 402 if(next!=moleculeIdPool.end() && (next->first==iter-> second)){402 if(next!=moleculeIdPool.end() && (next->first==iter->last)){ 403 403 // merge the two ranges 404 pair<moleculeId_t,moleculeId_t> newRange = make_pair(iter->first,next->second);404 range<moleculeId_t> newRange = makeRange(iter->first,next->last); 405 405 moleculeIdPool.erase(iter); 406 406 moleculeIdPool.erase(next); … … 416 416 moleculeIdPool_t::iterator iter = moleculeIdPool.end(); 417 417 iter--; 418 if(iter-> second==currMoleculeId){418 if(iter->last==currMoleculeId){ 419 419 currMoleculeId=iter->first; 420 420 moleculeIdPool.erase(iter); -
src/World.hpp
ree86a0 rdc11c9 24 24 #include "Patterns/Singleton.hpp" 25 25 #include "Patterns/ObservedContainer.hpp" 26 #include "Helpers/Range.hpp" 26 27 27 28 // include config.h … … 354 355 AtomSet atoms; 355 356 AtomSet selectedAtoms; 356 typedef std::set< std::pair<atomId_t,atomId_t> > atomIdPool_t;357 typedef std::set<range<atomId_t> > atomIdPool_t; 357 358 /** 358 359 * stores the pool for all available AtomIds below currAtomId … … 367 368 MoleculeSet molecules; 368 369 MoleculeSet selectedMolecules; 369 typedef std::set< std::pair<moleculeId_t, moleculeId_t> > moleculeIdPool_t;370 typedef std::set<range<atomId_t> > moleculeIdPool_t; 370 371 /** 371 372 * stores the pool for all available AtomIds below currAtomId
Note:
See TracChangeset
for help on using the changeset viewer.