Class: Planout::RandomFloat
- Defined in:
- lib/planout/random_float.rb
Constant Summary
Constants inherited from OpRandom
Instance Attribute Summary
Attributes inherited from Operator
Instance Method Summary collapse
Methods inherited from OpRandom
#get_hash, #get_uniform, #get_unit
Methods inherited from OpSimple
Methods inherited from Operator
Constructor Details
This class inherits a constructor from Planout::Operator
Instance Method Details
#simple_execute ⇒ Object
5 6 7 8 9 |
# File 'lib/planout/random_float.rb', line 5 def simple_execute min_val = @parameters.fetch(:min, 0) max_val = @parameters.fetch(:max, 1) get_uniform(min_val, max_val) end |