2013-11-08 05:53:57 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2013-11-08 19:59:47 +00:00
|
|
|
#pragma once
|
2013-11-27 03:15:49 +00:00
|
|
|
#include "util/numerics/mpz.h"
|
|
|
|
#include "util/numerics/mpq.h"
|
|
|
|
|
2013-11-08 05:53:57 +00:00
|
|
|
namespace lean {
|
2013-11-27 03:15:49 +00:00
|
|
|
inline void open_numerics_module(lua_State * L) {
|
|
|
|
open_mpz(L);
|
|
|
|
open_mpq(L);
|
|
|
|
}
|
2013-11-08 05:53:57 +00:00
|
|
|
}
|