3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00
z3/src/smt/smt_failure.h
Nikolaj Bjorner 48fc3d752e add clause proof module, small improvements to bapa
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2019-05-30 15:49:19 -07:00

41 lines
692 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
smt_failure.h
Abstract:
Failures
Author:
Leonardo de Moura (leonardo) 2012-02-09.
Revision History:
--*/
#ifndef SMT_FAILURE_H_
#define SMT_FAILURE_H_
namespace smt {
/**
\brief Reason for a l_undef result in the check method.
*/
enum failure {
OK,
UNKNOWN,
MEMOUT,
CANCELED, //!< External cancel flag was set
NUM_CONFLICTS, //!< Maximum number of conflicts was reached
THEORY, //!< Theory is incomplete
RESOURCE_LIMIT,
QUANTIFIERS //!< Logical context contains universal quantifiers.
};
};
#endif