diff options
Diffstat (limited to 'cpp/012run')
-rw-r--r-- | cpp/012run | 5 |
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. |