Class: FloatMinInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/float/float_min.rb

Overview

pops the top 2 items of the :float stack; pushes a new ValuePoint onto the :float stack with the smallest of the two values

needs: 2 :float

pushes: 1 :float

Instance Attribute Summary

Attributes inherited from Instruction

#context

Instance Method Summary collapse

Methods inherited from Instruction

all_instructions, #go, inherited, #initialize, #needs, #pushes, to_nudgecode

Constructor Details

This class inherits a constructor from Instruction

Instance Method Details

#cleanupObject



20
21
22
# File 'lib/instructions/float/float_min.rb', line 20

def cleanup
  pushes :float, @result
end

#deriveObject



17
18
19
# File 'lib/instructions/float/float_min.rb', line 17

def derive
  @result = ValuePoint.new("float", [@arg1, @arg2].min)
end

#preconditions?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/instructions/float/float_min.rb', line 10

def preconditions?
  needs :float, 2
end

#setupObject



13
14
15
16
# File 'lib/instructions/float/float_min.rb', line 13

def setup
  @arg2 = @context.pop_value(:float)
  @arg1 = @context.pop_value(:float)
end