- Timestamp:
- Aug 25, 2010, 4:10:54 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:
- 5cd333c
- Parents:
- 14b65e
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule.hpp
r14b65e r00ef5c 339 339 340 340 private: 341 void init_DFS(struct DFSAccounting&) const; 341 342 int last_atom; //!< number given to last atom 342 343 mutable internal_iterator InternalPointer; //!< internal pointer for PointCloud -
src/molecule_graph.cpp
r14b65e r00ef5c 285 285 do { 286 286 OldNo = No; 287 No = SumPerAtom( &atom::CorrectBondDegree ); 287 No=0; 288 BOOST_FOREACH(atom *atom,atoms){ 289 No+=atom->CorrectBondDegree(); 290 } 288 291 } while (OldNo != No); 289 292 DoLog(0) && (Log() << Verbose(0) << " done." << endl); … … 515 518 DFS.BackStepping = false; 516 519 mol->ResetAllBondsToUnused(); 517 mol->SetAtomValueToValue(-1, &atom::GraphNr);518 mol->ActOnAllAtoms(&atom::InitComponentNr);519 520 DFS.BackEdgeStack->ClearStack(); 520 521 } … … 531 532 } 532 533 ; 534 535 void 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 } 533 540 534 541 /** Performs a Depth-First search on this molecule. … … 554 561 return SubGraphs; 555 562 DoLog(0) && (Log() << Verbose(0) << "Begin of DepthFirstSearchAnalysis" << endl); 556 DepthFirstSearchAnalysis_Init(DFS, this);563 init_DFS(DFS); 557 564 558 565 for (molecule::const_iterator iter = begin(); iter != end();) { … … 1060 1067 if (AdjacencyFile.good()) { 1061 1068 AdjacencyFile << "m\tn" << endl; 1062 ActOnAllAtoms(&atom::OutputAdjacency, &AdjacencyFile);1069 for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputAdjacency),&AdjacencyFile)); 1063 1070 AdjacencyFile.close(); 1064 1071 DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl); … … 1092 1099 if (BondFile.good()) { 1093 1100 BondFile << "m\tn" << endl; 1094 ActOnAllAtoms(&atom::OutputBonds, &BondFile);1101 for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputBonds),&BondFile)); 1095 1102 BondFile.close(); 1096 1103 DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl);
Note:
See TracChangeset
for help on using the changeset viewer.