model: bugfix - reset the "current_action" after it has been processed
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index 8cfd66f7e3d9dc896e9531fe884e6f74d9ea52a3..aac968a9f14077ca17953f934c82881266dc781b 100644 (file)
--- a/model.h
+++ b/model.h
@@ -75,7 +75,7 @@ public:
 
        void set_current_action(ModelAction *act) { current_action = act; }
        void check_current_action(void);
-       void print_trace(void);
+       void print_summary(void);
        Thread * schedule_next_thread();
 
        int add_thread(Thread *t);
@@ -110,6 +110,4 @@ private:
 
 extern ModelChecker *model;
 
-int thread_switch_to_master(ModelAction *act);
-
 #endif /* __MODEL_H__ */