File tree 1 file changed +2
-2
lines changed
test/com/jwetherell/algorithms/data_structures/timing
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ public class DataStructuresTiming {
38
38
private static final Random RANDOM = new Random ();
39
39
private static final DecimalFormat FORMAT = new DecimalFormat ("0.##" );
40
40
private static final int NUMBER_OF_TESTS = 3 ; // There will always be NUMBER_OF_TESTS+1 runs since the first round is thrown away (JITing)
41
- private static final int ARRAY_SIZE = 1024 *20 ; // Number of items to add/remove/look-up from each data structure
41
+ private static final int ARRAY_SIZE = 1024 *10 ; // Number of items to add/remove/look-up from each data structure
42
42
private static final int RANDOM_SIZE = 1000 * ARRAY_SIZE ;
43
43
private static final Integer INVALID = RANDOM_SIZE + 10 ;
44
44
45
- private static final int TESTS = 39 ; // Max number of dynamic data structures to test
45
+ private static final int TESTS = 40 ; // Max number of dynamic data structures to test
46
46
private static final String [] TEST_NAMES = new String [TESTS ]; // Array to hold the test names
47
47
private static final long [][] TEST_RESULTS = new long [TESTS ][]; // Array to hold the test results
48
48
You can’t perform that action at this time.
0 commit comments