mirror of
https://github.com/Z3Prover/z3
synced 2026-02-22 00:07:36 +00:00
27 lines
No EOL
717 B
C++
27 lines
No EOL
717 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 "util/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";
|
|
char const common_msgs::g_max_resource_msg[] = "max. resource limit exceeded"; |