2014-05-15 20:43:59 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "util/lua.h"
|
|
|
|
#include "kernel/expr.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
expr mk_resolve_macro(expr const & l, expr const & H1, expr const & H2);
|
|
|
|
void open_resolve_macro(lua_State * L);
|
2014-09-22 22:26:41 +00:00
|
|
|
void initialize_resolve_macro();
|
|
|
|
void finalize_resolve_macro();
|
2014-05-15 20:43:59 +00:00
|
|
|
}
|