2013-09-26 03:25:24 +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 "util/test.h"
|
2013-11-19 19:24:02 +00:00
|
|
|
#include "kernel/for_each_fn.h"
|
2013-09-26 03:25:24 +00:00
|
|
|
#include "kernel/abstract.h"
|
|
|
|
#include "library/deep_copy.h"
|
|
|
|
using namespace lean;
|
|
|
|
|
|
|
|
static void tst1() {
|
|
|
|
expr f = Const("f");
|
|
|
|
expr a = Const("a");
|
|
|
|
expr x = Var(0);
|
|
|
|
expr t = Type();
|
|
|
|
expr z = Const("z");
|
2013-09-27 01:24:45 +00:00
|
|
|
local_context lctx{mk_lift(0, 1), mk_inst(0, a)};
|
2013-10-02 00:25:17 +00:00
|
|
|
expr m = mk_metavar("a", lctx);
|
2014-01-16 23:07:51 +00:00
|
|
|
expr F = mk_let("z", Type(), Type(level()+1), mk_pi("y", t, mk_lambda("x", t, f(f(f(x, a), Const("10")), f(x, m)))));
|
2013-09-26 03:25:24 +00:00
|
|
|
expr G = deep_copy(F);
|
|
|
|
lean_assert(F == G);
|
|
|
|
lean_assert(!is_eqp(F, G));
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2013-12-07 22:59:21 +00:00
|
|
|
save_stack_info();
|
2013-09-26 03:25:24 +00:00
|
|
|
tst1();
|
|
|
|
return has_violations() ? 1 : 0;
|
|
|
|
}
|