diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-06-08 01:06:24 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-06-08 01:06:24 +0200 |
commit | 69f364d7fe93e317cf7e315ef0eea400a3452c0b (patch) | |
tree | a7d2407e437c321e89d6a583c29ac0357ba49db3 /src/lgmp.lua | |
parent | aa2afeb2f2e0b3cfd1eabcb53b3b4b2cddc09e63 (diff) |
Fixing various loading issues with luagmp.
Diffstat (limited to 'src/lgmp.lua')
-rw-r--r-- | src/lgmp.lua | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/lgmp.lua b/src/lgmp.lua index 2a09639..98bc6af 100644 --- a/src/lgmp.lua +++ b/src/lgmp.lua @@ -97,8 +97,8 @@ local function checkfopt(obj) assert(obj == nil or isf(obj), "gmp floating point expected") end -local dtoz = prv.mpz_init_set_d -local dtof = prv.mpf_init_set_d +local dtoz +local dtof function z(value, base) if value == nil then @@ -1281,8 +1281,6 @@ function fmeta:get_d_2exp() return prv.mpf_get_d_2exp(self) end -get_default_prec = prv.mpf_get_default_prec - function fmeta:get_prec() checkf(self) return prv.mpf_get_prec(self) @@ -1625,15 +1623,20 @@ function fmeta:format(fmt, p) end function lgmp_lua_init(l_prv, l_aux) + prv = l_prv + aux = l_aux + aux.randmeta = randmeta aux.zmeta = zmeta aux.fmeta = fmeta - prv = l_prv - aux = l_aux - lgmpversion = prv.version + dtoz = prv.mpz_init_set_d + dtof = prv.mpf_init_set_d + + get_default_prec = prv.mpf_get_default_prec + lgmp_init = nil end |