Class: FloatLessThanQInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- FloatLessThanQInstruction
- Defined in:
- lib/instructions/float/float_less_than_q.rb
Overview
pops the top 2 items of the :float
stack; pushes a new ValuePoint onto the :bool
stack, with value true
if the second one is strictly less than the top one
needs: 2 :float
pushes: 1 :bool
Instance Attribute Summary
Attributes inherited from Instruction
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
#cleanup ⇒ Object
21 22 23 |
# File 'lib/instructions/float/float_less_than_q.rb', line 21 def cleanup pushes :bool, @result end |
#derive ⇒ Object
18 19 20 |
# File 'lib/instructions/float/float_less_than_q.rb', line 18 def derive @result = ValuePoint.new("bool", @arg1 < @arg2) end |
#preconditions? ⇒ Boolean
11 12 13 |
# File 'lib/instructions/float/float_less_than_q.rb', line 11 def preconditions? needs :float, 2 end |
#setup ⇒ Object
14 15 16 17 |
# File 'lib/instructions/float/float_less_than_q.rb', line 14 def setup @arg2 = @context.pop_value(:float) @arg1 = @context.pop_value(:float) end |