Merge branch 'master' of ssh://demsky.eecs.uci.edu/home/git/model-checker
[c11tester.git] / clockvector.cc
index c7cc183f915581238dd0f852ffe2af3f4a46f3ad..95896ed3a61a7d62b725028b04d7c939245f83a8 100644 (file)
@@ -75,7 +75,7 @@ void ClockVector::merge(ClockVector *cv)
  * thread, false otherwise. That is, this function returns:
  * <BR><CODE>act <= cv[act->tid]</CODE>
  */
-bool ClockVector::synchronized_since(ModelAction *act)
+bool ClockVector::synchronized_since(ModelAction *act) const
 {
        int i = id_to_int(act->get_tid());
 
@@ -85,7 +85,7 @@ bool ClockVector::synchronized_since(ModelAction *act)
 }
 
 /** @brief Formats and prints this ClockVector's data. */
-void ClockVector::print()
+void ClockVector::print() const
 {
        int i;
        printf("CV: (");