mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 11:43:36 +00:00
27 lines
633 B
C++
27 lines
633 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
common_msgs.cpp
|
|
|
|
Abstract:
|
|
|
|
Common messages used in Z3.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-10-25
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#include"common_msgs.h"
|
|
|
|
char const * common_msgs::g_canceled_msg = "canceled";
|
|
char const * common_msgs::g_max_memory_msg = "max. memory exceeded";
|
|
char const * common_msgs::g_max_scopes_msg = "max. scopes exceeded";
|
|
char const * common_msgs::g_max_steps_msg = "max. steps exceeded";
|
|
char const * common_msgs::g_max_frames_msg = "max. frames exceeded";
|
|
char const * common_msgs::g_no_proofs_msg = "component does not support proof generation";
|