Ignore:
Timestamp:
Nov 27, 2012, 8:35:34 AM (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:
0398bd
Parents:
7f8525
git-author:
Frederik Heber <heber@…> (08/10/12 16:17:28)
git-committer:
Frederik Heber <heber@…> (11/27/12 08:35:34)
Message:

FIX: (Orthogonal)Summator would not create correct indices for present super set.

  • when the super set is contained as a normal set, i.e. we obtain a value from the calculations for it, then we only treated this correctly for a single index sets.
Location:
src/Fragmentation/Summation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/OrthogonalSummator.hpp

    r7f8525 r302345  
    1515
    1616#include <boost/fusion/sequence.hpp>
     17
     18#include <iterator>
    1719
    1820#include "Fragmentation/Summation/OrthogonalSummation.hpp"
     
    7375      const IndexSetContainer::Container_t &_container,
    7476      std::map< JobId_t, size_t > &_MatrixNrLookup) : /* cannot make this const due to operator[] */
    75     indices(getSubsets(_container)),
     77    indices(getSubsets(_data.size(),_container)),
    7678    values(createValues(_data, _jobids, _container, _MatrixNrLookup)),
    7779    OS(indices, values, _subsetmap)
     
    105107   * if the \a container has more than one set.
    106108   *
     109   * @param count how many indices of container to use
    107110   * @param container container with IndexSet
    108111   * @return all subsets contained in \a container
    109112   */
    110113  typename OrthogonalSummation<MapValue>::InputSets_t getSubsets(
     114      const size_t count,
    111115      const IndexSetContainer::Container_t &container)
    112116  {
    113     // if we just have one indexset, we don't need to get rid of the "union index set"
    114     typename OrthogonalSummation<MapValue>::InputSets_t indices(
    115         container.begin(),
    116         container.end()-1 == container.begin() ? container.end() : container.end()-1);
     117    IndexSetContainer::Container_t::const_iterator iter = container.begin();
     118    std::advance(iter, count); // step till after desired element
     119    typename OrthogonalSummation<MapValue>::InputSets_t indices(container.begin(), iter);
    117120    return indices;
    118121  }
     
    132135      std::map< JobId_t, size_t > &MatrixNrLookup)
    133136  {
    134     // if we just have one indexset, we don't need to get rid of the "union index set"
    135     typename OrthogonalSummation<MapValue>::InputValues_t values(
    136         container.size() == 1 ? (size_t)1 : container.size()-1);
     137    // if the power set of , we don't need to get rid of the "union index set"
     138    typename OrthogonalSummation<MapValue>::InputValues_t values(data.size());
    137139    typename std::vector<MapType>::const_iterator dataiter = data.begin();
    138140    std::vector<size_t>::const_iterator iditer = jobids.begin();
  • src/Fragmentation/Summation/Summator.hpp

    r7f8525 r302345  
    1515
    1616#include <boost/fusion/sequence.hpp>
     17
     18#include <iterator>
    1719
    1820#include "Fragmentation/Summation/Summation.hpp"
     
    7375      const IndexSetContainer::Container_t &_container,
    7476      std::map< JobId_t, size_t > &_MatrixNrLookup) : /* cannot make this const due to operator[] */
    75     indices(getSubsets(_container)),
     77    indices(getSubsets(_data.size(),_container)),
    7678    values(createValues(_data, _jobids, _container, _MatrixNrLookup)),
    7779    OS(indices, values, _subsetmap)
     
    105107   * if the \a container has more than one set.
    106108   *
     109   * @param count how many indices of container to use
    107110   * @param container container with IndexSet
    108111   * @return all subsets contained in \a container
    109112   */
    110113  typename Summation<MapValue>::InputSets_t getSubsets(
     114      const size_t count,
    111115      const IndexSetContainer::Container_t &container)
    112116  {
    113     // if we just have one indexset, we don't need to get rid of the "union index set"
    114     typename Summation<MapValue>::InputSets_t indices(
    115         container.begin(),
    116         container.end()-1 == container.begin() ? container.end() : container.end()-1);
     117    IndexSetContainer::Container_t::const_iterator iter = container.begin();
     118    std::advance(iter, count); // step till after desired element
     119    typename Summation<MapValue>::InputSets_t indices(container.begin(), iter);
    117120    return indices;
    118121  }
     
    133136  {
    134137    // if we just have one indexset, we don't need to get rid of the "union index set"
    135     typename Summation<MapValue>::InputValues_t values(
    136         container.size() == 1 ? (size_t)1 : container.size()-1);
     138    typename Summation<MapValue>::InputValues_t values(data.size());
    137139    typename std::vector<MapType>::const_iterator dataiter = data.begin();
    138140    std::vector<size_t>::const_iterator iditer = jobids.begin();
Note: See TracChangeset for help on using the changeset viewer.