Changeset f2bb0f


Ignore:
Timestamp:
Mar 18, 2010, 3:32:00 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:
53731f
Parents:
75ac0c
Message:

FIX: Repaired memory smashing in CreateAdjacencyList

BROKEN: Unittests still fail

Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/Legacy/oldmenu.cpp

    r75ac0c rf2bb0f  
    424424void oldmenu::RemoveAtoms(molecule *mol)
    425425{
    426   atom *first, *second;
     426  atom *second;
    427427  int axis;
    428428  double tmp1, tmp2;
  • src/Patterns/ObservedIterator.hpp

    r75ac0c rf2bb0f  
    7070  {
    7171    ++iter;
     72    return *this;
    7273  }
    7374
    74   ObservedIterator  operator++(int) // postfix with the dummy int parameter
     75  ObservedIterator operator++(int) // postfix with the dummy int parameter
    7576  {
    7677    ObservedIterator ret(*this);
  • src/World.cpp

    r75ac0c rf2bb0f  
    170170    atomId_t id = *(atomIdPool.begin());
    171171    atomIdPool.erase(id);
     172    return id;
    172173  }
    173174}
  • src/memoryallocator.hpp

    r75ac0c rf2bb0f  
    115115template <typename X> void Free(X** buffer, const char *msg = NULL)
    116116{
    117   std::cout << "!!!!!!!!!!!!!!!!!removing pointer to buffer !!!!!!!!!!!!" << std::endl;
    118117  if ((buffer == NULL) || (*buffer == NULL))
    119118    return;
     
    131130template <typename X> void Free(X* const buffer, const char *msg = NULL)
    132131{
    133   std::cout << "!!!!!!!!!!!!!!!!!removing direct buffer !!!!!!!!!!!!" << std::endl;
    134132  if ((buffer == NULL))
    135133    return;
  • src/molecule_graph.cpp

    r75ac0c rf2bb0f  
    1717#include "memoryallocator.hpp"
    1818#include "molecule.hpp"
     19#include "Helpers/Assert.hpp"
    1920
    2021struct BFSAccounting
     
    101102  atom *Walker = NULL;
    102103  atom *OtherWalker = NULL;
    103   atom **AtomMap = NULL;
     104  vector<atom*> AtomMap;
    104105  int n[NDIM];
    105106  double MinDistance, MaxDistance;
     
    134135    // create a list to map Tesselpoint::nr to atom *
    135136    Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl;
    136     AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount");
    137     for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    138       std::cout << "!!!!!!!!!!!!Copying pointer to Atom number: " << (*iter)->nr << std::endl;
    139       AtomMap[(*iter)->nr] = (*iter);
    140     }
     137    //AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount");
     138    //for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
     139    //  std::cout << "!!!!!!!!!!!!Copying pointer to Atom number: " << (*iter)->nr << std::endl;
     140    //  AtomMap[(*iter)->nr] = (*iter);
     141    //}
     142
     143    copy(atoms.begin(),atoms.end(),back_inserter(AtomMap));
    141144
    142145    // 3a. go through every cell
     
    149152          if (List != NULL) {
    150153            for (LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) {
    151               Walker = AtomMap[(*Runner)->nr];
     154              //Walker = AtomMap[(*Runner)->nr];
     155              Walker = dynamic_cast<atom*>(*Runner);
     156              ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode");
    152157              //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl;
    153158              // 3c. check for possible bond between each atom in this and every one in the 27 cells
     
    160165                      for (LinkedNodes::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) {
    161166                        if ((*OtherRunner)->nr > Walker->nr) {
    162                           OtherWalker = AtomMap[(*OtherRunner)->nr];
     167                          //OtherWalker = AtomMap[(*OtherRunner)->nr];
     168                          OtherWalker = dynamic_cast<atom*>(*OtherRunner);
     169                          ASSERT(OtherWalker,"TesselPoint that was not an atom retrieved from LinkedNode");
    163170                          //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl;
    164171                          (BG->*minmaxdistance)(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem);
     
    178185          }
    179186        }
    180     std::cout << "trying to remove Pointer to buffer " << std::endl;
    181     Free(&AtomMap);
    182187    delete (LC);
    183188    Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl;
Note: See TracChangeset for help on using the changeset viewer.