2013-07-24 07:32:01 +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 <algorithm>
|
|
|
|
#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));
|
|
|
|
|
2013-07-24 07:50:58 +00:00
|
|
|
auto f = [=](expr const & e, unsigned offset) -> expr {
|
2013-07-24 07:32:01 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2013-07-24 07:45:38 +00:00
|
|
|
return replace_fn<decltype(f)>(f)(e);
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|
|
|
|
}
|