Changeset 31a2be


Ignore:
Timestamp:
Aug 9, 2013, 2:20:36 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:
af2c7ec
Parents:
a633f6
git-author:
Frederik Heber <heber@…> (06/26/13 09:03:51)
git-committer:
Frederik Heber <heber@…> (08/09/13 14:20:36)
Message:

FIX: Extractors::filterArgumentsByParticleTypes() did wrongly break on first found argument.

  • also added lots of staggered debugging output.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/FunctionApproximation/Extractors.cpp

    ra633f6 r31a2be  
    123123          );
    124124      arg.globalid = globalid;
     125      LOG(3, "DEBUG: Created argument " << arg << ".");
    125126      result.push_back(arg);
    126127    }
     
    730731  typedef std::list< argument_t > ListArguments_t;
    731732  ListArguments_t availableList(args.begin(), args.end());
    732   FunctionModel::arguments_t returnargs;
    733   returnargs.reserve(args.size());
     733  LOG(2, "DEBUG: Initial list of args is " << args << ".");
     734
    734735
    735736  // TODO: fill a lookup map such that we don't have O(M^3) scaling, if M is number
     
    744745  // where the first is less than the latter. Hence, we start the second
    745746  // iterator at the current position of the first one and skip the equal case.
     747  FunctionModel::arguments_t returnargs;
     748  returnargs.reserve(args.size());
    746749  for (ParticleTypes_t::const_iterator firstiter = _types.begin();
    747750      firstiter != _types.end();
     
    756759      // firstiter and seconditer, as distance is symmetric).
    757760      ListArguments_t::iterator iter = availableList.begin();
    758       for (;iter != availableList.end(); ++iter) {
     761      while (iter != availableList.end()) {
    759762        LOG(3, "DEBUG: Current args is " << *iter << ".");
    760763        if ((iter->types.first == *firstiter)
    761764              && (iter->types.second == *seconditer)) {
    762765          returnargs.push_back( *iter );
    763           break;
    764         }
    765         else if ((iter->types.first == *seconditer)
     766          iter = availableList.erase(iter);
     767          LOG(4, "DEBUG: Accepted argument.");
     768        } else if ((iter->types.first == *seconditer)
    766769              && (iter->types.second == *firstiter)) {
    767 //          argument_t flippedtypes(*iter);
    768 //          std::swap( flippedtypes.indices.first, flippedtypes.indices.second );
    769 //          std::swap( flippedtypes.types.first, flippedtypes.types.second );
    770770          returnargs.push_back( *iter );
    771771          iter = availableList.erase(iter);
     
    776776        }
    777777      }
    778       ASSERT( iter != availableList.end(),
    779           "Extractors::reorderArgumentsByParticleTypes() - could not find arguments to "
    780           +toString(*firstiter)+","+toString(*seconditer)+".");
    781       availableList.erase(iter);
    782     }
    783   }
    784 //  LOG(2, "DEBUG: Final list of args is " << returnargs << ".");
     778    }
     779  }
     780  LOG(2, "DEBUG: Final list of args is " << returnargs << ".");
    785781
    786782  return returnargs;
Note: See TracChangeset for help on using the changeset viewer.