1 Star 4 Fork 2

合宙Luat/LuatOS-Air724UG

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lmath.lua 689 Bytes
一键复制 编辑 原始数据 按行查看 历史
-- luat math lib
require "bit"
module(..., package.seeall)
local seed = tonumber(tostring(os.time()):reverse():sub(1, 7)) + rtos.tick()
function randomseed(val)
seed = val
end
function random(min, max)
local next = seed
next = next * 1103515245
next = next + 12345
local result = (next / 65536) % 2048
next = next * 1103515245
next = next + 12345
result = result * 2 ^ 10
result = bit.bxor(result, (next / 65536) % 1024)
next = next * 1103515245
next = next + 12345
result = result * 2 ^ 10
result = bit.bxor(result, (next / 65536) % 1024)
seed = next
return min + (result % (max - min))
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openLuat/LuatOS-Air724UG.git
git@gitee.com:openLuat/LuatOS-Air724UG.git
openLuat
LuatOS-Air724UG
LuatOS-Air724UG
master

搜索帮助