BigInteger bi1 = new BigInteger("1234567890abcdef1234567890abcdef12345678", 16);
Number160 ki1 = new Number160("0x1234567890abcdef1234567890abcdef12345678");
BigInteger bi2 = new BigInteger("357116889007843534245232322114545905234a", 16);
Number160 ki2 = new Number160("0x357116889007843534245232322114545905234a");
Assert.assertEquals(0, Float.compare(bi1.floatValue(), ki1.floatValue()));
Assert.assertEquals(0, Float.compare(bi2.floatValue(), ki2.floatValue()));
}
@Test
public void testPerformance() {
int runs = 10000;