@@ -304,12 +304,12 @@ static bool Bench(TestHarnessHelpers helpers, bool verbose)
304
304
305
305
bool ok = true ;
306
306
307
- var task18 = count4 ( 18 , 34359738367 , d => writeCount ( d , "GGTATTTTAATTTATAGT" , helpers . expectedCountFragments [ 4 ] , ref ok ) ) ;
308
- var task12 = count4 ( 12 , 8388607 , d => writeCount ( d , "GGTATTTTAATT" , helpers . expectedCountFragments [ 3 ] , ref ok ) ) ;
309
- var task6 = count ( 6 , 0b1111111111 , d => writeCount ( d , "GGTATT" , helpers . expectedCountFragments [ 2 ] , ref ok ) ) ;
310
- var task4 = count ( 4 , 0b111111 , d => writeCount ( d , "GGTA" , helpers . expectedCountFragments [ 1 ] , ref ok ) ) ;
311
- var task3 = count ( 3 , 0b1111 , d => writeCount ( d , "GGT" , helpers . expectedCountFragments [ 0 ] , ref ok ) ) ;
312
- var task2 = count ( 2 , 0b11 , d => writeFrequencies ( d , 2 , helpers . expectedFrequencies [ 1 ] , ref ok ) ) ;
307
+ var task18 = count4 ( 18 , 0x7FFFFFFFF , d => writeCount ( d , "GGTATTTTAATTTATAGT" , helpers . expectedCountFragments [ 4 ] , ref ok ) ) ;
308
+ var task12 = count4 ( 12 , 0x7FFFFF , d => writeCount ( d , "GGTATTTTAATT" , helpers . expectedCountFragments [ 3 ] , ref ok ) ) ;
309
+ var task6 = count ( 6 , 0x3FF , d => writeCount ( d , "GGTATT" , helpers . expectedCountFragments [ 2 ] , ref ok ) ) ;
310
+ var task4 = count ( 4 , 0x3F , d => writeCount ( d , "GGTA" , helpers . expectedCountFragments [ 1 ] , ref ok ) ) ;
311
+ var task3 = count ( 3 , 0xF , d => writeCount ( d , "GGT" , helpers . expectedCountFragments [ 0 ] , ref ok ) ) ;
312
+ var task2 = count ( 2 , 0x3 , d => writeFrequencies ( d , 2 , helpers . expectedFrequencies [ 1 ] , ref ok ) ) ;
313
313
var task1 = count ( 1 , 0 , d => writeFrequencies ( d , 1 , helpers . expectedFrequencies [ 0 ] , ref ok ) ) ;
314
314
315
315
if ( verbose )
0 commit comments