add more classes to snapshotting region
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index 4718c503f9eac77a106d9505d49aca410b741d5b..9d2fd5a17f402babf0aeae888c00c6d2c0b75d46 100644 (file)
--- a/model.h
+++ b/model.h
@@ -42,7 +42,8 @@ public:
        int switch_to_master(ModelAction *act);
 
        bool next_execution();
-  MEMALLOC
+
+       MEMALLOC
 private:
        int next_thread_id;
        int used_sequence_numbers;
@@ -62,7 +63,7 @@ private:
 
        ucontext_t *system_context;
        action_list_t *action_trace;
-       std::map<int, class Thread *, std::less< int >, MyAlloc< std::pair< const int, class Thread * > > > thread_map;
+       std::map<int, class Thread *> thread_map;
        class NodeStack *node_stack;
        ModelAction *next_backtrack;
 };