@@ -39,7 +39,7 @@ public FastInteger GetDigitLength() {
39
39
}
40
40
41
41
public FastInteger OverestimateDigitLength ( ) {
42
- return this . GetDigitLength ( ) ;
42
+ return this . GetDigitLength ( ) ;
43
43
}
44
44
45
45
private static void VerifyKnownLength ( ) {
@@ -55,7 +55,7 @@ public void ShiftToDigits(
55
55
}
56
56
if ( preShift != null && preShift . Sign > 0 ) {
57
57
this . knownBitLength = this . knownBitLength ?? this . CalcKnownBitLength ( ) ;
58
- // DebugUtility.Log ("bits=" + bits + " pre=" + preShift + " known=" +
58
+ // Console.WriteLine ("bits=" + bits + " pre=" + preShift + " known=" +
59
59
// (//kbl) + " [" + this.shiftedBigInt + "]");
60
60
if ( this . knownBitLength . CompareTo ( bits ) <= 0 ) {
61
61
// Known digit length is already small enough
@@ -67,7 +67,7 @@ public void ShiftToDigits(
67
67
} else {
68
68
FastInteger bitDiff = this . knownBitLength . Copy ( )
69
69
. Subtract ( bits ) ;
70
- // DebugUtility.Log ("bitDiff=" + bitDiff);
70
+ // Console.WriteLine ("bitDiff=" + bitDiff);
71
71
int cmp = bitDiff . CompareTo ( preShift ) ;
72
72
if ( cmp <= 0 ) {
73
73
// NOTE: For BitShiftAccumulator, truncating and shifting
@@ -123,7 +123,7 @@ public FastInteger ShiftedIntFast
123
123
public int ShiftedIntMod ( int mod ) {
124
124
if ( mod < 1 ) {
125
125
throw new ArgumentException ( "mod (" + mod +
126
- ") is not greater or equal to 1" ) ;
126
+ ") is not greater or equal to 1" ) ;
127
127
}
128
128
switch ( mod ) {
129
129
case 1 :
@@ -263,7 +263,7 @@ private void ShiftRightBig(int bits) {
263
263
// the last one is set
264
264
this . bitsAfterLeftmost |= 1 ;
265
265
this . bitLeftmost = this . shiftedBigInt . GetSignedBit ( bs - 1 ) ? 1 :
266
- 0 ;
266
+ 0 ;
267
267
} else if ( lowestSetBit . CompareTo ( bs - 1 ) > 0 ) {
268
268
// Means all discarded bits are zero
269
269
this . bitLeftmost = 0 ;
@@ -277,7 +277,7 @@ private void ShiftRightBig(int bits) {
277
277
// the last one is set
278
278
this . bitsAfterLeftmost |= 1 ;
279
279
this . bitLeftmost = this . shiftedBigInt . GetSignedBit ( bs - 1 ) ? 1 :
280
- 0 ;
280
+ 0 ;
281
281
} else if ( lowestSet > bs - 1 ) {
282
282
// Means all discarded bits are zero
283
283
this . bitLeftmost = 0 ;
@@ -314,12 +314,12 @@ private FastInteger CalcKnownBitLength() {
314
314
return new FastInteger ( kb ) ;
315
315
}
316
316
if ( this . shiftedBigInt . IsZero ) {
317
- { return new FastInteger ( 1 ) ;
317
+ { return new FastInteger ( 1 ) ;
318
+ }
318
319
}
319
- }
320
320
long sbe = this . shiftedBigInt . GetSignedBitLengthAsInt64 ( ) ;
321
321
return ( sbe < Int32 . MaxValue ) ? new FastInteger ( ( int ) sbe ) :
322
- FastInteger . FromBig ( this . shiftedBigInt . GetSignedBitLengthAsEInteger ( ) ) ;
322
+ FastInteger . FromBig ( this . shiftedBigInt . GetSignedBitLengthAsEInteger ( ) ) ;
323
323
}
324
324
325
325
private void ShiftBigToBits ( int bits ) {
@@ -368,7 +368,7 @@ private void ShiftBigToBits(int bits) {
368
368
// the last one is set
369
369
this . bitsAfterLeftmost |= 1 ;
370
370
this . bitLeftmost = this . shiftedBigInt . GetSignedBit ( bs - 1 ) ? 1 :
371
- 0 ;
371
+ 0 ;
372
372
} else if ( lowestSetBit . CompareTo ( bs - 1 ) > 0 ) {
373
373
// Means all discarded bits are zero
374
374
this . bitLeftmost = 0 ;
@@ -382,7 +382,7 @@ private void ShiftBigToBits(int bits) {
382
382
// the last one is set
383
383
this . bitsAfterLeftmost |= 1 ;
384
384
this . bitLeftmost = this . shiftedBigInt . GetSignedBit ( bs - 1 ) ? 1 :
385
- 0 ;
385
+ 0 ;
386
386
} else if ( lowestSet > bs - 1 ) {
387
387
// Means all discarded bits are zero
388
388
this . bitLeftmost = 0 ;
@@ -441,7 +441,7 @@ private void ShiftRightSmall(int bits) {
441
441
this . bitsAfterLeftmost |= this . bitLeftmost ;
442
442
// Get the bottommost shift minus 1 bits
443
443
this . bitsAfterLeftmost |= ( shift > 1 && ( this . shiftedSmall <<
444
- ( SmallBitLength - shift + 1 ) ) != 0 ) ? 1 : 0 ;
444
+ ( SmallBitLength - shift + 1 ) ) != 0 ) ? 1 : 0 ;
445
445
// Get the bit just above that bit
446
446
this . bitLeftmost = ( int ) ( ( this . shiftedSmall >> ( shift - 1 ) ) & 0x01 ) ;
447
447
this . shiftedSmall >>= shift ;
@@ -483,7 +483,7 @@ private void ShiftSmallToBits(int bits) {
483
483
this . bitsAfterLeftmost |= this . bitLeftmost ;
484
484
// Get the bottommost shift minus 1 bits
485
485
this . bitsAfterLeftmost |= ( shift > 1 && ( this . shiftedSmall <<
486
- ( SmallBitLength - shift + 1 ) ) != 0 ) ? 1 : 0 ;
486
+ ( SmallBitLength - shift + 1 ) ) != 0 ) ? 1 : 0 ;
487
487
// Get the bit just above that bit
488
488
this . bitLeftmost = ( int ) ( ( this . shiftedSmall >> ( shift - 1 ) ) & 0x01 ) ;
489
489
this . bitsAfterLeftmost = ( this . bitsAfterLeftmost != 0 ) ? 1 : 0 ;
0 commit comments