4d25cb7f47
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
32 lines
892 B
C++
32 lines
892 B
C++
/*
|
|
Copyright (c) 2013 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/script_state.h"
|
|
#include "library/tactic/goal.h"
|
|
#include "library/tactic/proof_builder.h"
|
|
#include "library/tactic/cex_builder.h"
|
|
#include "library/tactic/proof_state.h"
|
|
#include "library/tactic/tactic.h"
|
|
#include "library/tactic/boolean_tactics.h"
|
|
#include "library/tactic/apply_tactic.h"
|
|
#include "library/tactic/simplify_tactic.h"
|
|
|
|
namespace lean {
|
|
inline void open_tactic_module(lua_State * L) {
|
|
open_goal(L);
|
|
open_proof_builder(L);
|
|
open_cex_builder(L);
|
|
open_proof_state(L);
|
|
open_tactic(L);
|
|
open_boolean_tactics(L);
|
|
open_apply_tactic(L);
|
|
open_simplify_tactic(L);
|
|
}
|
|
inline void register_tactic_module() {
|
|
script_state::register_module(open_tactic_module);
|
|
}
|
|
}
|