2014-01-16 10:05:09 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include "kernel/kernel.h"
|
2014-01-18 03:27:32 +00:00
|
|
|
#include "library/expr_pair.h"
|
2014-01-16 10:05:09 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
bool is_equality(expr const & e) {
|
2014-01-16 23:07:51 +00:00
|
|
|
return is_eq(e) || is_iff(e);
|
2014-01-16 10:05:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool is_equality(expr const & e, expr & lhs, expr & rhs) {
|
2014-01-18 03:27:32 +00:00
|
|
|
if (is_eq(e) || is_iff(e)) {
|
|
|
|
unsigned num = num_args(e);
|
|
|
|
lhs = arg(e, num - 2);
|
|
|
|
rhs = arg(e, num - 1);
|
2014-01-16 10:05:09 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expr_pair get_equality_args(expr const & e) {
|
2014-01-18 03:27:32 +00:00
|
|
|
unsigned num = num_args(e);
|
|
|
|
return mk_pair(arg(e, num - 2), arg(e, num - 1));
|
2014-01-16 10:05:09 +00:00
|
|
|
}
|
|
|
|
}
|