lean4-htt/src/exprlib/toplevel.cpp
Leonardo de Moura 1c30c68d2d Refine toplevel API
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-08-16 09:02:45 -07:00

23 lines
474 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 "toplevel.h"
#include "builtin.h"
#include "basic_thms.h"
#include "arith.h"
namespace lean {
void init_toplevel(environment & env) {
add_basic_theory(env);
add_basic_thms(env);
add_int_theory(env);
}
environment mk_toplevel() {
environment r;
init_toplevel(r);
return r;
}
}