X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=nodestack.cc;h=4da3cd60fd7db93c147fba60faf929d6fccb9a0f;hb=f3ad375fcfeb5e6d091029f15112f9d713f522d0;hp=b4f75e0336a3afdc3978b7ecb086e459423df455;hpb=44118f596eb7cd9b4b0b5037fbbf958db001accc;p=c11tester.git diff --git a/nodestack.cc b/nodestack.cc index b4f75e03..4da3cd60 100644 --- a/nodestack.cc +++ b/nodestack.cc @@ -91,7 +91,7 @@ void Node::print() if (action) action->print(); else - printf("******** empty action ********\n"); + model_print("******** empty action ********\n"); } /** @brief Prints info about may_read_from set */ @@ -495,14 +495,14 @@ NodeStack::~NodeStack() void NodeStack::print() { - printf("............................................\n"); - printf("NodeStack printing node_list:\n"); + model_print("............................................\n"); + model_print("NodeStack printing node_list:\n"); for (unsigned int it = 0; it < node_list.size(); it++) { if (it == this->iter) - printf("vvv following action is the current iterator vvv\n"); + model_print("vvv following action is the current iterator vvv\n"); node_list[it]->print(); } - printf("............................................\n"); + model_print("............................................\n"); } /** Note: The is_enabled set contains what actions were enabled when