2014-01-27 02:52:41 +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
|
2014-01-31 21:49:24 +00:00
|
|
|
#include <memory>
|
2014-01-27 02:52:41 +00:00
|
|
|
#include "library/tactic/tactic.h"
|
2014-01-31 21:49:24 +00:00
|
|
|
#include "library/simplifier/simplifier.h"
|
2014-01-27 02:52:41 +00:00
|
|
|
namespace lean {
|
2014-01-31 21:49:24 +00:00
|
|
|
tactic simplify_tactic(options const & opts, unsigned num_ns, name const * ns, std::shared_ptr<simplifier_monitor> const & monitor);
|
2014-01-27 02:52:41 +00:00
|
|
|
void open_simplify_tactic(lua_State * L);
|
|
|
|
}
|