mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 11:43:36 +00:00
27 lines
703 B
C++
27 lines
703 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
strategy_exception.cpp
|
|
|
|
Abstract:
|
|
|
|
Strategy exception
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-05-02
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#include"strategy_exception.h"
|
|
|
|
char const * strategy_exception::g_ste_canceled_msg = "canceled";
|
|
char const * strategy_exception::g_ste_max_memory_msg = "max. memory exceeded";
|
|
char const * strategy_exception::g_ste_max_scopes_msg = "max. scopes exceeded";
|
|
char const * strategy_exception::g_ste_max_steps_msg = "max. steps exceeded";
|
|
char const * strategy_exception::g_ste_max_frames_msg = "max. frames exceeded";
|
|
char const * strategy_exception::g_ste_no_proofs_msg = "strategy does not support proof generation";
|