3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

reorganizing the code

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-25 11:28:03 -07:00
parent 9c057b87d1
commit f57d4b1b19
34 changed files with 602 additions and 181 deletions

View file

@ -20,7 +20,8 @@ Revision History:
#include"interval_def.h"
#include"buffer.h"
#include"cooperate.h"
#include"tactic_exception.h"
#include"z3_exception.h"
#include"common_msgs.h"
namespace subpaving {
@ -461,7 +462,7 @@ void context_t<C>::checkpoint() {
if (m_cancel)
throw default_exception("canceled");
if (memory::get_allocation_size() > m_max_memory)
throw default_exception(TACTIC_MAX_MEMORY_MSG);
throw default_exception(Z3_MAX_MEMORY_MSG);
cooperate("subpaving");
}