chore(library/all): remove unnecessary files
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
08718e33dc
commit
49698bd053
7 changed files with 0 additions and 43 deletions
|
@ -213,8 +213,6 @@ add_subdirectory(library)
|
|||
set(LEAN_LIBS ${LEAN_LIBS} library)
|
||||
add_subdirectory(library/arith)
|
||||
set(LEAN_LIBS ${LEAN_LIBS} arithlib)
|
||||
add_subdirectory(library/all)
|
||||
set(LEAN_LIBS ${LEAN_LIBS} alllib)
|
||||
add_subdirectory(library/rewriter)
|
||||
set(LEAN_LIBS ${LEAN_LIBS} rewriter)
|
||||
add_subdirectory(library/elaborator)
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
add_library(alllib all.cpp)
|
||||
target_link_libraries(alllib ${LEAN_LIBS})
|
|
@ -1,21 +0,0 @@
|
|||
/*
|
||||
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Author: Leonardo de Moura
|
||||
*/
|
||||
#include "kernel/builtin.h"
|
||||
#include "library/arith/arith.h"
|
||||
#include "library/all/all.h"
|
||||
|
||||
namespace lean {
|
||||
void import_all(environment const & env) {
|
||||
import_kernel(env);
|
||||
import_arith(env);
|
||||
}
|
||||
environment mk_toplevel() {
|
||||
environment r;
|
||||
import_all(r);
|
||||
return r;
|
||||
}
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
/*
|
||||
Copyright (c) 2013 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 Import all builtin libraries and theorems */
|
||||
void import_all(environment const & env);
|
||||
/** \brief Create top-level environment with all builtin libraries and theorems */
|
||||
environment mk_toplevel();
|
||||
}
|
|
@ -8,7 +8,6 @@ Author: Soonho Kong
|
|||
#include "util/trace.h"
|
||||
#include "kernel/expr.h"
|
||||
#include "kernel/printer.h"
|
||||
#include "library/all/all.h"
|
||||
#include "library/arith/nat.h"
|
||||
#include "library/arith/arith.h"
|
||||
#include "library/rewriter/fo_match.h"
|
||||
|
|
|
@ -11,7 +11,6 @@ Author: Soonho Kong
|
|||
#include "kernel/metavar.h"
|
||||
#include "kernel/printer.h"
|
||||
#include "kernel/builtin.h"
|
||||
#include "library/all/all.h"
|
||||
#include "library/arith/arith.h"
|
||||
#include "library/arith/nat.h"
|
||||
#include "library/rewriter/fo_match.h"
|
||||
|
|
|
@ -12,7 +12,6 @@ Author: Soonho Kong
|
|||
#include "kernel/printer.h"
|
||||
#include "kernel/io_state.h"
|
||||
#include "kernel/builtin.h"
|
||||
#include "library/all/all.h"
|
||||
#include "library/arith/arith.h"
|
||||
#include "library/arith/nat.h"
|
||||
#include "library/rewriter/fo_match.h"
|
||||
|
|
Loading…
Reference in a new issue