cyclegraph: rename addEdge() to addNodeEdge()
[model-checker.git] / cyclegraph.h
index a909c10b50a49f97453bf1f6114223400b11c4ac..5c49992ea26b7dc99bc88cea4040e98c88cc3361 100644 (file)
@@ -39,7 +39,7 @@ class CycleGraph {
 
        SNAPSHOTALLOC
  private:
-       void addEdge(CycleNode *fromnode, CycleNode *tonode);
+       void addNodeEdge(CycleNode *fromnode, CycleNode *tonode);
        void putNode(const ModelAction *act, CycleNode *node);
        CycleNode * getNode(const ModelAction *);
        HashTable<const CycleNode *, const CycleNode *, uintptr_t, 4, model_malloc, model_calloc, model_free> *discovered;