about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-19 08:43:32 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-19 08:43:32 -0800
commitdc26989108c306260345b20e4e4f73c4411e5a2e (patch)
tree600ad6bc978764c2581d81752dcc13f68f303300
parent104854ca941be75b187ed49f94e96e06113d0fb5 (diff)
downloadmu-dc26989108c306260345b20e4e4f73c4411e5a2e.tar.gz
2461
-rw-r--r--020run.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/020run.cc b/020run.cc
index 687dab2a..9f0a5c00 100644
--- a/020run.cc
+++ b/020run.cc
@@ -67,9 +67,7 @@ void run_current_routine()
       raise_error << "something wrote to location 0; this should never happen\n" << end();
       put(Memory, 0, 0);
     }
-    // Read all ingredients from memory.
-    // Each ingredient loads a vector of values rather than a single value; mu
-    // permits operating on reagents spanning multiple locations.
+    // read all ingredients from memory, each potentially spanning multiple locations
     vector<vector<double> > ingredients;
     if (should_copy_ingredients()) {
       for (long long int i = 0; i < SIZE(current_instruction().ingredients); ++i) {
@@ -78,7 +76,7 @@ void run_current_routine()
 //?         Locations_read_by_instruction[current_instruction().name] += SIZE(ingredients.back());
       }
     }
-    // Instructions below will write to 'products'.
+    // instructions below will write to 'products'
     vector<vector<double> > products;
     switch (current_instruction().operation) {
       // Primitive Recipe Implementations
#n133'>133 134 135 136