Changeset ff9963 for src/Fragmentation


Ignore:
Timestamp:
Nov 16, 2012, 2:13:45 PM (12 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:
3102010
Parents:
8a0e78
git-author:
Frederik Heber <heber@…> (08/03/12 09:15:42)
git-committer:
Frederik Heber <heber@…> (11/16/12 14:13:45)
Message:

(Orthogonal)Summation now goes level-wise.

  • print(Orthogonal)Sum go through all levels and call on (Orthogonal)Summator to get value which is stored in vector of result of MapType.
  • (Orthogonal)Summator hands on level to (Orthogonal)Summation
  • (Orthogonal)Summation::operator() and Sum() now require level as parameter.
  • NOTE: We cannot set the value to zero (this depends on the default cstor). If level==0, then we return an uninitialized value.
  • Renamed print(Orthogonal)Sum -> AllLevel(Orthogonal)Summator.
Location:
src/Fragmentation/Summation
Files:
9 edited
2 moved

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Fragmentation/Summation/AllLevelOrthogonalSummator.hpp

    r8a0e78 rff9963  
    11/*
    2  * printOrthogonalSum.hpp
     2 * AllLevelOrthogonalSummator.hpp
    33 *
    44 *  Created on: 29.07.2012
     
    66 */
    77
    8 #ifndef PRINTORTHOGONALSUM_HPP_
    9 #define PRINTORTHOGONALSUM_HPP_
     8#ifndef ALLLEVELORTHOGONALSUMMATOR_HPP_
     9#define ALLLEVELORTHOGONALSUMMATOR_HPP_
    1010
    1111// include config.h
     
    1616#include <vector>
    1717
     18#include "CodePatterns/Assert.hpp"
     19
    1820#include "Fragmentation/Summation/IndexSetContainer.hpp"
    1921#include "Fragmentation/Summation/SubsetMap.hpp"
     
    2224#include "Fragmentation/Summation/printKeyNames.hpp"
    2325
    24 /** Tiny template functor to use OrthogonalSummation, sum up and print the result.
     26/** Tiny template functor to use OrthogonalSummation, sum up each level, and store the
     27 * result in a given vector.
    2528 *
    2629 */
    2730template <typename MapType>
    28 struct printOrthogonalSum {
     31struct AllLevelOrthogonalSummator {
    2932  /** Constructor takes the arguments that \a OrthogonalSummator also needs and stores
    3033   * them internally.
     
    3639   *        to job id and hence to _data.
    3740   * \param _MatrixNrLookup lookup from job id to ordering in above vectors
     41   * \param _results vector place results into
    3842   */
    39   printOrthogonalSum(
     43  AllLevelOrthogonalSummator(
    4044      SubsetMap::ptr &_subsetmap,
    4145      const std::vector<MapType> &_data,
    4246      const std::vector<JobId_t> &_jobids,
    4347      const IndexSetContainer::Container_t &_container,
    44       std::map< JobId_t, size_t > &_MatrixNrLookup) : /* cannot make this const due to operator[] */
     48      std::map< JobId_t, size_t > &_MatrixNrLookup,  /* cannot make this const due to operator[] */
     49      std::vector<MapType> &_results) :
    4550    subsetmap(_subsetmap),
    4651    data(_data),
    4752    jobids(_jobids),
    4853    container(_container),
    49     MatrixNrLookup(_MatrixNrLookup)
    50   {}
     54    MatrixNrLookup(_MatrixNrLookup),
     55    results(_results)
     56  {
     57    ASSERT( results.size() >= subsetmap->getMaximumSubsetLevel(),
     58        "AllLevelOrthogonalSummator() - result vector is not large enough.");
     59  }
    5160
    5261  /** Operator that calls on OrthogonalSummator and prints the value.
     
    6372        subsetmap, data, jobids, container, MatrixNrLookup
    6473        );
    65     // sum up
    66     MapValue value = sum_value();
    67     // print value
    68     LOG(0, "STATUS: Resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
     74    const size_t MaxLevel = subsetmap->getMaximumSubsetLevel();
     75    for (size_t level=1; level <= MaxLevel; ++level) {
     76      MapType &LevelResults = results[level-1];
     77      // sum up and store in results
     78      const MapValue value = sum_value(level);
     79      boost::fusion::at_key<MapKey>(LevelResults) = value;
     80      // print value
     81      //LOG(0, "STATUS: Level " << level << " resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
     82    }
    6983  }
    7084
     
    8094  //!> lookup map from job ids to ordering in above vectors
    8195  std::map< JobId_t, size_t > MatrixNrLookup;
     96  //!> vector of results
     97  std::vector<MapType> &results;
    8298};
    8399
    84 #endif /* PRINTORTHOGONALSUM_HPP_ */
     100#endif /* ALLLEVELORTHOGONALSUMMATOR_HPP_ */
  • TabularUnified src/Fragmentation/Summation/AllLevelSummator.hpp

    r8a0e78 rff9963  
    11/*
    2  * printSum.hpp
     2 * AllLevelSummator.hpp
    33 *
    44 *  Created on: 29.07.2012
     
    66 */
    77
    8 #ifndef PRINTSUM_HPP_
    9 #define PRINTSUM_HPP_
     8#ifndef ALLLEVELSUMMATOR_HPP_
     9#define ALLLEVELSUMMATOR_HPP_
    1010
    1111// include config.h
     
    1616#include <vector>
    1717
     18#include "CodePatterns/Assert.hpp"
     19
    1820#include "Fragmentation/Summation/IndexSetContainer.hpp"
    1921#include "Fragmentation/Summation/SubsetMap.hpp"
     
    2224#include "Fragmentation/Summation/printKeyNames.hpp"
    2325
    24 /** Tiny template functor to use OrthogonalSummation, sum up and print the result.
     26/** Tiny template functor to use Summation, sum up each level, and store the
     27 * result in a given vector.
    2528 *
    2629 */
    2730template <typename MapType>
    28 struct printSum {
     31struct AllLevelSummator {
    2932  /** Constructor takes the arguments that \a Summator also needs and stores
    3033   * them internally.
     
    3639   *        to job id and hence to _data.
    3740   * \param _MatrixNrLookup lookup from job id to ordering in above vectors
     41   * \param _results vector place results into
    3842   */
    39   printSum(
     43  AllLevelSummator(
    4044      SubsetMap::ptr &_subsetmap,
    4145      const std::vector<MapType> &_data,
    4246      const std::vector<JobId_t> &_jobids,
    4347      const IndexSetContainer::Container_t &_container,
    44       std::map< JobId_t, size_t > &_MatrixNrLookup) : /* cannot make this const due to operator[] */
     48      std::map< JobId_t, size_t > &_MatrixNrLookup,  /* cannot make this const due to operator[] */
     49      std::vector<MapType> &_results) :
    4550    subsetmap(_subsetmap),
    4651    data(_data),
    4752    jobids(_jobids),
    4853    container(_container),
    49     MatrixNrLookup(_MatrixNrLookup)
    50   {}
     54    MatrixNrLookup(_MatrixNrLookup),
     55    results(_results)
     56  {
     57    ASSERT( results.size() >= subsetmap->getMaximumSubsetLevel(),
     58        "AllLevelSummator() - result vector is not large enough.");
     59  }
    5160
    5261  /** Operator that calls on Summator and prints the value.
     
    6372        subsetmap, data, jobids, container, MatrixNrLookup
    6473        );
    65     // sum up
    66     MapValue value = sum_value();
    67     // print value
    68     LOG(0, "STATUS: Resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
     74    const size_t MaxLevel = subsetmap->getMaximumSubsetLevel();
     75    for (size_t level=1; level <= MaxLevel; ++level) {
     76      MapType &LevelResults = results[level-1];
     77      // sum up and store in results
     78      const MapValue value = sum_value(level);
     79      boost::fusion::at_key<MapKey>(LevelResults) = value;
     80      // print value
     81      //LOG(0, "STATUS: Level " << level << " resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
     82    }
    6983  }
    7084
     
    8094  //!> lookup map from job ids to ordering in above vectors
    8195  std::map< JobId_t, size_t > MatrixNrLookup;
     96  //!> vector of results
     97  std::vector<MapType> &results;
    8298};
    8399
    84 #endif /* PRINTSUM_HPP_ */
     100#endif /* ALLLEVELSUMMATOR_HPP_ */
  • TabularUnified src/Fragmentation/Summation/Makefile.am

    r8a0e78 rff9963  
    88
    99FRAGMENTATIONSUMMATIONHEADER = \
     10        Fragmentation/Summation/AllLevelOrthogonalSummator.hpp \
     11        Fragmentation/Summation/AllLevelSummator.hpp \
    1012        Fragmentation/Summation/IndexSet.hpp \
    1113        Fragmentation/Summation/IndexSetContainer.hpp \
     
    1416        Fragmentation/Summation/OrthogonalSummator.hpp \
    1517        Fragmentation/Summation/printKeyNames.hpp \
    16         Fragmentation/Summation/printOrthogonalSum.hpp \
    17         Fragmentation/Summation/printSum.hpp \
    1818        Fragmentation/Summation/SetValue.hpp \
    1919        Fragmentation/Summation/SetValueMap.hpp \
  • TabularUnified src/Fragmentation/Summation/OrthogonalSummation.hpp

    r8a0e78 rff9963  
    4040  /** Performs the orthogonal summation and returns result.
    4141   *
     42   * @param level sum up to this level
    4243   * @return resulting value
    4344   */
    44   T operator()() const;
     45  T operator()(const size_t level) const;
    4546
    4647private:
    47   T Sum() const;
     48  T Sum(const size_t level) const;
    4849
    4950private:
  • TabularUnified src/Fragmentation/Summation/OrthogonalSummation_impl.hpp

    r8a0e78 rff9963  
    5757
    5858template <class T>
    59 T OrthogonalSummation<T>::operator()() const
     59T OrthogonalSummation<T>::operator()(const size_t level) const
    6060{
    61   return Sum();
     61  return Sum(level);
    6262}
    6363
    6464template <class T>
    65 T OrthogonalSummation<T>::Sum() const
     65T OrthogonalSummation<T>::Sum(const size_t level) const
    6666{
    6767  typename SetValueMap<T>::const_iterator iter = setvalues.begin();
    68   T sum = (iter->second)->getContribution();
     68  T sum; // we must assume here that cstor initializes to 0
     69  if (iter->first->size() <= level)
     70    sum = (iter->second)->getContribution();
    6971  LOG(1, "DEBUG: Contribution from subset "+toString(*(iter->second->getIndexSet()))
    7072      +" is "+toString(sum)+".");
    71   for(++iter;iter != setvalues.end(); ++iter) {
     73  for(++iter;(iter != setvalues.end()) && (iter->first->size() <= level); ++iter) {
    7274    const T tempvalue = (iter->second)->getContribution();
    7375    sum += tempvalue;
  • TabularUnified src/Fragmentation/Summation/OrthogonalSummator.hpp

    r8a0e78 rff9963  
    9292   * \return result of OrthogonalSummation for given type from MPQCDataMap_t.
    9393   */
    94   MapValue operator()(/* const size_t level */)
     94  MapValue operator()(const size_t level)
    9595  {
    9696    // evaluate
    97     const MapValue result = OS();
     97    const MapValue result = OS(level);
    9898    return result;
    9999  }
  • TabularUnified src/Fragmentation/Summation/Summation.hpp

    r8a0e78 rff9963  
    4242  /** Performs the summation and returns result.
    4343   *
     44   * @param level sum up to this level
    4445   * @return resulting value
    4546   */
    46   T operator()() const;
     47  T operator()(const size_t level) const;
    4748
    4849private:
    49   T Sum() const;
     50  T Sum(const size_t level) const;
    5051
    5152private:
  • TabularUnified src/Fragmentation/Summation/Summation_impl.hpp

    r8a0e78 rff9963  
    5757
    5858template <class T>
    59 T Summation<T>::operator()() const
     59T Summation<T>::operator()(const size_t level) const
    6060{
    61   return Sum();
     61  return Sum(level);
    6262}
    6363
    6464template <class T>
    65 T Summation<T>::Sum() const
     65T Summation<T>::Sum(const size_t level) const
    6666{
    6767  typename SetValueMap<T>::const_iterator iter = setvalues.begin();
    68   T sum = (iter->second)->getValue();
     68  T sum; // we must assume here that cstor initializes to 0
     69  if (iter->first->size() <= level)
     70    sum = (iter->second)->getValue();
    6971  LOG(1, "DEBUG: Value from subset "+toString(*(iter->second->getIndexSet()))
    7072      +" is "+toString(sum)+".");
    71   for(++iter;iter != setvalues.end(); ++iter) {
     73  for(++iter;(iter != setvalues.end()) && (iter->first->size() <= level); ++iter) {
    7274    const T tempvalue = (iter->second)->getValue();
    7375    sum += tempvalue;
  • TabularUnified src/Fragmentation/Summation/Summator.hpp

    r8a0e78 rff9963  
    9292   * \return result of Summation for given type from MPQCDataMap_t.
    9393   */
    94   MapValue operator()(/* const size_t level */)
     94  MapValue operator()(const size_t level)
    9595  {
    9696    // evaluate
    97     const MapValue result = OS();
     97    const MapValue result = OS(level);
    9898    return result;
    9999  }
  • TabularUnified src/Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp

    r8a0e78 rff9963  
    105105
    106106    // sum up, as full set is contained we must get value again
    107     CPPUNIT_ASSERT_EQUAL( value, OS() );
     107    //CPPUNIT_ASSERT_EQUAL( 0, OS(0) ); /* zero value is not guaranteed to bet set to zero. */
     108    CPPUNIT_ASSERT_EQUAL( value*2, OS(1) );
     109    CPPUNIT_ASSERT_EQUAL( value*2, OS(2) );
     110    CPPUNIT_ASSERT_EQUAL( value*2, OS(3) );
     111    CPPUNIT_ASSERT_EQUAL( value, OS(4) );
     112    CPPUNIT_ASSERT_EQUAL( value, OS(5) );
    108113  }
    109114}
  • TabularUnified src/Fragmentation/Summation/unittests/SummationUnitTest.cpp

    r8a0e78 rff9963  
    105105
    106106    // sum up, as full set is contained we must get value again
    107     CPPUNIT_ASSERT_EQUAL( (int)(value * _container.size()), OS() );
     107    //CPPUNIT_ASSERT_EQUAL( (int)0, OS(0) ); /* zero value is not guaranteed to bet set to zero. */
     108    CPPUNIT_ASSERT_EQUAL( (int)(value * container->countSetsTillLevel(1)), OS(1) );
     109    CPPUNIT_ASSERT_EQUAL( (int)(value * container->countSetsTillLevel(2)), OS(2) );
     110    CPPUNIT_ASSERT_EQUAL( (int)(value * container->countSetsTillLevel(3)), OS(3) );
     111    CPPUNIT_ASSERT_EQUAL( (int)(value * container->countSetsTillLevel(4)), OS(4) );
     112    CPPUNIT_ASSERT_EQUAL( (int)(value * container->countSetsTillLevel(5)), OS(5) );
    108113  }
    109114}
Note: See TracChangeset for help on using the changeset viewer.