chore(kernel/for_each): use consistent naming convetions

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-11-19 11:24:02 -08:00
parent 7f088b7635
commit 5cfcb7e144
8 changed files with 7 additions and 7 deletions

View file

@ -16,7 +16,7 @@ Author: Leonardo de Moura
#include "kernel/instantiate.h"
#include "kernel/abstract.h"
#include "kernel/formatter.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
#include "kernel/free_vars.h"
#include "kernel/occurs.h"
#include "kernel/metavar.h"

View file

@ -15,7 +15,7 @@ Author: Leonardo de Moura
#include "util/sexpr/options.h"
#include "util/interrupt.h"
#include "kernel/context.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
#include "kernel/occurs.h"
#include "kernel/builtin.h"
#include "kernel/free_vars.h"

View file

@ -14,7 +14,7 @@ Author: Leonardo de Moura
#include <mutex>
#include "util/safe_arith.h"
#include "util/realpath.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
#include "kernel/kernel_exception.h"
#include "kernel/environment.h"
#include "kernel/threadsafe_environment.h"

View file

@ -5,7 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "kernel/expr.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
namespace lean {
bool has_cached_type(expr const & e) {

View file

@ -13,7 +13,7 @@ Author: Leonardo de Moura
#include "kernel/free_vars.h"
#include "kernel/instantiate.h"
#include "kernel/occurs.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
namespace lean {
/**

View file

@ -5,7 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "kernel/occurs.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
namespace lean {
template<typename F>

View file

@ -5,7 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "util/test.h"
#include "kernel/for_each.h"
#include "kernel/for_each_fn.h"
#include "kernel/abstract.h"
#include "library/deep_copy.h"
using namespace lean;