20 lines
689 B
C++
20 lines
689 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/environment.h"
|
|
|
|
namespace lean {
|
|
/** \brief Mark \c r as an auxiliary recursor automatically created by the system.
|
|
We use it to mark recursors such as brec_on, rec_on, induction_on, etc. */
|
|
environment add_aux_recursor(environment const & env, name const & r);
|
|
/** \brief Return true iff \c n is the name of an auxiliary recursor.
|
|
\see add_aux_recursor */
|
|
bool is_aux_recursor(environment const & env, name const & n);
|
|
|
|
void initialize_aux_recursors();
|
|
void finalize_aux_recursors();
|
|
}
|