Uses of Class
org.projog.core.math.AbstractArithmeticOperator
Packages that use AbstractArithmeticOperator
Package
Description
Provides arithmetic operators.
-
Uses of AbstractArithmeticOperator in org.projog.core.math
Subclasses of AbstractArithmeticOperator in org.projog.core.mathModifier and TypeClassDescriptionclassA template forArithmeticOperators that accept two arguments.classA template forArithmeticOperators that accept two arguments of typeTermType.INTEGER.classA template forArithmeticOperators that accept exactly one argument. -
Uses of AbstractArithmeticOperator in org.projog.core.math.builtin
Subclasses of AbstractArithmeticOperator in org.projog.core.math.builtinModifier and TypeClassDescriptionfinal classabs- returns the absolute value of a numeric argument.final class+- performs addition.final class/\- performs bitwise addition.final class\/- bitwise 'or'.final classxor- bitwise 'exclusive or'.final class/- performs division.final class//- performs integer division.final classmax- finds the maximum of two numbers.final classmin- finds the minimum of two numbers.final class-- minus operator.final classmod- finds the remainder of division of one number by another.final class*- performs multiplication.final classrandom(X)Evaluate to a random integer i for which 0 =< i < X.final classrem- finds the remainder of division of one number by another.final classinteger(X)- round X to the nearest integer value.final class<<- left shift bits.final class>>- right shift bits.final class-- performs subtraction.