Package | Description |
---|---|
org.rvpf.base.value |
Point value classes.
|
org.rvpf.processor.engine.rpn.operation |
RPN operations.
|
Modifier and Type | Method and Description |
---|---|
BigRational |
BigRational.abs()
Returns the absolute value of this number.
|
BigRational |
BigRational.add(BigRational other)
Adds an other big rational.
|
BigRational |
BigRational.add(long integer)
Adds an integer.
|
BigRational |
BigRational.divide(BigRational other)
Divides by an other big rational.
|
BigRational |
BigRational.divide(long integer)
Divides by an integer.
|
BigRational |
BigRational.multiply(BigRational other)
Multiplies by an other big rational.
|
BigRational |
BigRational.multiply(long integer)
Multiplies by an integer.
|
BigRational |
BigRational.negate()
Negates this number.
|
BigRational |
BigRational.reciprocal()
Returns the reciprocal value of this number.
|
BigRational |
BigRational.subtract(BigRational other)
Subtracts an other big rational.
|
BigRational |
BigRational.subtract(long integer)
Subtracts an integer.
|
static BigRational |
BigRational.valueOf(BigInteger numerator,
BigInteger denominator)
Returns a big rational number from big integers.
|
static BigRational |
BigRational.valueOf(long numerator,
long denominator)
Returns a big rational number from long values.
|
static BigRational |
BigRational.valueOf(Rational rational)
Returns a big rational number from the value of a rational number.
|
static BigRational |
BigRational.valueOf(String string)
Returns a big rational number from the value of a string.
|
Modifier and Type | Method and Description |
---|---|
BigRational |
BigRational.add(BigRational other)
Adds an other big rational.
|
int |
BigRational.compareTo(BigRational other) |
BigRational |
BigRational.divide(BigRational other)
Divides by an other big rational.
|
BigRational |
BigRational.multiply(BigRational other)
Multiplies by an other big rational.
|
BigRational |
BigRational.subtract(BigRational other)
Subtracts an other big rational.
|
Modifier and Type | Method and Description |
---|---|
static BigRational |
BigRationalOperations.popBigRationalValue(Stack stack)
Pops the big rational at the top of the stack.
|
Copyright © 2003-2019 Serge Brisson. All Rights Reserved.