about summary refs log tree commit diff stats
path: root/cpp/012run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-14 22:25:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-14 22:25:06 -0700
commitf89378d563330260c54496cd80bd4e2550e5988c (patch)
tree62ce332f801c919814e1646f8c926d7fb4ae0c6c /cpp/012run
parente7f76736d22acafa8b7b84df24fde0575d97686c (diff)
downloadmu-f89378d563330260c54496cd80bd4e2550e5988c.tar.gz
922
Diffstat (limited to 'cpp/012run')
-rw-r--r--cpp/012run5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/012run b/cpp/012run
index bd914faa..d2c22e44 100644
--- a/cpp/012run
+++ b/cpp/012run
@@ -23,9 +23,7 @@ recipe main [
 struct call {
   recipe_number running_recipe;
   size_t pc;
-  vector<vector<int> > incoming_atoms;
-  size_t next_ingredient_to_process;
-  vector<vector<int> > outgoing_atoms;
+  // End Call Fields
   call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0) {}
 };
 typedef stack<call> call_stack;
@@ -63,7 +61,6 @@ void run(routine rr) {
       ++rr.calls.top().pc;
     }
     size_t& pc = rr.calls.top().pc;
-//?     cout << "instruction " << TOP_RECIPE.name << '/' << pc << '\n'; //? 2
     trace("run") << "instruction " << TOP_RECIPE.name << '/' << pc;
     switch (instructions[pc].operation) {
       // Primitive Recipe Implementations.