Ignore:
Timestamp:
Jun 13, 2012, 5:39:24 PM (13 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:
2aad5a
Parents:
ab2ebe
git-author:
Frederik Heber <heber@…> (06/05/12 14:59:10)
git-committer:
Frederik Heber <heber@…> (06/13/12 17:39:24)
Message:

Default values are properly set by the Action into their (Action)Parameters.

  • we changed the boost::preprocessor magic to accomplish this.
  • NODEFAULT -> NOPARAM_DEFAULT to be safe.
  • it has been a hell of a lot of work to make it possible to add a construct such as ", default" to the call of a function, either the comma or the default is easy but both could only be accomplished via a list contained in the sequence of default values. Because the list has an explicit NIL element which is taken as NOPARAM_DEFAULT.
  • PARAM_DEFAULT is a macro to wrap the default value into a list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/Action_impl_header.hpp

    rab2ebe r6ba9ba  
    1414#include <boost/preprocessor/comparison/equal.hpp>
    1515#include <boost/preprocessor/comparison/not_equal.hpp>
     16#include <boost/preprocessor/control/expr_if.hpp>
    1617#include <boost/preprocessor/control/if.hpp>
    1718#include <boost/preprocessor/debug/assert.hpp>
    1819#include <boost/preprocessor/iteration/local.hpp>
     20#include <boost/preprocessor/list/adt.hpp>
    1921#include <boost/preprocessor/punctuation/comma_if.hpp>
     22#include <boost/preprocessor/punctuation/paren.hpp>
    2023#include <boost/preprocessor/repetition/repeat.hpp>
    2124#include <boost/preprocessor/seq/elem.hpp>
     
    4952#define MAXPARAMTYPES BOOST_PP_SEQ_SIZE(paramtypes)
    5053#endif
     54#ifndef paramdefaults
     55#define MAXPARAMDEFAULTS 0
     56// this is required for valid_print "else part"
     57#define sequencer(z,n,data) \
     58  BOOST_PP_SEQ_PUSH_BACK( data, NOPARAM_DEFAULT)
     59#define paramdefaults BOOST_PP_REPEAT( MAXPARAMTYPES, sequencer, BOOST_PP_SEQ_NIL )
     60#else
     61#define MAXPARAMDEFAULTS BOOST_PP_SEQ_SIZE(paramdefaults)
     62#endif
     63#define PARAM_DEFAULT(x) \
     64    (x, BOOST_PP_NIL)
    5165
    5266// check user has given name and category
     
    7993#endif
    8094
    81 // check if paramdefaults is given, otherwise fill list with NODEFAULT
     95// check if paramdefaults is given, otherwise fill list with NOPARAM_DEFAULT
    8296// this does not work: paramdefaults has to be completely defined before
    8397// being used within option_print (used as an array there and not as
    8498// some function call still to be expanded)
    85 //#define paramdefaults (NODEFAULT)
     99//#define paramdefaults (NOPARAM_DEFAULT)
    86100//#define tempvalue(z,n,value)
    87 //  BOOST_PP_CAT(value,(NODEFAULT))
     101//  BOOST_PP_CAT(value,(NOPARAM_DEFAULT))
    88102//BOOST_PP_REPEAT(tempvalue, MAXPARAMTYPES, paramdefaults)
    89103//#undef tempvalue
     
    112126
    113127// prints Options.insert
    114 #ifdef paramdefaults
    115128#define option_print(z,n,unused, unused2) \
    116129  tester = Options. insert (\
     
    120133          BOOST_PP_SEQ_ELEM(n, paramtokens), \
    121134          &typeid( BOOST_PP_SEQ_ELEM(n, paramtypes) ), \
    122           BOOST_PP_SEQ_ELEM(n, paramdescriptions), \
    123           std::string( BOOST_PP_SEQ_ELEM(n, paramdefaults) ) )\
     135          BOOST_PP_SEQ_ELEM(n, paramdescriptions) \
     136          BOOST_PP_COMMA_IF( BOOST_PP_NOT( BOOST_PP_LIST_IS_NIL( BOOST_PP_SEQ_ELEM(n, paramdefaults) ) ) ) \
     137          BOOST_PP_EXPR_IF( \
     138              BOOST_PP_NOT( BOOST_PP_LIST_IS_NIL( BOOST_PP_SEQ_ELEM(n, paramdefaults) ) ), \
     139              toString BOOST_PP_LPAREN() \
     140                  BOOST_PP_LIST_FIRST( BOOST_PP_SEQ_ELEM(n, paramdefaults) )) \
     141              BOOST_PP_RPAREN() \
     142          )\
    124143      )\
    125144  ); \
    126145  ASSERT(tester.second, "ActionTrait<ACTION>::ActionTrait<ACTION>() option token present twice!");
    127 #else
    128 #define option_print(z,n,unused, unused2) \
    129   tester = Options. insert (\
    130       std::pair< std::string, OptionTrait *> ( \
    131       BOOST_PP_SEQ_ELEM(n, paramtokens), \
    132       new OptionTrait(\
    133           BOOST_PP_SEQ_ELEM(n, paramtokens), \
    134           &typeid( BOOST_PP_SEQ_ELEM(n, paramtypes) ), \
    135           BOOST_PP_SEQ_ELEM(n, paramdescriptions), \
    136           NODEFAULT )\
    137       )\
    138   ); \
    139   ASSERT(tester.second, "ActionTrait<ACTION>::ActionTrait<ACTION>() option token present twice!");
    140 #endif
    141146
    142147namespace MoleCuilder {
     
    242247#undef paramdefaults
    243248#undef MAXPARAMTYPES
     249#undef MAXPARAMDEFAULTS
    244250#undef statetypes
    245251#undef statereferences
    246252#undef MAXSTATETYPES
     253#undef PARAM_DEFAULT
    247254
    248255#undef option_print
     256#undef sequencer
    249257#undef type_print
    250258#undef type_list
Note: See TracChangeset for help on using the changeset viewer.