mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
Reorganizing code. Added script for generating VS project files
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
2c464d413d
commit
8a6997960a
68 changed files with 167 additions and 170 deletions
37
src/util/error_codes.h
Normal file
37
src/util/error_codes.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*++
|
||||
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
|
||||
|
||||
#endif /* _ERROR_CODES_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue