X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=clockvector.cc;h=e56c2ace662507be12875c18446932fe54593252;hb=37bf8e7d54c72e0aeee029a491e45bb9d7b2f409;hp=7d947c63873cc41abc2b0cfb2cff85868ba6765d;hpb=f9772fc7b25c7c632e51e0888599f0063bc40d60;p=model-checker.git diff --git a/clockvector.cc b/clockvector.cc index 7d947c6..e56c2ac 100644 --- a/clockvector.cc +++ b/clockvector.cc @@ -75,17 +75,6 @@ bool ClockVector::synchronized_since(const ModelAction *act) const return false; } -bool ClockVector::has_synchronized_with(const ClockVector *cv) const -{ - ASSERT(cv); - if (cv->num_threads > num_threads) - return false; - for (int i = 0; i < cv->num_threads; i++) - if (cv->clock[i] > clock[i]) - return false; - return true; -} - /** Gets the clock corresponding to a given thread id from the clock vector. */ modelclock_t ClockVector::getClock(thread_id_t thread) { int threadid = id_to_int(thread);