Class SubtractionOperation

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

public class SubtractionOperation extends Object implements Operation
Calculation that subtracts one calculation from another.

Calculation that resolves two calculations and then subtracts the right from the left by using a PushDownMachine within the QubecTalk runtime.

  • Constructor Details

    • SubtractionOperation

      public SubtractionOperation(Operation left, Operation right)
      Create a new SubtractionOperation.
      Parameters:
      left - The left operand of the subtraction.
      right - The right operand of the subtraction.
  • 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.