Changeset 386aa2 for src


Ignore:
Timestamp:
May 8, 2008, 12:41:47 PM (17 years ago)
Author:
Frederik Heber <heber@…>
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:
4a54f3
Parents:
9fcf47
Message:

FillBondStructureFromReference: previous == NULL was bad idea, new functions Count() and FillRootStackForSubgraphs()

FillBondStructureFromReference: checking previous == NULL if we are the first is bad due to starting node (with mpty leaf) being actual previous, hence we decrease FragmentCounter before return, thus climb up the ladder and then down again and free in this course. Initial list pointer is free'd if FragmentCounter == 0: much better!
Count: simply counts the number of further leaves in the chain list, also by the neat recursive trick
FillRootStackForSubgraphs: Fills a rootstack by going through the leaves of a subgraph and checking on their atom's father's atom::AdaptiveOrder against given Order. This is further abstraction for molecule::FragmentMolecule()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/moleculelist.cpp

    r9fcf47 r386aa2  
    411411  if (FreeList) {
    412412    // free the index lookup list
    413     for (int i=0;i<FragmentCounter;i++)
    414       Free((void **)&ListOfLocalAtoms[i], "MoleculeLeafClass::FillBondStructureFromReference - **ListOfLocalAtoms[]");
    415     if (previous == NULL) // if we are the first in this chain list, empty initial pointer
     413    Free((void **)&ListOfLocalAtoms[FragmentCounter], "MoleculeLeafClass::FillBondStructureFromReference - **ListOfLocalAtoms[]");
     414    if (ListOfLocalAtoms[FragmentCounter] == NULL)
    416415      Free((void **)&ListOfLocalAtoms, "MoleculeLeafClass::FillBondStructureFromReference - ***ListOfLocalAtoms");
    417416  }
    418  
     417  FragmentCounter--;
    419418  return status;
    420419};
    421420
    422 
     421/** Fills the root stack for sites to be used as root in fragmentation depending on order or adaptivity criteria
     422 * Again, as in \sa FillBondStructureFromReference steps recursively through each Leaf in this chain list of molecule's.
     423 * \param *out output stream for debugging
     424 * \param *&RootStack stack to be filled
     425 * \param Order desired bond order for all sites
     426 * \param &FragmentCounter counts through the fragments in this MoleculeLeafClass
     427 * \return true - stack is non-empty, fragmentation necessary, false - stack is empty, no more sites to update
     428 */
     429bool MoleculeLeafClass::FillRootStackForSubgraphs(ofstream *out, KeyStack *&RootStack, int Order, int &FragmentCounter)
     430{
     431  atom *Walker = NULL;
     432
     433  if (RootStack != NULL) {
     434    if (Order == -1) {  // means we want to increase order adaptively
     435      cerr << "Adaptive chosing of sites not yet implemented!" << endl;
     436    } else {  // means we just want to increase it at every site by one
     437      // find first root candidates
     438      if (&(RootStack[FragmentCounter]) != NULL) {
     439        RootStack[FragmentCounter].clear(); 
     440        Walker = Leaf->start;
     441        while (Walker->next != Leaf->end) { // go through all (non-hydrogen) atoms
     442          Walker = Walker->next;
     443      #ifdef ADDHYDROGEN
     444          if (Walker->type->Z != 1) // skip hydrogen
     445      #endif
     446            if (Walker->GetTrueFather()->AdaptiveOrder < Order) // only if Order is still greater
     447              RootStack[FragmentCounter].push_front(Walker->nr);
     448        }
     449        if (next != NULL)
     450          next->FillRootStackForSubgraphs(out, RootStack, Order, ++FragmentCounter);
     451      } else
     452        return false;
     453    }
     454    return true;
     455  } else
     456    return false;
     457};
     458
     459/** Simply counts the number of items in the list, from given MoleculeLeafClass.
     460 * \return number of items
     461 */
     462int MoleculeLeafClass::Count()
     463{
     464  if (next != NULL)
     465    return next->Count()+1;
     466  else
     467    return 1;
     468};
Note: See TracChangeset for help on using the changeset viewer.