2013-12-05 11:22:12 +00:00
|
|
|
/*
|
2014-06-30 01:26:07 +00:00
|
|
|
Copyright (c) 2013-2014 Microsoft Corporation. All rights reserved.
|
2013-12-05 11:22:12 +00:00
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
2014-06-30 01:26:07 +00:00
|
|
|
#include "util/lua.h"
|
2013-12-05 11:22:12 +00:00
|
|
|
#include "library/tactic/tactic.h"
|
|
|
|
namespace lean {
|
2014-10-15 00:12:57 +00:00
|
|
|
tactic apply_tactic(elaborate_fn const & fn, expr const & e, bool relax_main_opaque = true);
|
2014-07-27 19:01:06 +00:00
|
|
|
tactic eassumption_tactic(bool relax_main_opaque = true);
|
2013-12-05 11:22:12 +00:00
|
|
|
void open_apply_tactic(lua_State * L);
|
|
|
|
}
|