lean2/src/library/arith/arith.h
Leonardo de Moura 070c87bef0 Rename arith library files
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-09-13 08:55:09 -07:00

19 lines
452 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
*/
#pragma once
#include "library/arith/nat.h"
#include "library/arith/int.h"
#include "library/arith/real.h"
#include "library/arith/special_fn.h"
namespace lean {
class environment;
/**
\brief Import all arithmetic related builtin libraries.
*/
void import_arith(environment & env);
}