Class DivisionOperation

java.lang.Object
org.kigalisim.lang.operation.DivisionOperation
All Implemented Interfaces:
Operation

public class DivisionOperation extends Object implements Operation
Calculation that divides two other calculations.

Calculation that resolves two calculations and then divides the result by using a PushDownMachine within the QubecTalk runtime.

  • Constructor Details

    • DivisionOperation

      public DivisionOperation(Operation left, Operation right)
      Create a new DivisionOperation.
      Parameters:
      left - The left operand of the division (dividend).
      right - The right operand of the division (divisor).
  • Method Details

    • execute

      public void execute(PushDownMachine machine)
      Execute the calculation and leave the result at the top of the stack.
      Specified by:
      execute in interface Operation
      Parameters:
      machine - The machine in which to execute the calculation if needed.