experiment with exponential decay model
[c11tester.git] / model.h
diff --git a/model.h b/model.h
index a3a7bc0ee8f22a059a1b9572d82a2f266f9e2a04..3e0651864d80f97d5ff01a11b758ec77871867b4 100644 (file)
--- a/model.h
+++ b/model.h
@@ -22,10 +22,8 @@ typedef SnapList<ModelAction *> action_list_t;
 /** @brief Model checker execution stats */
 struct execution_stats {
        int num_total;  /**< @brief Total number of executions */
-       int num_infeasible;     /**< @brief Number of infeasible executions */
        int num_buggy_executions;       /** @brief Number of buggy executions */
        int num_complete;       /**< @brief Number of feasible, non-buggy, complete executions */
-       int num_redundant;      /**< @brief Number of redundant, aborted executions */
 };
 
 /** @brief The central structure for model-checking */
@@ -58,7 +56,7 @@ public:
        void switch_from_master(Thread *thread);
        uint64_t switch_to_master(ModelAction *act);
 
-       bool assert_bug(const char *msg, ...);
+       void assert_bug(const char *msg, ...);
 
        void assert_user_bug(const char *msg);