3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00
z3/src/util/error_codes.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

38 lines
784 B
C

/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
error_codes.h
Abstract:
Error codes produced by Z3.
Author:
Leonardo de Moura (leonardo) 2007-09-04.
Revision History:
--*/
#ifndef ERROR_CODES_H_
#define ERROR_CODES_H_
#define ERR_OK 0
#define ERR_MEMOUT 101
#define ERR_TIMEOUT 102
#define ERR_PARSER 103
#define ERR_UNSOUNDNESS 104
#define ERR_INCOMPLETENESS 105
#define ERR_INI_FILE 106
#define ERR_NOT_IMPLEMENTED_YET 107
#define ERR_OPEN_FILE 108
#define ERR_CMD_LINE 109
#define ERR_INTERNAL_FATAL 110
#define ERR_TYPE_CHECK 111
#define ERR_UNKNOWN_RESULT 112
#define ERR_ALLOC_EXCEEDED 113
#endif /* ERROR_CODES_H_ */