2015-11-11 08:02:47 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include "library/util.h"
|
|
|
|
#include "library/blast/blast.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
namespace blast {
|
|
|
|
bool is_not(expr const & e, expr & a) {
|
|
|
|
return ::lean::is_not(env(), e, a);
|
|
|
|
}
|
2015-12-05 00:49:21 +00:00
|
|
|
bool is_not(expr const & e) {
|
|
|
|
expr not_e;
|
|
|
|
return is_not(e, not_e);
|
|
|
|
}
|
2015-11-11 08:02:47 +00:00
|
|
|
bool is_false(expr const & e) {
|
|
|
|
return ::lean::is_false(env(), e);
|
|
|
|
}
|
|
|
|
}}
|