2014-07-02 15:08:35 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include "kernel/type_checker.h"
|
|
|
|
#include "library/num.h"
|
|
|
|
|
|
|
|
namespace lean {
|
2014-09-04 23:36:06 +00:00
|
|
|
static expr g_num(Const("num"));
|
|
|
|
static expr g_pos_num(Const("pos_num"));
|
2014-07-02 15:08:35 +00:00
|
|
|
static expr g_zero(Const({"num", "zero"}));
|
|
|
|
static expr g_pos(Const({"num", "pos"}));
|
2014-09-04 23:36:06 +00:00
|
|
|
static expr g_one(Const({"pos_num", "one"}));
|
|
|
|
static expr g_bit0(Const({"pos_num", "bit0"}));
|
|
|
|
static expr g_bit1(Const({"pos_num", "bit1"}));
|
2014-07-02 15:08:35 +00:00
|
|
|
|
|
|
|
bool has_num_decls(environment const & env) {
|
|
|
|
try {
|
|
|
|
type_checker tc(env);
|
|
|
|
return
|
2014-08-20 05:31:26 +00:00
|
|
|
tc.infer(g_zero).first == g_num &&
|
|
|
|
tc.infer(g_pos).first == mk_arrow(g_pos_num, g_num) &&
|
|
|
|
tc.infer(g_one).first == g_pos_num &&
|
|
|
|
tc.infer(g_bit0).first == mk_arrow(g_pos_num, g_pos_num) &&
|
|
|
|
tc.infer(g_bit1).first == mk_arrow(g_pos_num, g_pos_num);
|
2014-07-02 15:08:35 +00:00
|
|
|
} catch (...) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expr from_pos_num(mpz const & n) {
|
|
|
|
lean_assert(n > 0);
|
|
|
|
if (n == 1)
|
|
|
|
return g_one;
|
|
|
|
if (n % mpz(2) == 1)
|
|
|
|
return mk_app(g_bit1, from_pos_num(n / 2));
|
|
|
|
else
|
|
|
|
return mk_app(g_bit0, from_pos_num(n / 2));
|
|
|
|
}
|
|
|
|
|
|
|
|
expr from_num(mpz const & n) {
|
|
|
|
expr r;
|
|
|
|
lean_assert(n >= 0);
|
|
|
|
if (n == 0)
|
|
|
|
r = g_zero;
|
|
|
|
else
|
|
|
|
r = mk_app(g_pos, from_pos_num(n));
|
|
|
|
lean_assert(*to_num(r) == n);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-08-14 16:08:39 +00:00
|
|
|
optional<mpz> to_pos_num(expr const & e) {
|
|
|
|
if (e == g_one) {
|
|
|
|
return some(mpz(1));
|
2014-08-26 15:18:07 +00:00
|
|
|
} else if (is_app(e)) {
|
|
|
|
if (app_fn(e) == g_bit0) {
|
|
|
|
if (auto r = to_pos_num(app_arg(e)))
|
|
|
|
return some(2*(*r));
|
|
|
|
} else if (app_fn(e) == g_bit1) {
|
|
|
|
if (auto r = to_pos_num(app_arg(e)))
|
|
|
|
return some(2*(*r) + 1);
|
|
|
|
}
|
2014-08-14 16:08:39 +00:00
|
|
|
}
|
|
|
|
return optional<mpz>();
|
2014-07-02 15:08:35 +00:00
|
|
|
}
|
|
|
|
|
2014-08-14 16:08:39 +00:00
|
|
|
optional<mpz> to_num(expr const & e) {
|
2014-07-02 15:08:35 +00:00
|
|
|
if (e == g_zero)
|
2014-08-14 16:08:39 +00:00
|
|
|
return some(mpz(0));
|
|
|
|
else if (is_app(e) && app_fn(e) == g_pos)
|
|
|
|
return to_pos_num(app_arg(e));
|
2014-07-02 15:08:35 +00:00
|
|
|
else
|
|
|
|
return optional<mpz>();
|
|
|
|
}
|
|
|
|
}
|