2015-04-22 05:40:20 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace lean {
|
2015-05-29 21:07:38 +00:00
|
|
|
environment save_local_ref_info(environment const & env, name const & n, expr const & ref);
|
|
|
|
optional<expr> get_local_ref_info(environment const & env, name const & n);
|
2015-04-22 05:40:20 +00:00
|
|
|
void initialize_local_ref_info();
|
|
|
|
void finalize_local_ref_info();
|
|
|
|
}
|