model: add work queue loop
[model-checker.git] / cyclegraph.h
index 8a9bf7c928186ec3b39c0efd5022ae1ccfd8c1d1..81d736962dcb6893c8ef213b9571454c24ac5ea6 100644 (file)
@@ -9,6 +9,8 @@
 #include <vector>
 #include <inttypes.h>
 
+#include "mymemory.h"
+
 class CycleNode;
 class ModelAction;
 
@@ -19,6 +21,7 @@ class CycleGraph {
        ~CycleGraph();
        void addEdge(const ModelAction *from, const ModelAction *to);
        bool checkForCycles();
+       bool checkForRMWViolation();
        void addRMWEdge(const ModelAction *from, const ModelAction *rmw);
 
        bool checkReachable(const ModelAction *from, const ModelAction *to);
@@ -26,6 +29,7 @@ class CycleGraph {
        void commitChanges();
        void rollbackChanges();
 
+       SNAPSHOTALLOC
  private:
        CycleNode * getNode(const ModelAction *);
 
@@ -36,9 +40,11 @@ class CycleGraph {
 
        /** @brief A flag: true if this graph contains cycles */
        bool hasCycles;
-
        bool oldCycles;
 
+       bool hasRMWViolation;
+       bool oldRMWViolation;
+
        std::vector<CycleNode *> rollbackvector;
        std::vector<CycleNode *> rmwrollbackvector;
 };
@@ -58,6 +64,7 @@ class CycleNode {
                hasRMW=NULL;
        }
 
+       SNAPSHOTALLOC
  private:
        /** @brief The ModelAction that this node represents */
        const ModelAction *action;