1 /** @file clockvector.h
2 * @brief Implements a clock vector.
5 #ifndef __CLOCKVECTOR_H__
6 #define __CLOCKVECTOR_H__
11 /* Forward declaration */
16 ClockVector(ClockVector *parent = NULL, ModelAction *act = NULL);
18 void merge(ClockVector *cv);
19 bool happens_before(ModelAction *act, thread_id_t id);
29 #endif /* __CLOCKVECTOR_H__ */