model, nodestack: bugfix - retain UNINIT actions across executions
[model-checker.git] / clockvector.h
1 /** @file clockvector.h
2  *  @brief Implements a clock vector.
3  */
4
5 #ifndef __CLOCKVECTOR_H__
6 #define __CLOCKVECTOR_H__
7
8 #include "mymemory.h"
9 #include "modeltypes.h"
10
11 /* Forward declaration */
12 class ModelAction;
13
14 class ClockVector {
15 public:
16         ClockVector(ClockVector *parent = NULL, ModelAction *act = NULL);
17         ~ClockVector();
18         void merge(const ClockVector *cv);
19         bool synchronized_since(const ModelAction *act) const;
20
21         void print() const;
22         modelclock_t getClock(thread_id_t thread);
23
24         SNAPSHOTALLOC
25 private:
26         /** @brief Holds the actual clock data, as an array. */
27         modelclock_t *clock;
28
29         /** @brief The number of threads recorded in clock (i.e., its length).  */
30         int num_threads;
31 };
32
33 #endif /* __CLOCKVECTOR_H__ */