#ifndef wasm_tools_fuzzing_parameters_h
#define wasm_tools_fuzzing_parameters_h
#include "wasm.h"
namespace wasm {
constexpr int MAX_PARAMS = 10;
constexpr int MAX_VARS = 20;
constexpr int MAX_GLOBALS = 20;
constexpr int MAX_TUPLE_SIZE = 6;
static const int MAX_STRUCT_SIZE = 6;
static const int MAX_ARRAY_SIZE = 100;
constexpr int MIN_HEAPTYPES = 4;
constexpr int MAX_HEAPTYPES = 20;
constexpr int TRIES = 10;
constexpr int NESTING_LIMIT = 11;
constexpr int BLOCK_FACTOR = 5;
constexpr Address USABLE_MEMORY = 16;
constexpr int HANG_LIMIT = 100;
constexpr int MAX_NEW_GC_TYPES = 25;
constexpr int MAX_TRY_CATCHES = 4;
constexpr size_t VeryImportant = 4;
constexpr size_t Important = 2;
}
#endif