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>
22 lines
484 B
C++
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;
|
|
}
|
|
}
|