From d2cbbe4ce6d8f6e1aa23b8fe639ed58edf1789b7 Mon Sep 17 00:00:00 2001 From: Brian Demsky Date: Wed, 24 Oct 2012 21:37:02 -0700 Subject: [PATCH] embarrassing bug...fixed... --- model.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/model.cc b/model.cc index 134e457..e592673 100644 --- a/model.cc +++ b/model.cc @@ -1815,6 +1815,7 @@ void ModelChecker::compute_promises(ModelAction *curr) act->is_read() && !act->could_synchronize_with(curr) && !act->same_thread(curr) && + act->get_location() == curr->get_location() && promise->get_value() == curr->get_value()) { curr->get_node()->set_promise(i); } -- 2.34.1