mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
disable slow validation code
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
75ae58f49e
commit
ad571510f3
1 changed files with 2 additions and 2 deletions
|
@ -1820,8 +1820,8 @@ namespace smt {
|
|||
return value < 0;
|
||||
}
|
||||
|
||||
bool theory_pb::validate_implies(app_ref& A, app_ref& B) {
|
||||
static bool validating = false;
|
||||
bool theory_pb::validate_implies(app_ref& A, app_ref& B) {
|
||||
static bool validating = true; // false;
|
||||
if (validating) return true;
|
||||
validating = true;
|
||||
ast_manager& m = get_manager();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue