about summary refs log tree commit diff stats
path: root/073scheduler.cc
diff options
context:
space:
mode:
Diffstat (limited to '073scheduler.cc')
-rw-r--r--073scheduler.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/073scheduler.cc b/073scheduler.cc
index 75a17d33..d9f85131 100644
--- a/073scheduler.cc
+++ b/073scheduler.cc
@@ -178,10 +178,9 @@ case START_RUNNING: {
   new_routine->parent_index = Current_routine_index;
   // populate ingredients
   for (int i = /*skip callee*/1;  i < SIZE(current_instruction().ingredients);  ++i) {
+    new_routine->calls.front().ingredient_atoms.push_back(ingredients.at(i));
     reagent/*copy*/ ingredient = current_instruction().ingredients.at(i);
     new_routine->calls.front().ingredients.push_back(ingredient);
-    vector<double> new_ingredient_atoms = deep_copy(ingredient);
-    new_routine->calls.front().ingredient_atoms.push_back(new_ingredient_atoms);
     // End Populate start-running Ingredient
   }
   Routines.push_back(new_routine);