From: Brian Norris Date: Fri, 5 Apr 2013 21:17:42 +0000 (-0700) Subject: model: remove DEBUG action print X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=commitdiff_plain;h=affc0fb36f6a78cfe50cacd10b8a5c4d93011686;ds=sidebyside model: remove DEBUG action print 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. --- diff --git a/model.cc b/model.cc index 569dd472..29b88c11 100644 --- 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(); - if (DBG_ENABLED()) - curr->print(); wake_up_sleeping_actions(curr);