X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=params.h;h=af49c6b0026fe7b17d451cd2a014925bbe140cf4;hb=HEAD;hp=c190066bec52a5593f48d436989ba5febd85d39a;hpb=63b2c687570085f2a87b6a659d26608228af1ee0;p=c11tester.git diff --git a/params.h b/params.h index c190066b..af49c6b0 100644 --- a/params.h +++ b/params.h @@ -6,17 +6,16 @@ * the model checker. */ struct model_params { - unsigned int uninitvalue; int maxexecutions; + bool nofork; + modelclock_t traceminsize; + modelclock_t checkthreshold; + bool removevisible; /** @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; }; +void param_defaults(struct model_params *params); + #endif /* __PARAMS_H__ */