Package | Description |
---|---|
org.nevec.rjm |
Modifier and Type | Field and Description |
---|---|
static Ifactor |
Ifactor.ONE |
static Ifactor |
Ifactor.ZERO |
Modifier and Type | Method and Description |
---|---|
Ifactor |
Ifactor.add(java.math.BigInteger oth)
Summation with another positive integer
|
Ifactor |
Ifactor.clone()
Deep copy.
|
Ifactor |
Ifactor.divide(Ifactor oth)
Integer division through another positive integer.
|
Ifactor |
Ifactor.dropPrime()
Divide through the highest possible power of the highest prime.
|
Ifactor |
Ifactor.gcd(Ifactor oth)
Greatest common divisor of this and oth.
|
Ifactor |
Ifactor.lcm(Ifactor oth)
Lowest common multiple of this with oth.
|
Ifactor |
Ifactor.max(Ifactor oth)
Maximum of two values.
|
static Ifactor |
Ifactor.max(java.util.Vector<Ifactor> set)
Maximum of a list of values.
|
Ifactor |
Ifactor.min(Ifactor oth)
Minimum of two values.
|
static Ifactor |
Ifactor.min(java.util.Vector<Ifactor> set)
Minimum of a list of values.
|
protected Ifactor |
Ifactor.multGcdLcm(Ifactor oth,
int type)
Multiply with another positive integer.
|
Ifactor |
Ifactor.multiply(java.math.BigInteger oth)
Multiply with another positive integer.
|
Ifactor |
Ifactor.multiply(Ifactor oth)
Multiply with another positive integer.
|
Ifactor |
Ifactor.multiply(int oth)
Multiply with another positive integer.
|
Ifactor |
Ifactor.pow(int exponent)
Exponentiation with a positive integer.
|
Ifactor |
Ifactor.sigma()
Sum of the divisors of the number.
|
Ifactor |
Ifactor.sigma(int k)
Sum of the k-th powers of divisors of the number.
|
Ifactor |
Factorial.toIfactor(int n)
Compute the factorial of the non-negative integer.
|
Modifier and Type | Method and Description |
---|---|
int |
Ifactor.compareTo(Ifactor oth)
Compare value against another Ifactor
|
Ifactor |
Ifactor.divide(Ifactor oth)
Integer division through another positive integer.
|
boolean |
Ifactor.equals(Ifactor oth)
Comparison of two numbers.
|
Ifactor |
Ifactor.gcd(Ifactor oth)
Greatest common divisor of this and oth.
|
Ifactor |
Ifactor.lcm(Ifactor oth)
Lowest common multiple of this with oth.
|
Ifactor |
Ifactor.max(Ifactor oth)
Maximum of two values.
|
Ifactor |
Ifactor.min(Ifactor oth)
Minimum of two values.
|
protected Ifactor |
Ifactor.multGcdLcm(Ifactor oth,
int type)
Multiply with another positive integer.
|
Ifactor |
Ifactor.multiply(Ifactor oth)
Multiply with another positive integer.
|
Modifier and Type | Method and Description |
---|---|
static Ifactor |
Ifactor.max(java.util.Vector<Ifactor> set)
Maximum of a list of values.
|
static Ifactor |
Ifactor.min(java.util.Vector<Ifactor> set)
Minimum of a list of values.
|
Constructor and Description |
---|
Ifactor(Ifactor oth)
Copy constructor.
|