db4e5ab0ad
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
22 lines
829 B
C++
22 lines
829 B
C++
/*
|
|
Copyright (c) 2013 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 {
|
|
/**
|
|
\brief Total order on expressions.
|
|
|
|
\remark If \c use_hash is true, then we use the hash_code to
|
|
partially order expressions. Setting use_hash to false is useful
|
|
for testing the code.
|
|
*/
|
|
bool is_lt(expr const & a, expr const & b, bool use_hash);
|
|
inline bool operator<(expr const & a, expr const & b) { return is_lt(a, b, true); }
|
|
inline bool operator>(expr const & a, expr const & b) { return is_lt(b, a, true); }
|
|
inline bool operator<=(expr const & a, expr const & b) { return !is_lt(b, a, true); }
|
|
inline bool operator>=(expr const & a, expr const & b) { return !is_lt(a, b, true); }
|
|
}
|