Sha256: 603cf4ee115d3603b6a344c0a496795501b6b463e20852a0611eef3ffa9b2564

Contents?: true

Size: 474 Bytes

Versions: 3

Compression:

Stored size: 474 Bytes

Contents

# pops the top 2 items of the +:float+ stack;
# pushes a ValuePoint with their product onto the +:float+ stack
#
# *needs:* 2 +:float+
#
# *pushes:* 1 +:float+
#

class FloatMultiplyInstruction < Instruction
  def preconditions?
    needs :float, 2
  end
  def setup
    @arg1 = @context.pop_value(:float)
    @arg2 = @context.pop_value(:float)
  end
  def derive
    @result = ValuePoint.new("float", @arg1 * @arg2)
  end
  def cleanup
    pushes :float, @result
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nudge-0.2.9 lib/instructions/float/float_multiply.rb
nudge-0.2.8 lib/instructions/float/float_multiply.rb
nudge-0.2.7 lib/instructions/float/float_multiply.rb