mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
190 B
YAML
8 lines
190 B
YAML
|
prelude: |
|
||
|
max, min = 1000.0, -1000.0
|
||
|
a = Complex(rand(max)+min, rand(max)+min)
|
||
|
b = Complex(rand(max)+min, rand(max)+min)
|
||
|
benchmark:
|
||
|
complex_float_mul: c = a * b
|
||
|
loop_count: 1000000
|