Make stack popping explicit.
[model-checker.git] / nodestack.cc
index aa3a6c97d4520f1f9faee2ae7592dbaf218da490..725bc5399f0fb84322b9ad90c161c8a386123fd4 100644 (file)
@@ -198,17 +198,14 @@ ModelAction * NodeStack::explore_action(ModelAction *act)
        DBG();
 
        ASSERT(!node_list.empty());
+       node_list_t::iterator it=iter;
+       it++;
 
-       if (get_head()->has_been_explored(act->get_tid())) {
+       if (it != node_list.end()) {
                iter++;
                return (*iter)->get_action();
        }
 
-       /* Diverging from previous execution; clear out remainder of list */
-       node_list_t::iterator it = iter;
-       it++;
-       clear_node_list(&node_list, it, node_list.end());
-
        /* Record action */
        get_head()->explore_child(act);
        node_list.push_back(new Node(act, get_head(), model->get_num_threads()));
@@ -217,6 +214,16 @@ ModelAction * NodeStack::explore_action(ModelAction *act)
        return NULL;
 }
 
+
+void NodeStack::pop_restofstack()
+{
+       /* Diverging from previous execution; clear out remainder of list */
+       node_list_t::iterator it = iter;
+       it++;
+       clear_node_list(&node_list, it, node_list.end());
+}
+
+
 Node * NodeStack::get_head()
 {
        if (node_list.empty())