X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=params.h;h=af49c6b0026fe7b17d451cd2a014925bbe140cf4;hp=946c801e4cce5aac707d0b1c3c7e9a204401ade5;hb=e5014287e6e7c3ba1c0671edb379867d111b2931;hpb=56596a27332a3622b935d5b75f81f4773dcbf757 diff --git a/params.h b/params.h index 946c801e..af49c6b0 100644 --- a/params.h +++ b/params.h @@ -6,32 +6,16 @@ * the model checker. */ struct model_params { - int maxreads; - int maxfuturedelay; - bool yieldon; - bool sc_trace_analysis; - unsigned int fairwindow; - unsigned int enabledcount; - unsigned int bound; - unsigned int uninitvalue; + int maxexecutions; + bool nofork; + modelclock_t traceminsize; + modelclock_t checkthreshold; + bool removevisible; - /** @brief Maximum number of future values that can be sent to the same - * read */ - int maxfuturevalues; - - /** @brief Only generate a new future value/expiration pair if the - * expiration time exceeds the existing one by more than the slop - * value */ - unsigned int expireslop; - - /** @brief Verbosity (0 = quiet; 1 = noisy) */ + /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */ int verbose; - - /** @brief Command-line argument count to pass to user program */ - int argc; - - /** @brief Command-line arguments to pass to user program */ - char **argv; }; -#endif /* __PARAMS_H__ */ +void param_defaults(struct model_params *params); + +#endif /* __PARAMS_H__ */