Skip to content

matsumotory/mruby-tinymt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rand and srand method with TinyMT

rand and srand method with Tiny Mersenne Twister

install by mrbgems

  • add conf.gem line to build_config.rb
MRuby::Build.new do |conf|

    # ... (snip) ...

    conf.gem :git => 'https://github.com/matsumoto-r/mruby-tinymt.git'
end

example

# generate parameter from tinymt32dc
tmt = TinyMT.new(0xf50a1d49, 0xffa8ffeb, 0x0bf2bfff)

tmt.srand(5)
p tmt.rand()
tmt.srand(5)
p tmt.rand()
tmt.srand(10)
p tmt.rand()

5.times do |i|
  p "---" + i.to_s + "---"
  tmt.srand
  p tmt.rand
  p tmt.rand(0)
  p tmt.rand(25)
  p tmt.rand(50)
  p tmt.rand(75)
  p tmt.rand(100)
end

License

under the MIT License:

tinymt32.{c.h} under the BSD New License:

About

rand() and srand() method with TinyMT

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published