From affc0fb36f6a78cfe50cacd10b8a5c4d93011686 Mon Sep 17 00:00:00 2001
From: Brian Norris <banorris@uci.edu>
Date: Fri, 5 Apr 2013 14:17:42 -0700
Subject: [PATCH] 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.
---
 model.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/model.cc b/model.cc
index 569dd47..29b88c1 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);
 
-- 
2.34.1