switch to snapshot/modelalloc versions of stl classes
[model-checker.git] / cyclegraph.cc
index e96549ff1fddcace369f57102572edf2c6bf9c32..20623347213d0958bfdff79d142595420461b015 100644 (file)
@@ -8,7 +8,7 @@
 /** Initializes a CycleGraph object. */
 CycleGraph::CycleGraph() :
        discovered(new HashTable<const CycleNode *, const CycleNode *, uintptr_t, 4, model_malloc, model_calloc, model_free>(16)),
-       queue(new std::vector< const CycleNode *, ModelAlloc<const CycleNode *> >()),
+       queue(new model_vector< const CycleNode * >()),
        hasCycles(false),
        oldCycles(false)
 {