X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker.git;a=blobdiff_plain;f=model.h;h=baec467bb41b6dfd638c457cd7ea4d69ae74739e;hp=85101fee11931f581c1d8812737b0532d20b693b;hb=fd0026445b71eb29e0beedd32ba061fbc43d0c27;hpb=c3ad6c109b0043a010838e77e2573aa820072820 diff --git a/model.h b/model.h index 85101fe..baec467 100644 --- a/model.h +++ b/model.h @@ -98,17 +98,18 @@ public: ClockVector * get_cv(thread_id_t tid); ModelAction * get_parent_action(thread_id_t tid); bool next_execution(); - bool isfeasible(); - bool isfeasibleotherthanRMW(); - bool isfinalfeasible(); + bool isfeasible() const; + bool isfeasibleotherthanRMW() const; + bool isfinalfeasible() const; void check_promises_thread_disabled(); void mo_check_promises(thread_id_t tid, const ModelAction *write); void check_promises(thread_id_t tid, ClockVector *old_cv, ClockVector * merge_cv); void get_release_seq_heads(ModelAction *act, rel_heads_list_t *release_heads); void finish_execution(); - bool isfeasibleprefix(); + bool isfeasibleprefix() const; void set_assert() {asserted=true;} bool is_deadlocked() const; + bool is_complete_execution() const; /** @brief Alert the model-checker that an incorrectly-ordered * synchronization was made */ @@ -129,7 +130,7 @@ private: void reset_asserted() {asserted=false;} int num_executions; int num_feasible_executions; - bool promises_expired(); + bool promises_expired() const; void execute_sleep_set(); void wake_up_sleeping_actions(ModelAction * curr); modelclock_t get_next_seq_num();