Changeset f67817f for src/Fragmentation


Ignore:
Timestamp:
Oct 25, 2011, 12:08:03 PM (13 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:
d0b375b
Parents:
23fb72
git-author:
Frederik Heber <heber@…> (10/18/11 12:26:01)
git-committer:
Frederik Heber <heber@…> (10/25/11 12:08:03)
Message:

Extracted power set generation into own class PowerSetGenerator.

Location:
src/Fragmentation
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Makefile.am

    r23fb72 rf67817f  
    1010        Fragmentation/KeySetsContainer.cpp \
    1111        Fragmentation/MatrixContainer.cpp \
     12        Fragmentation/PowerSetGenerator.cpp \
    1213        Fragmentation/UniqueFragments.cpp
    1314
     
    1516        Fragmentation/defs.hpp \
    1617        Fragmentation/EnergyMatrix.hpp \
     18        Fragmentation/ForceMatrix.hpp \
    1719        Fragmentation/fragmentation_helpers.hpp \
    18         Fragmentation/ForceMatrix.hpp \
    1920        Fragmentation/helpers.hpp \
    2021        Fragmentation/HessianMatrix.hpp \
    2122        Fragmentation/KeySetsContainer.hpp \
    2223        Fragmentation/MatrixContainer.hpp \
     24        Fragmentation/PowerSetGenerator.hpp \
    2325        Fragmentation/UniqueFragments.hpp
    2426
  • src/Fragmentation/fragmentation_helpers.cpp

    r23fb72 rf67817f  
    426426
    427427
    428 /** Clears the touched list
    429  * \param *out output stream for debugging
    430  * \param verbosity verbosity level
    431  * \param *&TouchedList touched list
    432  * \param SubOrder current suborder
    433  * \param TouchedIndex currently touched
    434  */
    435 void SPFragmentGenerator_ClearingTouched(int verbosity, int *&TouchedList, int SubOrder, int &TouchedIndex)
    436 {
    437   Log() << Verbose(1+verbosity) << "Clearing touched list." << endl;
    438   for (TouchedIndex=SubOrder+1;TouchedIndex--;)  // empty touched list
    439     TouchedList[TouchedIndex] = -1;
    440   TouchedIndex = 0;
    441 
    442 }
    443 
    444 /** Adds the current combination of the power set to the snake stack.
    445  * \param *out output stream for debugging
    446  * \param verbosity verbosity level
    447  * \param CurrentCombination
    448  * \param SetDimension maximum number of bits in power set
    449  * \param *FragmentSet snake stack to remove from
    450  * \param &BondsSet set of bonds
    451  * \param *&TouchedList touched list
    452  * \param TouchedIndex currently touched
    453  * \return number of set bits
    454  */
    455 int AddPowersetToSnakeStack(int verbosity, int CurrentCombination, int SetDimension, KeySet *FragmentSet, std::vector<bond *> &BondsSet, int *&TouchedList, int &TouchedIndex)
    456 {
    457   atom *OtherWalker = NULL;
    458   bool bit = false;
    459   KeySetTestPair TestKeySetInsert;
    460 
    461   int Added = 0;
    462   for (int j=0;j<SetDimension;j++) {  // pull out every bit by shifting
    463     bit = ((CurrentCombination & (1 << j)) != 0);  // mask the bit for the j-th bond
    464     if (bit) {  // if bit is set, we add this bond partner
    465       OtherWalker = BondsSet[j]->rightatom;  // rightatom is always the one more distant, i.e. the one to add
    466       //Log() << Verbose(1+verbosity) << "Current Bond is " << BondsSet[j] << ", checking on " << *OtherWalker << "." << endl;
    467       Log() << Verbose(2+verbosity) << "Adding " << *OtherWalker << " with nr " << OtherWalker->getNr() << "." << endl;
    468       TestKeySetInsert = FragmentSet->insert(OtherWalker->getNr());
    469       if (TestKeySetInsert.second) {
    470         TouchedList[TouchedIndex++] = OtherWalker->getNr();  // note as added
    471         Added++;
    472       } else {
    473         Log() << Verbose(2+verbosity) << "This was item was already present in the keyset." << endl;
    474       }
    475     } else {
    476       Log() << Verbose(2+verbosity) << "Not adding." << endl;
    477     }
    478   }
    479   return Added;
    480 };
    481 
    482 /** Counts the number of elements in a power set.
    483  * \param SetFirst begin iterator first bond
    484  * \param SetLast end iterator
    485  * \param *&TouchedList touched list
    486  * \param TouchedIndex currently touched
    487  * \return number of elements
    488  */
    489 int CountSetMembers(std::list<bond *>::const_iterator SetFirst, std::list<bond *>::const_iterator SetLast, int *&TouchedList, int TouchedIndex)
    490 {
    491   int SetDimension = 0;
    492   for( std::list<bond *>::const_iterator Binder = SetFirst;
    493       Binder != SetLast;
    494       ++Binder) {
    495     for (int k=TouchedIndex;k--;) {
    496       if ((*Binder)->Contains(TouchedList[k]))   // if we added this very endpiece
    497         SetDimension++;
    498     }
    499   }
    500   return SetDimension;
    501 };
    502 
    503 /** Fills a list of bonds from another
    504  * \param *BondsList bonds array/vector to fill
    505  * \param SetFirst begin iterator first bond
    506  * \param SetLast end iterator
    507  * \param *&TouchedList touched list
    508  * \param TouchedIndex currently touched
    509  * \return number of elements
    510  */
    511 int FillBondsList(std::vector<bond *> &BondsList, std::list<bond *>::const_iterator SetFirst, std::list<bond *>::const_iterator SetLast, int *&TouchedList, int TouchedIndex)
    512 {
    513   int SetDimension = 0;
    514   for( std::list<bond *>::const_iterator Binder = SetFirst;
    515       Binder != SetLast;
    516       ++Binder) {
    517     for (int k=0;k<TouchedIndex;k++) {
    518       if ((*Binder)->leftatom->getNr() == TouchedList[k])   // leftatom is always the closer one
    519         BondsList[SetDimension++] = (*Binder);
    520     }
    521   }
    522   return SetDimension;
    523 };
    524 
    525 /** Remove all items that were added on this SP level.
    526  * \param *out output stream for debugging
    527  * \param verbosity verbosity level
    528  * \param *FragmentSet snake stack to remove from
    529  * \param *&TouchedList touched list
    530  * \param TouchedIndex currently touched
    531  */
    532 void RemoveAllTouchedFromSnakeStack(int verbosity, KeySet *FragmentSet, int *&TouchedList, int &TouchedIndex)
    533 {
    534   int Removal = 0;
    535   for(int j=0;j<TouchedIndex;j++) {
    536     Removal = TouchedList[j];
    537     Log() << Verbose(2+verbosity) << "Removing item nr. " << Removal << " from snake stack." << endl;
    538     FragmentSet->erase(Removal);
    539     TouchedList[j] = -1;
    540   }
    541   DoLog(2) && (Log() << Verbose(2) << "Remaining local nr.s on snake stack are: ");
    542   for(KeySet::iterator runner = FragmentSet->begin(); runner != FragmentSet->end(); runner++)
    543     DoLog(0) && (Log() << Verbose(0) << (*runner) << " ");
    544   DoLog(0) && (Log() << Verbose(0) << endl);
    545   TouchedIndex = 0; // set Index to 0 for list of atoms added on this level
    546 };
    547 
    548 
    549428bool KeyCompare::operator() (const KeySet SubgraphA, const KeySet SubgraphB) const
    550429{
  • src/Fragmentation/fragmentation_helpers.hpp

    r23fb72 rf67817f  
    3636bool MarkUpdateCandidates(bool *AtomMask, std::map<double, std::pair<int,int> > &FinalRootCandidates, int Order, molecule *mol);
    3737void PrintAtomMask(bool *AtomMask, int AtomCount);
    38 void SPFragmentGenerator_ClearingTouched(int verbosity, int *&TouchedList, int SubOrder, int &TouchedIndex);
    39 int AddPowersetToSnakeStack(int verbosity, int CurrentCombination, int SetDimension, KeySet *FragmentSet, std::vector<bond *> &BondsSet, int *&TouchedList, int &TouchedIndex);
    40 int CountSetMembers(std::list<bond *>::const_iterator SetFirst, std::list<bond *>::const_iterator SetLast, int *&TouchedList, int TouchedIndex);
    41 int FillBondsList(std::vector<bond *> &BondsList, std::list<bond *>::const_iterator SetFirst, std::list<bond *>::const_iterator SetLast, int *&TouchedList, int TouchedIndex);
    42 void RemoveAllTouchedFromSnakeStack(int verbosity, KeySet *FragmentSet, int *&TouchedList, int &TouchedIndex);
    4338
    4439int CombineAllOrderListIntoOne(Graph *&FragmentList, Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol);
Note: See TracChangeset for help on using the changeset viewer.