1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
#include <cln/cln.h>
extern "C"
{
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
#include <luabind/luabind.hpp>
void bind_cln(lua_State* L)
{
using namespace luabind;
using namespace cln;
module(L)
[
// real numbers
class_<cl_R>("cl_R")
.def(constructor<>())
.def(constructor<const cl_I&>())
.def(constructor<float>())
.def(constructor<const char*>())
.def(tostring(const_self))
.def(-self)
.def(const_self + const_self)
.def(const_self - const_self)
.def(const_self * const_self)
.def(const_self / const_self)
.def(const_self <= const_self)
.def(const_self < const_self)
.def(const_self == const_self)
.def(other<int>() + const_self)
.def(other<int>() - const_self)
.def(other<int>() * const_self)
.def(other<int>() / const_self)
.def(other<int>() <= const_self)
.def(other<int>() < const_self)
.def(const_self + other<int>())
.def(const_self - other<int>())
.def(const_self * other<int>())
.def(const_self / other<int>())
.def(const_self <= other<int>())
.def(const_self < other<int>())
,
// rational numbers
class_<cl_RA, cl_R>("cl_RA")
.def(constructor<>())
.def(constructor<const cl_I&>())
.def(constructor<int>())
.def(constructor<const char*>())
.def(tostring(const_self))
.def(-self)
.def(const_self + const_self)
.def(const_self - const_self)
.def(const_self * const_self)
.def(const_self / const_self)
.def(const_self <= const_self)
.def(const_self < const_self)
.def(const_self == const_self)
.def(other<int>() + const_self)
.def(other<int>() - const_self)
.def(other<int>() * const_self)
.def(other<int>() / const_self)
.def(other<int>() <= const_self)
.def(other<int>() < const_self)
.def(const_self + other<int>())
.def(const_self - other<int>())
.def(const_self * other<int>())
.def(const_self / other<int>())
.def(const_self <= other<int>())
.def(const_self < other<int>())
,
// integers
class_<cl_I, cl_RA>("cl_I")
.def(constructor<>())
.def(constructor<const cl_I&>())
.def(constructor<int>())
.def(constructor<const char*>())
.def(tostring(const_self))
.def(-self)
.def(const_self + const_self)
.def(const_self - const_self)
.def(const_self * const_self)
.def(const_self <= const_self)
.def(const_self < const_self)
.def(const_self == const_self)
.def(other<int>() + const_self)
.def(other<int>() - const_self)
.def(other<int>() * const_self)
.def(other<int>() <= const_self)
.def(other<int>() < const_self)
.def(const_self + other<int>())
.def(const_self - other<int>())
.def(const_self * other<int>())
.def(const_self <= other<int>())
.def(const_self < other<int>())
,
def("factorial", &cln::factorial),
def("sqrt", (const cl_R(*)(const cl_R&))&cln::sqrt)
];
}
int main()
{
lua_State* L = luaL_newstate();
lua_baselibopen(L);
lua_mathlibopen(L);
luabind::open(L);
bind_cln(L);
lua_dofile(L, "./cln_test.lua");
lua_close(L);
return 0;
}
|