lean2/src/library/tactic/let_tactic.h
2015-04-28 17:24:43 -07:00

14 lines
338 B
C++

/*
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include "kernel/expr.h"
namespace lean {
expr mk_let_tactic_expr(name const & id, expr const & e);
void initialize_let_tactic();
void finalize_let_tactic();
}