- Timestamp:
- Oct 26, 2011, 3:02:53 PM (13 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:
- 41d023
- Parents:
- 99b0dc
- Location:
- src/Graph
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BreadthFirstSearchAdd.cpp
r99b0dc r07a47e 32 32 33 33 34 BreadthFirstSearchAdd::BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem ) :34 BreadthFirstSearchAdd::BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem, const enum HydrogenSaturation _saturation) : 35 35 BondOrder(_BondOrder), 36 36 Root(_Root), 37 saturation(_saturation), 37 38 IsAngstroem(_IsAngstroem) 38 39 { … … 100 101 AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder); 101 102 } else { 102 #ifdef ADDHYDROGEN 103 if (!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem)) 104 exit(1); 105 #endif 103 if (saturation == DoSaturate) 104 if (!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem)) 105 exit(1); 106 106 } 107 107 } … … 118 118 AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder); 119 119 } else { // if it's root bond it has to broken (otherwise we would not create the fragments) 120 #ifdef ADDHYDROGEN 121 if(!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem)) 122 exit(1); 123 #endif 120 if (saturation == DoSaturate) 121 if(!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem)) 122 exit(1); 124 123 } 125 124 } -
src/Graph/BreadthFirstSearchAdd.hpp
r99b0dc r07a47e 18 18 19 19 #include "Bond/GraphEdge.hpp" 20 #include "Fragmentation/HydrogenSaturation_enum.hpp" 20 21 #include "Helpers/defs.hpp" 21 22 #include "types.hpp" … … 28 29 { 29 30 public: 30 BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem );31 BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem, const enum HydrogenSaturation _saturation); 31 32 ~BreadthFirstSearchAdd(); 32 33 … … 71 72 std::map<bond *, bond *> AddedBondList; //!< maps from father bond to son 72 73 74 //!> whether to treat hydrogen special or not 75 const enum HydrogenSaturation saturation; 76 77 //!> is angstroem our unit of length 73 78 bool IsAngstroem; 74 79 }; -
src/Graph/CyclicStructureAnalysis.cpp
r99b0dc r07a47e 31 31 #include "molecule.hpp" 32 32 33 CyclicStructureAnalysis::CyclicStructureAnalysis() 33 CyclicStructureAnalysis::CyclicStructureAnalysis(const enum HydrogenSaturation _saturation) : 34 saturation(_saturation) 34 35 {} 35 36 … … 101 102 if ((*Runner) != BackEdge) { // only walk along DFS spanning tree (otherwise we always find SP of one being backedge Binder) 102 103 OtherAtom = (*Runner)->GetOtherAtom(Walker); 103 #ifdef ADDHYDROGEN 104 if (OtherAtom->getType()->getAtomicNumber() != 1) { 105 #endif 106 LOG(2, "INFO: Current OtherAtom is: " << OtherAtom->getName() << " for bond " << *(*Runner) << "." << endl); 107 if (ColorList[OtherAtom->getNr()] == GraphEdge::white) { 108 TouchedStack.push_front(OtherAtom); 109 ColorList[OtherAtom->getNr()] = GraphEdge::lightgray; 110 PredecessorList[OtherAtom->getNr()] = Walker; // Walker is the predecessor 111 ShortestPathList[OtherAtom->getNr()] = ShortestPathList[Walker->getNr()] + 1; 112 LOG(2, "INFO: Coloring OtherAtom " << OtherAtom->getName() << " lightgray, its predecessor is " << Walker->getName() << " and its Shortest Path is " << ShortestPathList[OtherAtom->getNr()] << " egde(s) long." << endl); 113 //if (ShortestPathList[OtherAtom->getNr()] < MinimumRingSize[Walker->GetTrueFather()->getNr()]) { // Check for maximum distance 114 LOG(3, "ACCEPT: Putting OtherAtom into queue." << endl); 115 BFSStack.push_front(OtherAtom); 116 //} 104 if ((saturation == DontSaturate) || (OtherAtom->getType()->getAtomicNumber() != 1)) { 105 LOG(2, "INFO: Current OtherAtom is: " << OtherAtom->getName() << " for bond " << *(*Runner) << "." << endl); 106 if (ColorList[OtherAtom->getNr()] == GraphEdge::white) { 107 TouchedStack.push_front(OtherAtom); 108 ColorList[OtherAtom->getNr()] = GraphEdge::lightgray; 109 PredecessorList[OtherAtom->getNr()] = Walker; // Walker is the predecessor 110 ShortestPathList[OtherAtom->getNr()] = ShortestPathList[Walker->getNr()] + 1; 111 LOG(2, "INFO: Coloring OtherAtom " << OtherAtom->getName() << " lightgray, its predecessor is " << Walker->getName() << " and its Shortest Path is " << ShortestPathList[OtherAtom->getNr()] << " egde(s) long." << endl); 112 //if (ShortestPathList[OtherAtom->getNr()] < MinimumRingSize[Walker->GetTrueFather()->getNr()]) { // Check for maximum distance 113 LOG(3, "ACCEPT: Putting OtherAtom into queue." << endl); 114 BFSStack.push_front(OtherAtom); 115 //} 116 } else { 117 LOG(3, "REJECT: Not Adding, has already been visited." << endl); 118 } 119 if (OtherAtom == Root) 120 break; 117 121 } else { 118 LOG(3, "REJECT: Not Adding, has already been visited." << endl); 122 LOG(2, "INFO: Skipping hydrogen atom " << *OtherAtom << "." << endl); 123 ColorList[OtherAtom->getNr()] = GraphEdge::black; 119 124 } 120 if (OtherAtom == Root)121 break;122 #ifdef ADDHYDROGEN123 } else {124 LOG(2, "INFO: Skipping hydrogen atom " << *OtherAtom << "." << endl);125 ColorList[OtherAtom->getNr()] = GraphEdge::black;126 }127 #endif128 125 } else { 129 126 LOG(2, "REJECT: Bond " << *(*Runner) << " not Visiting, is the back edge." << endl); -
src/Graph/CyclicStructureAnalysis.hpp
r99b0dc r07a47e 18 18 19 19 #include "Bond/GraphEdge.hpp" 20 #include "Fragmentation/HydrogenSaturation_enum.hpp" 20 21 #include "Helpers/defs.hpp" 21 22 #include "types.hpp" … … 28 29 { 29 30 public: 30 CyclicStructureAnalysis();31 explicit CyclicStructureAnalysis(const enum HydrogenSaturation _saturation); 31 32 ~CyclicStructureAnalysis(); 32 33 … … 58 59 atom *Root; 59 60 61 //!> whether to treat hydrogen special or not 62 const enum HydrogenSaturation saturation; 63 60 64 bool BackStepping; 61 65 int CurrentGraphNr;
Note:
See TracChangeset
for help on using the changeset viewer.