diff --git a/src/include/deepstate/DeepState.hpp b/src/include/deepstate/DeepState.hpp index f607bc8..6380d30 100644 --- a/src/include/deepstate/DeepState.hpp +++ b/src/include/deepstate/DeepState.hpp @@ -327,10 +327,16 @@ inline static void ForAll(Closure func) { template inline static void OneOf(FuncTys&&... funcs) { + if (FLAGS_verbose_reads) { + printf("DeepState: STARTING OneOf CALL\n"); + } std::function func_arr[sizeof...(FuncTys)] = {funcs...}; unsigned index = DeepState_UIntInRange( 0U, static_cast(sizeof...(funcs))-1); func_arr[Pump(index, sizeof...(funcs))](); + if (FLAGS_verbose_reads) { + printf("DeepState: FINISHED OneOf CALL\n"); + } } inline static char OneOf(const char *str) {