Changeset f67817f for src/Fragmentation
- Timestamp:
- Oct 25, 2011, 12:08:03 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:
- 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)
- Location:
- src/Fragmentation
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Makefile.am
r23fb72 rf67817f 10 10 Fragmentation/KeySetsContainer.cpp \ 11 11 Fragmentation/MatrixContainer.cpp \ 12 Fragmentation/PowerSetGenerator.cpp \ 12 13 Fragmentation/UniqueFragments.cpp 13 14 … … 15 16 Fragmentation/defs.hpp \ 16 17 Fragmentation/EnergyMatrix.hpp \ 18 Fragmentation/ForceMatrix.hpp \ 17 19 Fragmentation/fragmentation_helpers.hpp \ 18 Fragmentation/ForceMatrix.hpp \19 20 Fragmentation/helpers.hpp \ 20 21 Fragmentation/HessianMatrix.hpp \ 21 22 Fragmentation/KeySetsContainer.hpp \ 22 23 Fragmentation/MatrixContainer.hpp \ 24 Fragmentation/PowerSetGenerator.hpp \ 23 25 Fragmentation/UniqueFragments.hpp 24 26 -
src/Fragmentation/fragmentation_helpers.cpp
r23fb72 rf67817f 426 426 427 427 428 /** Clears the touched list429 * \param *out output stream for debugging430 * \param verbosity verbosity level431 * \param *&TouchedList touched list432 * \param SubOrder current suborder433 * \param TouchedIndex currently touched434 */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 list439 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 debugging446 * \param verbosity verbosity level447 * \param CurrentCombination448 * \param SetDimension maximum number of bits in power set449 * \param *FragmentSet snake stack to remove from450 * \param &BondsSet set of bonds451 * \param *&TouchedList touched list452 * \param TouchedIndex currently touched453 * \return number of set bits454 */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 shifting463 bit = ((CurrentCombination & (1 << j)) != 0); // mask the bit for the j-th bond464 if (bit) { // if bit is set, we add this bond partner465 OtherWalker = BondsSet[j]->rightatom; // rightatom is always the one more distant, i.e. the one to add466 //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 added471 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 bond484 * \param SetLast end iterator485 * \param *&TouchedList touched list486 * \param TouchedIndex currently touched487 * \return number of elements488 */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 endpiece497 SetDimension++;498 }499 }500 return SetDimension;501 };502 503 /** Fills a list of bonds from another504 * \param *BondsList bonds array/vector to fill505 * \param SetFirst begin iterator first bond506 * \param SetLast end iterator507 * \param *&TouchedList touched list508 * \param TouchedIndex currently touched509 * \return number of elements510 */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 one519 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 debugging527 * \param verbosity verbosity level528 * \param *FragmentSet snake stack to remove from529 * \param *&TouchedList touched list530 * \param TouchedIndex currently touched531 */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 level546 };547 548 549 428 bool KeyCompare::operator() (const KeySet SubgraphA, const KeySet SubgraphB) const 550 429 { -
src/Fragmentation/fragmentation_helpers.hpp
r23fb72 rf67817f 36 36 bool MarkUpdateCandidates(bool *AtomMask, std::map<double, std::pair<int,int> > &FinalRootCandidates, int Order, molecule *mol); 37 37 void 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);43 38 44 39 int CombineAllOrderListIntoOne(Graph *&FragmentList, Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol);
Note:
See TracChangeset
for help on using the changeset viewer.