model: don't include schedule.h
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index 8e57876dabf3950e9cd3378eb15d50085a044d73..23c42ebb199a6ce30b5859b80ca8d5537038d0a3 100644 (file)
--- a/model.h
+++ b/model.h
@@ -10,7 +10,6 @@
 #include <cstddef>
 #include <ucontext.h>
 
-#include "schedule.h"
 #include "mymemory.h"
 #include "libthreads.h"
 #include "threads.h"
@@ -24,6 +23,7 @@
 class NodeStack;
 class CycleGraph;
 class Promise;
+class Scheduler;
 
 /** @brief Shorthand for a list of release sequence heads */
 typedef std::vector< const ModelAction *, ModelAlloc<const ModelAction *> > rel_heads_list_t;
@@ -73,8 +73,8 @@ public:
 
        void add_thread(Thread *t);
        void remove_thread(Thread *t);
-       Thread * get_thread(thread_id_t tid) { return thread_map->get(id_to_int(tid)); }
-       Thread * get_thread(ModelAction *act) { return get_thread(act->get_tid()); }
+       Thread * get_thread(thread_id_t tid);
+       Thread * get_thread(ModelAction *act);
 
        thread_id_t get_next_id();
        int get_num_threads();