lean2/src/frontends/lean/builtin_tactics.h
2015-04-28 10:55:04 -07:00

14 lines
392 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 "frontends/lean/parse_table.h"
namespace lean {
parse_table get_builtin_tactic_nud_table();
parse_table get_builtin_tactic_led_table();
void initialize_builtin_tactics();
void finalize_builtin_tactics();
}