lean4-htt/src/library/all/all.cpp
Leonardo de Moura 097b10e424 refactor(kernel/builtin): move builtin declarations to basic
There is a lot to be done. We should do the same for Nat, Int and Real.
We also should cleanup the file builtin.cpp and builtin.h.

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-12-29 22:00:03 -08:00

22 lines
484 B
C++

/*
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/basic_thms.h"
#include "library/arith/arith.h"
#include "library/all/all.h"
namespace lean {
void import_all(environment const & env) {
import_basic_thms(env);
import_arith(env);
}
environment mk_toplevel() {
environment r;
import_all(r);
return r;
}
}