model: remove DEBUG action print
authorBrian Norris <banorris@uci.edu>
Fri, 5 Apr 2013 21:17:42 +0000 (14:17 -0700)
committerBrian Norris <banorris@uci.edu>
Fri, 5 Apr 2013 23:13:49 +0000 (16:13 -0700)
A ModelAction should only be printed at certain points, where the action
is guaranteed to be consistent (e.g., its reads_from pointer is valid).
Rather than try to position this print opportunely, just drop it; we
already print out the whole trace, which should be sufficient.

model.cc

index 569dd472bab4aeb908e0e1df60d50540cf607d87..29b88c1171aa1873d34b98a19dad43c0b6c6a035 100644 (file)
--- a/model.cc
+++ b/model.cc
@@ -1500,8 +1500,6 @@ ModelAction * ModelChecker::check_current_action(ModelAction *curr)
        bool newly_explored = initialize_curr_action(&curr);
 
        DBG();
        bool newly_explored = initialize_curr_action(&curr);
 
        DBG();
-       if (DBG_ENABLED())
-               curr->print();
 
        wake_up_sleeping_actions(curr);
 
 
        wake_up_sleeping_actions(curr);