promise: get reference to ModelExecution
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index 89ae2b80f746c8dab734aa933b0900bb0564a030..4dbe557222c40a0a7d92fb55227a202d54f069f6 100644 (file)
--- a/model.h
+++ b/model.h
@@ -50,9 +50,10 @@ public:
        /** @returns the context for the main model-checking system thread */
        ucontext_t * get_system_context() { return &system_context; }
 
+       const ModelExecution * get_execution() const { return execution; }
+
        Thread * get_thread(thread_id_t tid) const;
        Thread * get_thread(const ModelAction *act) const;
-       int get_promise_number(const Promise *promise) const;
 
        bool is_enabled(Thread *t) const;
        bool is_enabled(thread_id_t tid) const;
@@ -63,10 +64,7 @@ public:
 
        void switch_from_master(Thread *thread);
        uint64_t switch_to_master(ModelAction *act);
-       ClockVector * get_cv(thread_id_t tid) const;
-       ModelAction * get_parent_action(thread_id_t tid) const;
        void check_promises_thread_disabled();
-       bool isfeasibleprefix() const;
 
        bool assert_bug(const char *msg, ...);
        void assert_user_bug(const char *msg);