Class MultiplicationOperation

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

public class MultiplicationOperation extends Object implements Operation
Calculation that multiplies two other calculations together.

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

  • Constructor Details

    • MultiplicationOperation

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