computeTests top-level property

Map<String, (ComputationCreator, int, int)> computeTests
final

Implementation

final computeTests = <String, (ComputationCreator, int, int)>{
  'comp_0to1': (createComputations0to1, count, 0),
  'comp_1to1': (createComputations1to1, count, count),
  'comp_2to1': (createComputations2to1, count ~/ 2, count),
  'comp_4to1': (createComputations4to1, count ~/ 4, count),
  'comp_1000to1': (createComputations1000to1, count ~/ 1000, count),
  'comp_1to2': (createComputations1to2, count, count ~/ 2),
  'comp_1to4': (createComputations1to4, count, count ~/ 4),
  'comp_1to8': (createComputations1to8, count, count ~/ 8),
  'comp_1to1000': (createComputations1to1000, count, count ~/ 1000),
};