What is the unit of memory usage in Z3 statistics?
问题 What is the unit in which memory usage is measured in z3 statistics? Is it MB or KB? And what does the memory exactly means? Is it the maximum memory usage or the aggregate sum of all allocations during the execution? 回答1: It's an approximation of the maximum heap size during execution and it is added to the statistics object through the following function in cmd_context.cpp: void cmd_context::display_statistics(...) { statistics st; ... unsigned long long mem = memory::get_max_used_memory();