2014-06-18 20:55:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 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/cmd_table.h"
|
|
|
|
namespace lean {
|
|
|
|
void register_inductive_cmd(cmd_table & r);
|
2014-09-23 17:00:36 +00:00
|
|
|
void initialize_inductive_cmd();
|
|
|
|
void finalize_inductive_cmd();
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|