Changeset 19c50e for src/Fragmentation/Summation
- Timestamp:
- Dec 10, 2012, 10:10:58 AM (12 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:
- d4f31f
- Parents:
- 4f056e
- git-author:
- Frederik Heber <heber@…> (09/04/12 08:26:23)
- git-committer:
- Frederik Heber <heber@…> (12/10/12 10:10:58)
- Location:
- src/Fragmentation/Summation
- Files:
-
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Summation/AllLevelOrthogonalSummator.hpp
r4f056e r19c50e 52 52 results(_results) 53 53 { 54 ASSERT( results.size() >= subsetmap->getMaximumS ubsetLevel(),54 ASSERT( results.size() >= subsetmap->getMaximumSetLevel(), 55 55 "AllLevelOrthogonalSummator() - result vector is not large enough."); 56 56 } … … 69 69 subsetmap, data, container, MatrixNrLookup 70 70 ); 71 const size_t MaxLevel = subsetmap->getMaximumS ubsetLevel();71 const size_t MaxLevel = subsetmap->getMaximumSetLevel(); 72 72 for (size_t level=1; level <= MaxLevel; ++level) { 73 73 MapType &LevelResults = results[level-1]; -
src/Fragmentation/Summation/AllLevelSummator.hpp
r4f056e r19c50e 52 52 results(_results) 53 53 { 54 ASSERT( results.size() >= subsetmap->getMaximumS ubsetLevel(),54 ASSERT( results.size() >= subsetmap->getMaximumSetLevel(), 55 55 "AllLevelSummator() - result vector is not large enough."); 56 56 } … … 69 69 subsetmap, data, container, MatrixNrLookup 70 70 ); 71 const size_t MaxLevel = subsetmap->getMaximumS ubsetLevel();71 const size_t MaxLevel = subsetmap->getMaximumSetLevel(); 72 72 for (size_t level=1; level <= MaxLevel; ++level) { 73 73 MapType &LevelResults = results[level-1]; -
src/Fragmentation/Summation/IndexSetContainer.cpp
r4f056e r19c50e 45 45 #include "Fragmentation/KeySetsContainer.hpp" 46 46 47 IndexSet::ptr IndexSetContainer::AllIndices(new IndexSet); 48 49 IndexSet::ptr& IndexSetContainer::createSuperSet(const KeySetsContainer &_keysets) const 47 IndexSet::ptr IndexSetContainer::createSuperSet(const KeySetsContainer &_keysets) const 50 48 { 51 49 // create superset 52 //IndexSet::ptrAllIndices(new IndexSet);50 IndexSet::ptr _AllIndices(new IndexSet); 53 51 for (KeySetsContainer::ArrayOfIntVectors::const_iterator iter = _keysets.KeySets.begin(); 54 52 iter != _keysets.KeySets.end(); ++iter) … … 56 54 keyiter != (*iter).end(); ++keyiter) { 57 55 if (*keyiter != -1) 58 AllIndices->insert((Index_t)*keyiter);56 _AllIndices->insert((Index_t)*keyiter); 59 57 } 60 LOG(1, "INFO: AllIndices is " << * AllIndices << ".");58 LOG(1, "INFO: AllIndices is " << *_AllIndices << "."); 61 59 62 return AllIndices;60 return _AllIndices; 63 61 } 64 62 65 63 IndexSetContainer::IndexSetContainer(const KeySetsContainer &_keysets) : 66 SortedVector<IndexSet>(createSuperSet(_keysets))64 AllIndices(createSuperSet(_keysets)) 67 65 { 68 const size_t SupersetSize = getContainer()[0]->size();66 const size_t SupersetSize = AllIndices->size(); 69 67 // create container with all keysets 70 68 for (KeySetsContainer::ArrayOfIntVectors::const_iterator iter = _keysets.KeySets.begin(); 71 69 iter != _keysets.KeySets.end(); ++iter) { 70 // create the IndexSets ... 72 71 IndexSet tempset; 73 72 for(KeySetsContainer::IntVector::const_iterator keyiter = (*iter).begin(); … … 75 74 if (*keyiter != -1) 76 75 tempset.insert((Index_t)*keyiter); 77 if (tempset.size() < SupersetSize) // only insert if not super set 76 // ... and insert, making sure that super set is AllIndices when present 77 if (tempset.size() < SupersetSize) 78 78 insert(tempset); 79 else 80 insert(AllIndices); 79 81 } 80 82 } -
src/Fragmentation/Summation/IndexSetContainer.hpp
r4f056e r19c50e 83 83 size_t countSetsTillLevel(const size_t level) const; 84 84 85 /** Getter to the super set. 86 * 87 * @return AllIndices 88 */ 89 const IndexSet::ptr getSuperSet() const 90 { 91 return AllIndices; 92 } 93 85 94 private: 86 /** Helper function to getthe super set out of a KeySetsContainer.95 /** Helper function to create the super set out of a KeySetsContainer. 87 96 * 88 97 * @param _keysets keysets to construct super set for 89 * @return IndexSet that contains each index once that appears in the sets of\a _keysets98 * @return super set created from all keysets in \a _keysets 90 99 */ 91 IndexSet::ptr &createSuperSet(const KeySetsContainer &_keysets) const;100 IndexSet::ptr createSuperSet(const KeySetsContainer &_keysets) const; 92 101 93 //!> s tatic instance for AllIndices such that createSuperSet may return a reference.94 staticIndexSet::ptr AllIndices;102 //!> super set that contains all present index sets 103 IndexSet::ptr AllIndices; 95 104 }; 96 105 -
src/Fragmentation/Summation/Makefile.am
r4f056e r19c50e 13 13 Fragmentation/Summation/IndexSet.hpp \ 14 14 Fragmentation/Summation/IndexSetContainer.hpp \ 15 Fragmentation/Summation/OrthogonalFullSummator.hpp \16 15 Fragmentation/Summation/OrthogonalSummation.hpp \ 17 16 Fragmentation/Summation/OrthogonalSummation_impl.hpp \ -
src/Fragmentation/Summation/OrthogonalSumUpPerLevel.hpp
r4f056e r19c50e 39 39 convertDataTo<TypeData, TypeMap>(fragmentData, Data_fused); 40 40 // instantiate summator 41 std::vector<TypeMap> Result_fused(subsetmap->getMaximumS ubsetLevel());41 std::vector<TypeMap> Result_fused(subsetmap->getMaximumSetLevel()); 42 42 AllLevelOrthogonalSummator<TypeMap> Summer( 43 43 subsetmap, -
src/Fragmentation/Summation/SortedVector.hpp
r4f056e r19c50e 84 84 } 85 85 86 /** Default constructor. 87 * 88 * An empty vector is automatically sorted. 89 * 90 * @return 91 */ 92 SortedVector() : 93 ContainerSorted(true) 94 {} 95 86 96 /** Getter to sorted container. 87 97 * -
src/Fragmentation/Summation/SubsetMap.cpp
r4f056e r19c50e 40 40 #include <boost/bind.hpp> 41 41 #include <boost/foreach.hpp> 42 #include <boost/lambda/lambda.hpp> 42 43 #include <algorithm> 43 44 #include <bitset> 44 45 #include <set> 45 46 47 #include "CodePatterns/Assert.hpp" 46 48 #include "CodePatterns/Log.hpp" 47 49 … … 49 51 tempset(new IndexSet()) 50 52 { 53 /// go through all IndexSets 51 54 const IndexSetContainer::Container_t &container = _container.getContainer(); 52 53 // we don't need this level-wise sorting as this is automatically achieved by specific sorting 54 // /// place in level-wise multimap 55 // typedef size_t level_t; 56 // // note: We use an IndexSetContainer as it is not accessed while filling it 57 // // also, as insert uses push_back, the IndexSetContainer is actually created 58 // // as sorted. Hence, the call to sort() just needs linear time (and does 59 // // nothing) 60 // typedef std::map<level_t, IndexSetContainer > IndexSetPerLevel_t; 61 // IndexSetPerLevel_t IndexSetPerLevel; 62 // for(IndexSetContainer::Container_t::const_iterator iter = container.begin(); 63 // iter != container.end(); ++iter) { 64 // // key present in map? 65 // const size_t level = (*iter)->size(); 66 // LOG(1, "INFO: Current set is " << **iter << " with size " << level << "."); 67 // IndexSetPerLevel_t::iterator leveliter = IndexSetPerLevel.find(level); 68 // // we have to explicitly copy the shared_ptr for insertion due to const container 69 // IndexSet_ptr ptr(*iter); 70 // if (leveliter == IndexSetPerLevel.end()) { 71 // LOG(2, "DEBUG: Level not present in Lookup, creating new container"); 72 // IndexSetPerLevel.insert( std::make_pair( level, IndexSetContainer(ptr)) ); 73 // } else { 74 // LOG(2, "DEBUG: Level present in Lookup, appending to container"); 75 // leveliter->second.insert(ptr); 76 // } 77 // } 78 79 /// go through all IndexSets 80 std::for_each( container.begin(), container.end(), 81 boost::bind(&SubsetMap::gatherSubsets, this, _1)); 55 for (IndexSetContainer::Container_t::const_iterator iter = container.begin(); 56 iter != container.end(); ++iter) { 57 // check whether its the super set 58 if (*iter == _container.getSuperSet()) { 59 // place all other sets as its subsets 60 std::vector<IndexSet> returnsets; 61 returnsets.reserve(container.size()); 62 for (IndexSetContainer::Container_t::const_iterator insertiter = container.begin(); 63 insertiter != container.end(); ++insertiter) 64 if (iter != insertiter) { 65 LOG(2, "INFO: Current subset is " << **insertiter << " for super set."); 66 ASSERT( _container.getSuperSet()->contains(**insertiter), 67 "SubsetMap::SubsetMap() - "+toString(**insertiter)+" is not contained in super set " 68 +toString(*_container.getSuperSet())+"."); 69 returnsets.push_back(**insertiter); 70 } 71 Lookup.insert( std::make_pair(*iter, IndexSetContainer::ptr(new IndexSetContainer(returnsets))) ); 72 } else { 73 gatherSubsets(*iter); 74 } 75 } 82 76 } 83 77 … … 184 178 } 185 179 186 size_t SubsetMap::getMaximumSubsetLevel() const187 {188 // last one is super set, hence, the one before has largest subset size189 Lookup_t::const_iterator iter = --Lookup.end();190 --iter;191 return iter->first->size();192 }193 194 180 size_t SubsetMap::getMaximumSetLevel() const 195 181 { -
src/Fragmentation/Summation/SubsetMap.hpp
r4f056e r19c50e 58 58 return lookupiter->second; 59 59 } 60 61 /** Returns the size of the largest \b sub set.62 *63 * This would be \f${\cal O}(n)\f$ if we had to look at each set. However, due64 * to the specific sorting we just have to check the last sets.65 *66 * @return number of indices in largest subset, -1 if SubsetMap contains no IndexSet's67 */68 size_t getMaximumSubsetLevel() const;69 60 70 61 /** Returns the size of the largest set. -
src/Fragmentation/Summation/SumUpPerLevel.hpp
r4f056e r19c50e 38 38 convertDataTo<TypeData, TypeMap>(fragmentData, Data_fused); 39 39 // instantiate summator 40 std::vector<TypeMap> Result_fused(subsetmap->getMaximumS ubsetLevel());40 std::vector<TypeMap> Result_fused(subsetmap->getMaximumSetLevel()); 41 41 AllLevelSummator<TypeMap> Summer( 42 42 subsetmap, -
src/Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp
r4f056e r19c50e 301 301 } 302 302 303 /** UnitTest for getMaximumS ubsetLevel()304 */ 305 void SubsetMapTest::getMaximumS ubsetLevelTest()303 /** UnitTest for getMaximumSetLevel() 304 */ 305 void SubsetMapTest::getMaximumSetLevelTest() 306 306 { 307 307 // create small container … … 323 323 CPPUNIT_ASSERT( SM != NULL ); 324 324 325 CPPUNIT_ASSERT_EQUAL( (size_t) 1, SM->getMaximumSubsetLevel() );326 // we are strictly less than super set (last one)327 CPPUNIT_ASSERT( SM->getMaximumS ubsetLevel() <(--SM->Lookup.end())->first->size() );325 CPPUNIT_ASSERT_EQUAL( (size_t)2, SM->getMaximumSetLevel() ); 326 // we are strictly the last set 327 CPPUNIT_ASSERT( SM->getMaximumSetLevel() == (--SM->Lookup.end())->first->size() ); 328 328 } 329 329 … … 335 335 CPPUNIT_ASSERT( SM != NULL ); 336 336 337 CPPUNIT_ASSERT_EQUAL( (size_t) 3, SM->getMaximumSubsetLevel() );338 CPPUNIT_ASSERT( SM->getMaximumS ubsetLevel() <(--SM->Lookup.end())->first->size() );337 CPPUNIT_ASSERT_EQUAL( (size_t)4, SM->getMaximumSetLevel() ); 338 CPPUNIT_ASSERT( SM->getMaximumSetLevel() == (--SM->Lookup.end())->first->size() ); 339 339 } 340 340 } -
src/Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
r4f056e r19c50e 31 31 CPPUNIT_TEST ( getSubsetTest ); 32 32 CPPUNIT_TEST ( gatherSubsetTest ); 33 CPPUNIT_TEST ( getMaximumS ubsetLevelTest );33 CPPUNIT_TEST ( getMaximumSetLevelTest ); 34 34 CPPUNIT_TEST_SUITE_END(); 35 35 … … 41 41 void getSubsetTest(); 42 42 void gatherSubsetTest(); 43 void getMaximumS ubsetLevelTest();43 void getMaximumSetLevelTest(); 44 44 45 45 private:
Note:
See TracChangeset
for help on using the changeset viewer.