Changeset dc11c9


Ignore:
Timestamp:
Jul 22, 2010, 2:08:22 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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
Message:

Made the id-pools in the World use range objects

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/World.cpp

    ree86a0 rdc11c9  
    234234    atomIdPool_t::iterator iter=atomIdPool.begin();
    235235    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);
    237237    // we wont use this iterator anymore, so we don't care about invalidating
    238238    atomIdPool.erase(iter);
    239     if(newRange.first<newRange.second){
     239    if(newRange.first<newRange.last){
    240240      atomIdPool.insert(newRange);
    241241    }
     
    247247
    248248void World::releaseAtomId(atomId_t id){
    249   atomIdPool.insert(make_pair(id,id+1));
     249  atomIdPool.insert(makeRange(id,id+1));
    250250  defragAtomIdPool();
    251251}
     
    253253bool World::reserveAtomId(atomId_t id){
    254254  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){
    257257      atomIdPool.insert(newRange);
    258258    }
     
    263263  // look for a range that matches the request
    264264  for(atomIdPool_t::iterator iter=atomIdPool.begin();iter!=atomIdPool.end();++iter){
    265     if(iter->first>id){
    266       // we have coverd all available ranges... nothing to be found here
     265    if(iter->isBefore(id)){
     266      // we have covered all available ranges... nothing to be found here
    267267      break;
    268268    }
    269269    // 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)){
    271271      // we found a matching range... get the id from this range
    272272
    273273      // 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);
    276276      // remove this range
    277277      atomIdPool.erase(iter);
    278       if(bottomRange.first<bottomRange.second){
     278      if(bottomRange.first<bottomRange.last){
    279279        atomIdPool.insert(bottomRange);
    280280      }
    281       if(topRange.first<topRange.second){
     281      if(topRange.first<topRange.last){
    282282        atomIdPool.insert(topRange);
    283283      }
     
    301301    atomIdPool_t::iterator next = iter;
    302302    next++;
    303     if(next!=atomIdPool.end() && (next->first==iter->second)){
     303    if(next!=atomIdPool.end() && (next->first==iter->last)){
    304304      // 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);
    306306      atomIdPool.erase(iter);
    307307      atomIdPool.erase(next);
     
    317317    atomIdPool_t::iterator iter = atomIdPool.end();
    318318    iter--;
    319     if(iter->second==currAtomId){
     319    if(iter->last==currAtomId){
    320320      currAtomId=iter->first;
    321321      atomIdPool.erase(iter);
     
    333333    moleculeIdPool_t::iterator iter=moleculeIdPool.begin();
    334334    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);
    336336    // we wont use this iterator anymore, so we don't care about invalidating
    337337    moleculeIdPool.erase(iter);
    338     if(newRange.first<newRange.second){
     338    if(newRange.first<newRange.last){
    339339      moleculeIdPool.insert(newRange);
    340340    }
     
    346346
    347347void World::releaseMoleculeId(moleculeId_t id){
    348   moleculeIdPool.insert(make_pair(id,id+1));
     348  moleculeIdPool.insert(makeRange(id,id+1));
    349349  defragMoleculeIdPool();
    350350}
     
    352352bool World::reserveMoleculeId(moleculeId_t id){
    353353  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){
    356356      moleculeIdPool.insert(newRange);
    357357    }
     
    362362  // look for a range that matches the request
    363363  for(moleculeIdPool_t::iterator iter=moleculeIdPool.begin();iter!=moleculeIdPool.end();++iter){
    364     if(iter->first>id){
     364    if(iter->isBefore(id)){
    365365      // we have coverd all available ranges... nothing to be found here
    366366      break;
    367367    }
    368368    // 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)){
    370370      // we found a matching range... get the id from this range
    371371
    372372      // 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);
    375375      // remove this range
    376376      moleculeIdPool.erase(iter);
    377       if(bottomRange.first<bottomRange.second){
     377      if(bottomRange.first<bottomRange.last){
    378378        moleculeIdPool.insert(bottomRange);
    379379      }
    380       if(topRange.first<topRange.second){
     380      if(topRange.first<topRange.last){
    381381        moleculeIdPool.insert(topRange);
    382382      }
     
    400400    moleculeIdPool_t::iterator next = iter;
    401401    next++;
    402     if(next!=moleculeIdPool.end() && (next->first==iter->second)){
     402    if(next!=moleculeIdPool.end() && (next->first==iter->last)){
    403403      // 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);
    405405      moleculeIdPool.erase(iter);
    406406      moleculeIdPool.erase(next);
     
    416416    moleculeIdPool_t::iterator iter = moleculeIdPool.end();
    417417    iter--;
    418     if(iter->second==currMoleculeId){
     418    if(iter->last==currMoleculeId){
    419419      currMoleculeId=iter->first;
    420420      moleculeIdPool.erase(iter);
  • src/World.hpp

    ree86a0 rdc11c9  
    2424#include "Patterns/Singleton.hpp"
    2525#include "Patterns/ObservedContainer.hpp"
     26#include "Helpers/Range.hpp"
    2627
    2728// include config.h
     
    354355  AtomSet atoms;
    355356  AtomSet selectedAtoms;
    356   typedef std::set<std::pair<atomId_t, atomId_t> > atomIdPool_t;
     357  typedef std::set<range<atomId_t> > atomIdPool_t;
    357358  /**
    358359   * stores the pool for all available AtomIds below currAtomId
     
    367368  MoleculeSet molecules;
    368369  MoleculeSet selectedMolecules;
    369   typedef std::set<std::pair<moleculeId_t, moleculeId_t> > moleculeIdPool_t;
     370  typedef std::set<range<atomId_t> > moleculeIdPool_t;
    370371  /**
    371372   * stores the pool for all available AtomIds below currAtomId
Note: See TracChangeset for help on using the changeset viewer.