Class: FloatDivideInstruction

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

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



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

def cleanup
  pushes :float, @result
end

#deriveObject



9
10
11
12
13
14
15
16
# File 'lib/instructions/float/float_divide.rb', line 9

def derive
  if @arg2 != 0.0
    @quotient = @arg1 / @arg2
    @result = ValuePoint.new("float", @quotient)
  else
    raise NaNResultError, "#{self.class} cannot divide by 0.0"
  end
end

#preconditions?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/instructions/float/float_divide.rb', line 2

def preconditions?
  needs :float, 2
end

#setupObject



5
6
7
8
# File 'lib/instructions/float/float_divide.rb', line 5

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