Package org.kigalisim.lang.operation
Class DivisionOperation
java.lang.Object
org.kigalisim.lang.operation.DivisionOperation
- All Implemented Interfaces:
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 Summary
ConstructorsConstructorDescriptionDivisionOperation(Operation left, Operation right) Create a new DivisionOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
DivisionOperation
Create a new DivisionOperation.- Parameters:
left- The left operand of the division (dividend).right- The right operand of the division (divisor).
-
-
Method Details