Changeset e3ce0e for src/Actions/ActionSequence.cpp
- Timestamp:
- Jun 20, 2018, 8:20:43 AM (8 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, Candidate_v1.7.0, ChemicalSpaceEvaluator, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph_contraction-expansion, StoppableMakroAction, stable
- Children:
- 4b2adf
- Parents:
- 559293
- git-author:
- Frederik Heber <frederik.heber@…> (09/13/17 17:20:35)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/20/18 08:20:43)
- File:
-
- 1 edited
-
src/Actions/ActionSequence.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionSequence.cpp
r559293 re3ce0e 47 47 48 48 ActionSequence::ActionSequence() : 49 loop(1) 49 loop(1), 50 step(0) 50 51 {} 51 52 52 53 ActionSequence::ActionSequence(const ActionSequence &_other) : 53 loop(1) 54 loop(1), 55 step(0) 54 56 { 55 57 // we need to override copy cstor as we have pointer referenced objects … … 114 116 void ActionSequence::callAll() 115 117 { 116 for (s ize_t i=0;i<loop;++i)118 for (step=0;step<loop;++step) 117 119 for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){ 118 120 // we want to have a global bookkeeping for all actions in the sequence, so … … 128 130 { 129 131 stateSet states; 130 for (s ize_t i=0;i<loop;++i)132 for (step=0;step<loop;++step) 131 133 for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){ 132 134 // we want to have a global bookkeeping for all actions in the sequence, so
Note:
See TracChangeset
for help on using the changeset viewer.
