forked from kscience/kmath
Incorrect BigInt equality fixed
This commit is contained in:
parent
d17a3ac6ef
commit
3ad7f32ada
@ -56,8 +56,7 @@ public class BigInt internal constructor(
|
|||||||
else -> sign * compareMagnitudes(magnitude, other.magnitude)
|
else -> sign * compareMagnitudes(magnitude, other.magnitude)
|
||||||
}
|
}
|
||||||
|
|
||||||
public override fun equals(other: Any?): Boolean =
|
public override fun equals(other: Any?): Boolean = other is BigInt && compareTo(other) == 0
|
||||||
if (other is BigInt) compareTo(other) == 0 else error("Can't compare KBigInteger to a different type")
|
|
||||||
|
|
||||||
public override fun hashCode(): Int = magnitude.hashCode() + sign
|
public override fun hashCode(): Int = magnitude.hashCode() + sign
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user