2015-11-09 02:09:31 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "kernel/expr.h"
|
|
|
|
namespace lean {
|
|
|
|
namespace blast {
|
2015-11-11 08:02:47 +00:00
|
|
|
/** \brief Return true iff \c e is of the form (not a) or (a -> false), and false otherwise */
|
|
|
|
bool is_not(expr const & e, expr & a);
|
2015-12-05 00:49:21 +00:00
|
|
|
bool is_not(expr const & e);
|
2015-11-11 08:02:47 +00:00
|
|
|
bool is_false(expr const & e);
|
2015-11-09 02:09:31 +00:00
|
|
|
}}
|