Changeset 00ef5c


Ignore:
Timestamp:
Aug 25, 2010, 4:10:54 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:
5cd333c
Parents:
14b65e
Message:

Removed several calls to molecule::ActOnEachAtom() from molecule_graph.cpp

  • Added a function to initialize the DFS inside the molecule
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/molecule.hpp

    r14b65e r00ef5c  
    339339
    340340  private:
     341  void init_DFS(struct DFSAccounting&) const;
    341342  int last_atom;      //!< number given to last atom
    342343  mutable internal_iterator InternalPointer;  //!< internal pointer for PointCloud
  • src/molecule_graph.cpp

    r14b65e r00ef5c  
    285285    do {
    286286      OldNo = No;
    287       No = SumPerAtom( &atom::CorrectBondDegree );
     287      No=0;
     288      BOOST_FOREACH(atom *atom,atoms){
     289        No+=atom->CorrectBondDegree();
     290      }
    288291    } while (OldNo != No);
    289292    DoLog(0) && (Log() << Verbose(0) << " done." << endl);
     
    515518  DFS.BackStepping = false;
    516519  mol->ResetAllBondsToUnused();
    517   mol->SetAtomValueToValue(-1, &atom::GraphNr);
    518   mol->ActOnAllAtoms(&atom::InitComponentNr);
    519520  DFS.BackEdgeStack->ClearStack();
    520521}
     
    531532}
    532533;
     534
     535void molecule::init_DFS(struct DFSAccounting &DFS) const{
     536  DepthFirstSearchAnalysis_Init(DFS, this);
     537  for_each(atoms.begin(),atoms.end(),mem_fun(&atom::resetGraphNr));
     538  for_each(atoms.begin(),atoms.end(),mem_fun(&atom::InitComponentNr));
     539}
    533540
    534541/** Performs a Depth-First search on this molecule.
     
    554561    return SubGraphs;
    555562  DoLog(0) && (Log() << Verbose(0) << "Begin of DepthFirstSearchAnalysis" << endl);
    556   DepthFirstSearchAnalysis_Init(DFS, this);
     563  init_DFS(DFS);
    557564
    558565  for (molecule::const_iterator iter = begin(); iter != end();) {
     
    10601067  if (AdjacencyFile.good()) {
    10611068    AdjacencyFile << "m\tn" << endl;
    1062     ActOnAllAtoms(&atom::OutputAdjacency, &AdjacencyFile);
     1069    for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputAdjacency),&AdjacencyFile));
    10631070    AdjacencyFile.close();
    10641071    DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl);
     
    10921099  if (BondFile.good()) {
    10931100    BondFile << "m\tn" << endl;
    1094     ActOnAllAtoms(&atom::OutputBonds, &BondFile);
     1101    for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputBonds),&BondFile));
    10951102    BondFile.close();
    10961103    DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl);
Note: See TracChangeset for help on using the changeset viewer.