equal
deleted
inserted
replaced
23 //we always run all the tests twice -> to warmup of the JVM |
23 //we always run all the tests twice -> to warmup of the JVM |
24 for (int runs = 0; runs < 2; runs++) { |
24 for (int runs = 0; runs < 2; runs++) { |
25 |
25 |
26 Pattern pattern = Pattern.compile("(a*)*b"); |
26 Pattern pattern = Pattern.compile("(a*)*b"); |
27 |
27 |
28 // Run from 5 to 28 characters |
28 // Run from 0 to 50000 characters |
29 for (int length = 0; length < 50000; length += 5000) { |
29 for (int length = 0; length < 50000; length += 5000) { |
30 |
30 |
31 // Build input of specified length |
31 // Build input of specified length |
32 String input = ""; |
32 String input = ""; |
33 for (int i = 0; i < length; i++) { input += "a"; } |
33 for (int i = 0; i < length; i++) { input += "a"; } |