/* 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 #include "free_vars.h" #include "replace.h" namespace lean { expr instantiate(unsigned n, expr const * s, expr const & e) { lean_assert(std::all_of(s, s+n, closed)); auto f = [=](expr const & e, unsigned offset) { if (is_var(e)) { unsigned vidx = var_idx(e); if (vidx >= offset) { if (vidx < offset + n) return s[n - (vidx - offset) - 1]; else return var(vidx - n); } } return e; }; replace_proc proc(f); return proc(e); } }