2013-11-27 03:15:49 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
2013-11-27 22:57:33 +00:00
|
|
|
#include "util/script_state.h"
|
2013-11-27 03:15:49 +00:00
|
|
|
#include "library/tactic/goal.h"
|
|
|
|
#include "library/tactic/proof_builder.h"
|
|
|
|
#include "library/tactic/cex_builder.h"
|
|
|
|
#include "library/tactic/proof_state.h"
|
2013-11-28 01:47:29 +00:00
|
|
|
#include "library/tactic/tactic.h"
|
2013-12-05 13:03:18 +00:00
|
|
|
#include "library/tactic/boolean_tactics.h"
|
2013-12-05 11:22:12 +00:00
|
|
|
#include "library/tactic/apply_tactic.h"
|
2013-11-27 03:15:49 +00:00
|
|
|
|
|
|
|
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);
|
2013-11-28 01:47:29 +00:00
|
|
|
open_tactic(L);
|
2013-12-05 13:03:18 +00:00
|
|
|
open_boolean_tactics(L);
|
2013-12-05 11:22:12 +00:00
|
|
|
open_apply_tactic(L);
|
2013-11-27 03:15:49 +00:00
|
|
|
}
|
2013-11-27 22:57:33 +00:00
|
|
|
inline void register_tactic_module() {
|
|
|
|
script_state::register_module(open_tactic_module);
|
|
|
|
}
|
2013-11-27 03:15:49 +00:00
|
|
|
}
|