2015-07-14 13:54:53 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2015-07-14 18:21:39 +00:00
|
|
|
#include "library/constants.h"
|
2015-07-14 13:54:53 +00:00
|
|
|
#include "library/simplifier/simp_tactic.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
expr mk_simp_tactic_expr(buffer<expr> const & /* ls */, buffer<name> const & /* ns */,
|
|
|
|
buffer<name> const & /* ex */, optional<expr> const & /* pre_tac */,
|
|
|
|
location const & /* loc */) {
|
2015-07-14 18:21:39 +00:00
|
|
|
// TODO(Leo)
|
|
|
|
return mk_constant(get_tactic_fail_name());
|
2015-07-14 13:54:53 +00:00
|
|
|
}
|
|
|
|
}
|