#pragma once #include #define TEST_PATH_FORMAT "./vc-exact-public/vc-exact_%03d.gr" #define ANS_PATH_FORMAT "./vc-exact-public/vc-exact_%03d.vc" #ifdef DEBUG extern FILE* logger; #define TO_LOG(args...) fprintf(logger, args); fflush(logger) #define TO_ERR(args...) fprintf(stderr, args); fflush(stderr) #else #define TO_LOG(args...) #define TO_ERR(args...) #endif