(String[] args)
| 101 | } |
| 102 | |
| 103 | public static void main(String[] args) { |
| 104 | dictionary = AssortedMethods.getTrieDictionary(); |
| 105 | sentence = "As one of the top companies in the world, Google will surely attract the attention of computer gurus. This does not, however, mean the company is for everyone."; |
| 106 | sentence = clean(sentence); |
| 107 | System.out.println(sentence); |
| 108 | //Result v = parse(0, 0, new Hashtable<Integer, Result>()); |
| 109 | //System.out.println(v.parsed); |
| 110 | int v = parseOptimized(0, 0, new Hashtable<Integer, Integer>()); |
| 111 | System.out.println(v); |
| 112 | } |
| 113 | |
| 114 | } |
nothing calls this directly
no test coverage detected