2014-01-15 02:22:33 +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
|
|
|
|
#include "util/script_state.h"
|
|
|
|
#include "library/simplifier/ceq.h"
|
2014-01-18 10:47:11 +00:00
|
|
|
#include "library/simplifier/simplifier.h"
|
2014-01-15 02:22:33 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
inline void open_simplifier_module(lua_State * L) {
|
|
|
|
open_ceq(L);
|
2014-01-18 10:47:11 +00:00
|
|
|
open_simplifier(L);
|
2014-01-15 02:22:33 +00:00
|
|
|
}
|
|
|
|
inline void register_simplifier_module() {
|
|
|
|
script_state::register_module(open_simplifier_module);
|
|
|
|
}
|
|
|
|
}
|